Is there any appreciable difference between if and if-else?

前端 未结 9 890
执笔经年
执笔经年 2021-01-12 06:55

Given the following code snippets, is there any appreciable difference?

public boolean foo(int input) {
   if(input > 10) {
       doStuff();
       retur         


        
相关标签:
9条回答
  • 2021-01-12 07:30

    Semantically — no. Performance-wise this depends on compiler, i.e. whether it can spot that both conditions cannot be true at once. I'd bet standard Sun compiler can. Whether to use single exit principle depends on tastes. I personally hate it.

    0 讨论(0)
  • 2021-01-12 07:36

    Between the first and second snippets, there's really no difference. However the third snippet is quite inefficient. Because you wait to return control of the program to the caller until the last line of code in the method, you waste processing power/memory whereas the first two code snippets return control as soon as it determines one of the conditions to be true.

    0 讨论(0)
  • 2021-01-12 07:38

    Version #1 and #2 may be faster than #3, but I suppose the performance difference is minimal. I would rather focus on readability.

    Personally, I would never use version #2. Between #1 and #3, I would choose the one that yields the most readable code for the case in question. I don't like many exit points in my methods, because it makes the code hard to analyze. However, there are cases where the flow becomes clearer when we exit immediately for some special cases, and continue with the main cases.

    0 讨论(0)
  • 2021-01-12 07:41

    In your last example, don't do this:

    public boolean foo(int input) {
       boolean toBeReturned = false;
       if(input > 10) {
          doStuff();
          toBeReturned = true;
       } else if(input == 0) {
          doOtherStuff();
          toBeReturned = true;
       }
    
       return toBeReturned;
    }
    

    but this (notice the use of Java's final):

    public boolean foo(int input) {
       final boolean toBeReturned;    // no init here
       if(input > 10) {
          doStuff();
          toBeReturned = true;
       } else if(input == 0) {
          doOtherStuff();
          toBeReturned = true;
       } else {
          toBeReturned = false;
       }
       return toBeReturned;
    }
    

    By doing so you make your intend clear and this is a godsend for IDEs supporting "programming by intention" (there's no need to "compile" to see potential errors, even on a partial AST, a good IDE can examine incomplete source in real-time and give you instant warnings).

    This way you are sure not to forget to initialize your return value. This is great if later on you decide that after all you need another condition.

    I do this all the time and even moreso since I started using IntelliJ IDEA (version 4 or so, a long time ago) and this has saved me so many silly distraction mistakes...

    Some people will argue that this is too much code for such a simple case but that's entirely missing the point: the point is to make the intent clear so that the code reads easily and can be easily extended later on, without accidentally forgetting to assign toBeReturned and without accidentally forgetting to return from a later clause you may add.

    Otherwise, if "conciseness" was the name of the game, then I'd write:

    public boolean foo(int a) {
      return a > 10 ? doStuff() : a == 0 ? doOtherStuff() : false; 
    }
    

    Where both doStuff and doOtherStuff would return true.

    0 讨论(0)
  • 2021-01-12 07:43
    • In the first:

      somebody eventually, by some strange reason and when you're not looking will add some add statement that will make this method fail under certain strange conditions, everybody ( or worst, one single person ) will spend 4 hrs. watching the source code and debugging the application to finally found there was something in the middle.

    • The second is definitely better, not only it prevents this scenario, but also helps to clearly state , it this or this other no more.

      If all the code we write within an if where 10 lines long at most, this wouldn't matter really, but unfortunately that's not the case, there exists other programmers which by some reason think that a if body should be > 200 lines long... anyway.

    • I don't like the third, it forces me to look for the return variable, and it's easier to find the return keyword

    About speed performance, they are ( almost ) identical. Don't worry about that.

    0 讨论(0)
  • 2021-01-12 07:45

    In your case the second if would only get called if the first if failed so it's less important here but if your first if did something and didn't return, the second if (which would then always be false) would still be tested unless it was in an else-if.

    In other words, there are cases where the difference between if-else-if and if-if matters, but this isn't one of them.

    Example: Try this and then try it after removing the else. You get two different outputs:

    int someNumber = 1;
    if(someNumber < 5)
    {
        someNumber += 5;
        Console.WriteLine("First call.");
    }
    else if(someNumber >= 5)
    {
        Console.WriteLine("Second call.");
    }
    
    0 讨论(0)
提交回复
热议问题