• @Omega_Haxors@lemmy.ml
    link
    fedilink
    -7
    edit-2
    6 months ago

    You’re writing extremely bad code if that’s the case and you need to refactor. The point of a function is to return a value. Anything else is just there to waste cycles and make the code less readable. You should also never use else statements for arithmetic due to their massive relative overhead. Your processor can do multiple arithmetic operations in the time it takes to process one if statement, and don’t get me started on people who demand you use nested if even though switch statements are way faster and leagues more readable.

    • @1rre@discuss.tchncs.de
      link
      fedilink
      86 months ago

      Who’s suggesting that people are using if statements for arithmetic?

      The only time that you can feasibly replace an if statement with arithmetic is if it’s a boolean, but frankly that’s an edge case… Also if you’re not writing in rust or c or whatever then don’t worry as the interpreter will run a huge amount of branches for every line of code (which is what all your nested ifs, switches, gotos, returns etc. will compile down to anyway)

      • @Omega_Haxors@lemmy.ml
        link
        fedilink
        -8
        edit-2
        6 months ago

        Those who are the most wrong have the strongest conviction

        EDIT: I make a lot of edits because unlike you, I care about the quality and accuracy of what I write. You’re going to spend like an extra 10 minutes tops writing for something that will be read by thousands for years to come. It’s basic courtesy.

          • @Omega_Haxors@lemmy.ml
            link
            fedilink
            0
            edit-2
            5 months ago

            Yeah i’m starting to remember why I quit. In any other industry toxic shit like this goes sinks to the bottom, not the top.

            Like seriously, what were you hoping to accomplish with this one? The thread ended yesterday. That’s reddit tier douchery.

    • @AVincentInSpace
      link
      English
      5
      edit-2
      6 months ago

      god forbid anyone do multiple non-nested if blocks one after another in the same function as the function does multiple different things or (horror of horrors) put an if-else inside a loop

      also unless your compiler is completely and utterly brain dead (as is the case with Python, Java, C#, and most other languages that only pretend to be compiled compile to bytecode) a switch and a series of elif statements will compile to the exact same sequence of machine instructions. you can check on godbolt.org if you don’t believe me.

      modern compilers are insanely smart. as an example, this loop counts the number of 1’s in the binary representation of a number:

          while (n)
          {
              n = n & (n - 1);    // clear the least significant bit set
              count++;
          }
      

      LLVM will recognize that this is what you are trying to do and emit a single POPCNT instruction on x86, eliminating the loop entirely.

      also how would you even use if statements for arithmetic at all? you aren’t thinking of that one joke isEven() function, are you?