Use of else after a return or break from a function or loop - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T17:54:34Zhttp://stackoverflow.com/feeds/question/272863http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/272863/use-of-else-after-a-return-or-break-from-a-function-or-loop4Use of else after a return or break from a function or loopDrFredEdison2008-11-07T17:30:56Z2008-11-07T19:58:24Z
<p>This is a matter of style I've considered for a while, and I'm curious of others thoughts. The two pieces of code below are logically equivalent, which in your opinion is better style and why?:</p>
<pre><code> // no else
some_function():
if ( my_var == 0 ) then:
return true
print "hello: " + my_var
return false
</code></pre>
<p><hr /></p>
<pre><code>// with else
some_function():
if ( my_var == 0 ) then:
return true
else:
print "hello: " + my_var
return false
</code></pre>
http://stackoverflow.com/questions/272863/use-of-else-after-a-return-or-break-from-a-function-or-loop/272873#2728737Answer by AlbertEin for Use of else after a return or break from a function or loopAlbertEin2008-11-07T17:32:27Z2008-11-07T17:32:27Z<p>I use the first one, the second one seems too verbose for me, and you avoid one level of identation which is always nice.</p>
http://stackoverflow.com/questions/272863/use-of-else-after-a-return-or-break-from-a-function-or-loop/272874#2728743Answer by Jon Skeet for Use of else after a return or break from a function or loopJon Skeet2008-11-07T17:32:34Z2008-11-07T17:32:34Z<p>I generally prefer without the else - there's less nesting, and it reinforces the fact that the first branch will exit the loop (i.e. "there's nothing more to see here").</p>
<p>On the other hand, there's more symmetry with the else...</p>
http://stackoverflow.com/questions/272863/use-of-else-after-a-return-or-break-from-a-function-or-loop/272880#2728804Answer by kasperjj for Use of else after a return or break from a function or loopkasperjj2008-11-07T17:33:50Z2008-11-07T17:33:50Z<p>I definitely prefer the later as it reads more naturally... however, endorsing that kind of statements clearly require that we all accept responsibility when the world runs out of else statements!</p>
http://stackoverflow.com/questions/272863/use-of-else-after-a-return-or-break-from-a-function-or-loop/272892#2728920Answer by Javier for Use of else after a return or break from a function or loopJavier2008-11-07T17:36:45Z2008-11-07T17:36:45Z<p>I like the first one, but only when the then clause is one or two lines, and it's reasonably near the top of the function... or between two semantically distinct parts of code, in which it's quite probable the function should be split in two.</p>
http://stackoverflow.com/questions/272863/use-of-else-after-a-return-or-break-from-a-function-or-loop/272895#2728950Answer by le dorfier for Use of else after a return or break from a function or loople dorfier2008-11-07T17:38:09Z2008-11-07T17:45:02Z<p>Else would be a superfluous statement, which might end up embarrassing some of us when someone asks: "Why did you put that in there? You don't need it!"</p>
http://stackoverflow.com/questions/272863/use-of-else-after-a-return-or-break-from-a-function-or-loop/272924#2729242Answer by tvanfosson for Use of else after a return or break from a function or looptvanfosson2008-11-07T17:48:02Z2008-11-07T17:48:02Z<p>I consider this an expression of input validation. The else clause represents the valid case and is not a "alternative" execution path. If this were in the main body of a routine, you would normally write it as:</p>
<pre><code> if (my_var != 0) then:
... do what you need to
end
</code></pre>
<p>Since what you are basically doing is short-circuiting the function on invalid input, I would prefer the expression without the else. This leaves the main body of the function as clearly the normal case with the if statement just doing return on invalid inputs. I also like it because it reduces the indent level of the main action of the function.</p>
http://stackoverflow.com/questions/272863/use-of-else-after-a-return-or-break-from-a-function-or-loop/272950#2729500Answer by Charles Bretana for Use of else after a return or break from a function or loopCharles Bretana2008-11-07T17:53:29Z2008-11-07T17:53:29Z<p>generally I prefer the first:<br />
But for your example you could also rewrite it like this:</p>
<pre><code> some_function():
if (my_var != 0) then:
print "hello: "
return (my_var == 0);
</code></pre>
http://stackoverflow.com/questions/272863/use-of-else-after-a-return-or-break-from-a-function-or-loop/272955#2729552Answer by mmiika for Use of else after a return or break from a function or loopmmiika2008-11-07T17:55:15Z2008-11-07T17:55:15Z<p>Without else. This is a guard clause and in a typical application you would see so many of these kind of statements that you get used to them.</p>
http://stackoverflow.com/questions/272863/use-of-else-after-a-return-or-break-from-a-function-or-loop/272969#2729690Answer by Nerdfest for Use of else after a return or break from a function or loopNerdfest2008-11-07T17:58:41Z2008-11-07T17:58:41Z<p>I generally prefer:</p>
<pre><code> some_function():
boolean varIsZero= my_var==0;
if (!varIsZero) then:
print "hello: "
return(varIsZero);
</code></pre>
<p>I realize some people don't mind a bunch of returns scattered through their code, but I try to avoid it where I think there's a more readable alternative.</p>
http://stackoverflow.com/questions/272863/use-of-else-after-a-return-or-break-from-a-function-or-loop/272990#2729902Answer by Terry Wilcox for Use of else after a return or break from a function or loopTerry Wilcox2008-11-07T18:02:39Z2008-11-07T18:02:39Z<p>I'll use the first form when the "if" is meant as a guard assertion at the beginning of the method. It separates the "do we really want to be here" code from the main body of the method, making it easier to understand the rest of the method at a glance.</p>
<p>I'll use the second form when the "if" is part of the method's logic, indicating that the method has completed.</p>
<p>It's purely an organizational preference though. Whatever makes the code easier to read and understand is preferred.</p>
http://stackoverflow.com/questions/272863/use-of-else-after-a-return-or-break-from-a-function-or-loop/273003#2730030Answer by Vijay Dev for Use of else after a return or break from a function or loopVijay Dev2008-11-07T18:05:10Z2008-11-07T18:05:10Z<p>I agree with Nerdfest's answer.. But I would do a trade-off based on the complexity of the method. If I have, say, some 50 odd lines after the initial if block, I would rather let my code return immediately. </p>
http://stackoverflow.com/questions/272863/use-of-else-after-a-return-or-break-from-a-function-or-loop/273056#2730560Answer by noah for Use of else after a return or break from a function or loopnoah2008-11-07T18:19:04Z2008-11-07T18:19:04Z<p>If you language has a ternary operator, this is always best:</p>
<pre><code>return condition ? valueIfTrue : valueIfFalse;
</code></pre>
<p>Failing that, I say that it depends on the context. If the "if(foo) return" is at the top of the method, that's obvious enough, or if the second return follow immediately, then there's very little chance of confusion. e.g.,</p>
<pre><code>someFunction():
if(foo) then:
return bar
... do something else
return baz
</code></pre>
<p>is fine. Anyone reading it should catch the if-return at the top. However this:</p>
<pre><code>someFunction():
doSomething()
somethingElse();
anotherThing = 1 + 2
if(anotherThing == 3) then:
return 4
doSomething()
if(blah) then:
tryAgain()
etc()
return 5
</code></pre>
<p>is potentially confusing because some readers will miss the return in the middle on the first pass.</p>
http://stackoverflow.com/questions/272863/use-of-else-after-a-return-or-break-from-a-function-or-loop/273082#2730820Answer by Greg for Use of else after a return or break from a function or loopGreg2008-11-07T18:26:30Z2008-11-07T18:26:30Z<p>I'd say without the else, but whatever you decide, I'd recommend getting a tool such as ReSharper to standardize the format of your code so you never need to re-make this decision with any other developers on your team. Removing redundant else statements is one of the things it can do for you automatically.</p>
http://stackoverflow.com/questions/272863/use-of-else-after-a-return-or-break-from-a-function-or-loop/273088#2730880Answer by Chris Ballance for Use of else after a return or break from a function or loopChris Ballance2008-11-07T18:27:51Z2008-11-07T18:27:51Z<p>The first is more concise. I would go with that method rather than adding keywords that really aren't necessary.</p>
http://stackoverflow.com/questions/272863/use-of-else-after-a-return-or-break-from-a-function-or-loop/273193#2731932Answer by Pistos for Use of else after a return or break from a function or loopPistos2008-11-07T18:56:56Z2008-11-07T18:56:56Z<p>I try hard to have exits from a function either at the beginning (guard clauses) or at the end. So if your example really is doing a precondition check:</p>
<pre><code>return true if my_var == 0
print "hello #{my_var}"
false
</code></pre>
<p>Basic CS "rules" say that having exit points in the middle of a function/method makes your code harder to read and understand. A reader scanning for exit points may miss the inner one(s).</p>
<p>Another reason I wouldn't use a full on if/else here is to be able to reduce the level of indentation.</p>
http://stackoverflow.com/questions/272863/use-of-else-after-a-return-or-break-from-a-function-or-loop/273438#2734380Answer by Steve Jessop for Use of else after a return or break from a function or loopSteve Jessop2008-11-07T19:58:24Z2008-11-07T19:58:24Z<p>For me it depends how "surprising" the return is.</p>
<p>There are certain cases - validating input parameters, checking that you're in the right state for the operation to be possible, where early exit is normal and expected. I wouldn't use an else clause for those.</p>
<p>But if you're half way through the method and want to exit early, the code will sometimes be easier to read with an if/else, since it makes it abundantly clear that you are dividing the world into two different cases, and doing different things in each case.</p>
<p>My rule of thumb would be that if it's basically arbitrary which case is the early exit, and which exits at the end of the routine, then the early exit is probably "surprising". Otherwise it may be "natural". So for instance the following two bits of code look structurally different even though they're equivalent:</p>
<pre><code>if (no_can_do) return false;
do;
things;
return true;
// ------------------------
if (!no_can_do) {
do;
things;
return true;
}
return false;
</code></pre>
<p>The second snippet is clearly evil, because it sends you off reading the end of the function for no good reason. So the early exit in the first snippet is not surprising, it's natural. </p>
<p>The following two bits of code look basically the same.</p>
<pre><code>if (case1) {
do;
things;
return true;
}
do;
different things;
return false;
// ------------------------
if (!case1) {
do;
different things;
return false;
}
do;
things;
return true;
</code></pre>
<p>Because it's arbitrary which case is the early exit, the early exit is therefore surprising. The nature of the function, that it handles two non-trivial cases, would perhaps better be highlighted by doing:</p>
<pre><code>if (case1) {
do;
things;
return true;
} else {
do;
different things;
return false;
}
</code></pre>
<p>instead. You might even write two separate routines here, one to handle case1 and the other to handle the rest, and just call one or the other.</p>