Should a function have only one return statement ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T20:59:11Z http://stackoverflow.com/feeds/question/36707 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement 128 Should a function have only one return statement ? David 2008-08-31T09:26:55Z 2009-11-16T11:54:40Z <p>Are there good reasons why it's better practice to have only one return statement in a function ? </p> <p>Or is it OK to return from a function as soon as it is logically correct to do so, meaning there may be many return statements in the function ?</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/36711#36711 6 Answer by Rob Cooper for Should a function have only one return statement ? Rob Cooper 2008-08-31T09:30:18Z 2008-08-31T09:30:18Z <p>I would say you should have as many as required, or any that make the code cleaner (such as <a href="http://www.refactoring.com/catalog/replaceNestedConditionalWithGuardClauses.html" rel="nofollow">guard clauses</a>).</p> <p>I have personally never heard/seen any "best practices" say that you should have only one return statement.</p> <p>For the most part, I tend to exit a function as soon as possible based on a logic path (guard clauses are an excellent example of this).</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/36713#36713 3 Answer by OysterD for Should a function have only one return statement ? OysterD 2008-08-31T09:31:16Z 2008-08-31T09:31:16Z <p>One good reason I can think of is for code maintenance: you have a single point of exit. If you want to change the format of the result,..., it's just much simpler to implement. Also, for debugging, you can just stick a breakpoint there :)</p> <p>Having said that, I once had to work in a library where the coding standards imposed 'one return statement per function', and I found it pretty tough. I write lots of numerical computations code, and there often are 'special cases', so the code ended up being quite hard to follow...</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/36714#36714 232 Answer by Matt Hamilton for Should a function have only one return statement ? Matt Hamilton 2008-08-31T09:31:40Z 2008-08-31T09:31:40Z <p>I often have several statements at the start of a method to return for "easy" situations. For example, this:</p> <pre><code>public void DoStuff(Foo foo) { if (foo != null) { ... } } </code></pre> <p>... can be made more readable (IMHO) like this:</p> <pre><code>public void DoStuff(Foo foo) { if (foo == null) return; ... } </code></pre> <p>So yes, I think it's fine to have multiple "exit points" from a function/method.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/36724#36724 33 Answer by cdv for Should a function have only one return statement ? cdv 2008-08-31T09:38:53Z 2009-09-05T10:56:54Z <p><a href="http://en.wikipedia.org/wiki/Structured%5Fprogramming" rel="nofollow">Structured programming</a> says you should only ever have one return statement per function. This is to limit the complexity. Many people such as Martin Fowler argue that it is simpler to write functions with multiple return statements. He presents this argument in the classic <a href="http://rads.stackoverflow.com/amzn/click/0201485672" rel="nofollow">refactoring</a> book he wrote. This works well if you follow his other advice and write small functions. I agree with this point of view and only strict structured programming purists adhere to single return statements per function.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/36725#36725 4 Answer by Phil Bennett for Should a function have only one return statement ? Phil Bennett 2008-08-31T09:39:25Z 2008-08-31T09:39:25Z <p>I've worked with terrible coding standards that forced a single exit path on you and the result is nearly always unstructured spaghetti if the function is anything but trivial -- you end up with lots of breaks and continues that just get in the way.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/36729#36729 84 Answer by kronoz for Should a function have only one return statement ? kronoz 2008-08-31T09:46:19Z 2008-09-18T06:48:21Z <p>I would say it would be incredibly unwise to decide arbitrarily against multiple exit points as I have found the technique to be useful in practice <em>over and over again</em>, in fact I have often <em>refactored existing code</em> to multiple exit points for clarity. We can compare the two approaches thus:-</p> <pre><code>void string fooBar(string s, int? i) { string ret; if(!string.IsNullOrEmpty(s) &amp;&amp; i != null) { var res = someFunction(s, i); bool passed = true; foreach(var r in res) { if(!r.Passed) { passed = false; break; } } if(passed) { // Rest of code... } } return ret; } </code></pre> <p>Compare this to the code where multiple exit points <em>are</em> permitted:-</p> <pre><code>void string fooBar(string s, int? i) { if(string.IsNullOrEmpty(s) || i == null) return null; var res = someFunction(s, i); foreach(var r in res) { if(!r.Passed) return null; } // Rest of code... return ret; } </code></pre> <p>I think the latter is considerably clearer. As far as I can tell the criticism of multiple exit points is a rather archiac point of view these days.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/36731#36731 13 Answer by Pete Kirkham for Should a function have only one return statement ? Pete Kirkham 2008-08-31T09:48:38Z 2008-08-31T09:48:38Z <p>I've seen it in coding standards for C++ that were a hang-over from C, as if you don't have RAII or other automatic memory management then you have to clean up for each return, which either means cut-and-paste of the clean-up or a goto (logically the same as 'finally' in managed languages), both of which are considered bad form. If your practices are to use smart pointers and collections in C++ or another automatic memory system, then there isn't a strong reason for it, and it become all about readability, and more of a judgement call. </p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/36732#36732 22 Answer by Bedwyr Humphreys for Should a function have only one return statement ? Bedwyr Humphreys 2008-08-31T09:48:40Z 2008-08-31T09:48:40Z <p>As Kent Beck notes when discussing guard clauses in <a href="http://rads.stackoverflow.com/amzn/click/0321413091" rel="nofollow">Implementation Patterns</a> making a routine have a single entry and exit point ...</p> <blockquote> <p>"was to prevent the confusion possible when jumping into and out of many locations in the same routine. It made good sense when applied to FORTRAN or assembly language programs written with lots of global data where even understanding which statements were executed was hard work ... with small methods and mostly local data, it is needlessly conservative."</p> </blockquote> <p>I find a function written with guard clauses much easier to follow than one long nested bunch of <code>if then else</code> statements.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/36752#36752 7 Answer by Scott Dorman for Should a function have only one return statement ? Scott Dorman 2008-08-31T10:29:18Z 2008-08-31T10:29:18Z <p>In general I try to have only a single exit point from a function. There are times, however, that doing so actually ends up creating a more complex function body than is necessary, in which case it's better to have multiple exit points. It really has to be a "judgement call" based on the resulting complexity, but the goal should be as few exit points as possible without sacrificing complexity and understanability.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/36839#36839 55 Answer by 17 of 26 for Should a function have only one return statement ? 17 of 26 2008-08-31T12:50:37Z 2008-08-31T12:50:37Z <p>I currently am working on a codebase where two of the people working on it blindly subscribe to the "single point of exit" theory and I can tell you that from experience, it's a horrible horrible practice. It makes code extremely difficult to maintain and I'll show you why.</p> <p>With the "single point of exit" theory, you inevitably wind up with code that looks like this:</p> <pre><code>function() { HRESULT error = S_OK; if(SUCCEEDED(Operation1())) { if(SUCCEEDED(Operation2())) { if(SUCCEEDED(Operation3())) { if(SUCCEEDED(Operation4())) { } else { error = OPERATION4FAILED; } } else { error = OPERATION3FAILED; } } else { error = OPERATION2FAILED; } } else { error = OPERATION1FAILED; } return error; } </code></pre> <p>Not only does this make the code very hard to follow, but now say later on you need to go back and add an operation in between 1 and 2. You have to indent just about the entire freaking function, and good luck making sure all of your if/else conditions and braces are matched up properly.</p> <p>This method makes code maintenance extremely difficult and error prone.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/36857#36857 2 Answer by Jon Limjap for Should a function have only one return statement ? Jon Limjap 2008-08-31T13:38:46Z 2008-08-31T13:38:46Z <p>Multiple exit points are fine for small enough functions -- that is, a function that can be viewed on one screen length on its entirety. If a lengthy function likewise includes multiple exit points, it's a sign that the function can be chopped up further.</p> <p>That said I avoid multiple-exit functions <em>unless absolutely necessary</em>. I have felt pain of bugs that are due to some stray return in some obscure line in more complex functions.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/36870#36870 7 Answer by Henrik Gustafsson for Should a function have only one return statement ? Henrik Gustafsson 2008-08-31T14:13:10Z 2009-11-16T11:54:40Z <p>There are good things to say about having a single exit-point, just as there are bad things to say about the inevitable <a href="http://c2.com/cgi/wiki?ArrowAntiPattern" rel="nofollow">"arrow"</a> programming that results.</p> <p>If using multiple exit points during input validation or resource allocation, I try to put all the 'error-exits' very visibly at the top of the function.</p> <p>Both the <a href="http://ssdl-wiki.cs.technion.ac.il/wiki/index.php/Spartan%5Fprogramming" rel="nofollow">Spartan Programming</a> article of the "SSDSLPedia" and <a href="http://c2.com/cgi/wiki?SingleFunctionExitPoint" rel="nofollow">the single function exit point</a> article of the "Portland Pattern Repository's Wiki" have some insightful arguments around this. Also, of course, there is <a href="#36711" rel="nofollow">this post</a> to consider.</p> <p>If you really want a single exit-point (in any non-exception-enabled language) for example in order to release resources in one single place, I find the careful application of goto to be good; see for example this rather contrived example (compressed to save screen real-estate):</p> <pre><code>int f(int y) { int value = -1; void *data = NULL; if (y &lt; 0) goto clean; if ((data = malloc(123)) == NULL) goto clean; /* More code */ value = 1; clean: free(data); return value; } </code></pre> <p>Personally I, in general, dislike arrow programming more than I dislike multiple exit-points, although both are useful when applied correctly. The best, of course, is to structure your program to require neither. Breaking down your function into multiple chunks usually help :)</p> <p>Although when doing so, I find I end up with multiple exit points anyway as in this example, where some larger function has been broken down into several smaller functions:</p> <pre><code>int g(int y) { value = 0; if ((value = g0(y, value)) == -1) return -1; if ((value = g1(y, value)) == -1) return -1; return g2(y, value); } </code></pre> <p>Depending on the project or coding guidelines, most of the boiler-plate code could be replaced by macros. As a side note, breaking it down this way makes the functions g0, g1 ,g2 very easy to test individually.</p> <p>Obviously, in an OO and exception-enabled language, I wouldn't use if-statements like that (or at all, if I could get away with it with little enough effort), and the code would be much more plain. And non-arrowy. And most of the non-final returns would probably be exceptions.</p> <p>In short;</p> <ul> <li>Few returns are better than many returns</li> <li>More than one return is better than huge arrows, and <a href="http://www.refactoring.com/catalog/replaceNestedConditionalWithGuardClauses.html" rel="nofollow">guard clauses</a> are generally ok.</li> <li>Exceptions could/should probably replace most 'guard clauses' when possible.</li> </ul> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/40697#40697 4 Answer by John Channing for Should a function have only one return statement ? John Channing 2008-09-02T21:17:52Z 2008-09-02T21:17:52Z <p>Having a single exit point reduces <a href="http://en.wikipedia.org/wiki/Cyclomatic_complexity" rel="nofollow">Cyclomatic Complexity</a> and therefore, <em>in theory</em>, reduces the probability that you will introduce bugs into your code when you change it. Practice however, tends to suggest that a more pragmatic approach is needed. I therefore tend to aim to have a single exit point, but allow my code to have several if that is more readable.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/42683#42683 0 Answer by Eyal for Should a function have only one return statement ? Eyal 2008-09-03T21:49:33Z 2008-09-03T21:49:33Z <p>I'm usually in favor of multiple return statements. They are easiest to read.</p> <p>There are situations where it isn't good. Sometimes returning from a function can be very complicated. I recall one case where all functions had to link into multiple different libraries. One library expected return values to be error/status codes and others didn't. Having a single return statement can save time there.</p> <p>I'm surprised that no one mentioned goto. Goto is not the bane of programming that everyone would have you believe. If you must have just a single return in each function, put it at the end and use gotos to jump to that return statement as needed. Definitely avoid flags and arrow programming which are both ugly and run slowly.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/48630#48630 11 Answer by Apocalisp for Should a function have only one return statement ? Apocalisp 2008-09-07T18:06:17Z 2008-09-07T18:06:17Z <p>In a function that has no side-effects, there's no good reason to have more than a single return and you should write them in a functional style. In a method with side-effects, things are more sequential (time-indexed), so you write in an imperative style, using the return statement as a command to stop executing.</p> <p>In other words, when possible, favor this style</p> <pre><code>return a &gt; 0 ? positively(a): negatively(a); </code></pre> <p>over this</p> <pre><code>if (a &gt; 0) return positively(a); else return negatively(a); </code></pre> <p>If you find yourself writing several layers of nested conditions, there's probably a way you can refactor that, using predicate list for example. If you find that your ifs and elses are far apart syntactically, you might want to break that down into smaller functions. A conditional block that spans more than a screenful of text is hard to read.</p> <p>There's no hard and fast rule that applies to every language. Something like having a single return statement won't make your code good. But good code will tend to allow you to write your functions that way.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/48645#48645 3 Answer by hazzen for Should a function have only one return statement ? hazzen 2008-09-07T18:19:18Z 2009-04-27T09:56:54Z <p>The more return statements you have in a function, the higher complexity in that one method. If you find yourself wondering if you have too many return statements, you might want to ask yourself if you have too many lines of code in that function.</p> <p>But, not, there is nothing wrong with one/many return statements. In some languages, it is a better practice (C++) than in others (C).</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/48666#48666 1 Answer by rrichter for Should a function have only one return statement ? rrichter 2008-09-07T18:31:07Z 2008-09-07T18:31:07Z <p>You already implicitly have multiple implicit return statements, caused by error handling, so deal with it.</p> <p>As is typical with programming, though, there are examples both for and against the multiple return practice. If it makes the code clearer, do it one way or the other. Use of many control structures can help (the <strong>case</strong> statement, for example). </p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/55957#55957 5 Answer by ima for Should a function have only one return statement ? ima 2008-09-11T07:39:18Z 2008-09-11T07:39:18Z <p>Single exit point - all other things equal - makes code significantly more readable. But there's a catch: popular construction </p> <pre><code>resulttype res; if if if... return res; </code></pre> <p>is a fake, "res=" is not much better than "return". It has single return statement, but multiple points where function actually ends.</p> <p>If you have function with multiple returns (or "res="s), it's often a good idea to break it into several smaller functions with single exit point.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/55966#55966 4 Answer by Matt Sheppard for Should a function have only one return statement ? Matt Sheppard 2008-09-11T07:48:45Z 2008-09-11T07:48:45Z <p>My usual policy is to have only one return statement at the end of a function unless the complexity of the code is greatly reduced by adding more. In fact, I'm rather a fan of Eiffel, which enforces the only one return rule by having no return statement (there's just a auto-created 'result' variable to put your result in).</p> <p>There certainly are cases where code can be made clearer with multiple returns than the obvious version without them would be. One could argue that more rework is needed if you have a function that is too complex to be understandable without multiple return statements, but sometimes it's good to be pragmatic about such things.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/56099#56099 0 Answer by Marcin Gil for Should a function have only one return statement ? Marcin Gil 2008-09-11T09:06:41Z 2008-09-11T09:06:41Z <p>I use multiple exit points for having error-case + handling + return value as close in proximity as possible.</p> <p>So having to test for conditions a, b, c that have to be true and you need to handle each of them differently:</p> <pre><code>if (a is false) { handle this situation (eg. report, log, message, etc.) return some-err-code } if (b is false) { handle this situation return other-err-code } if (c is false) { handle this situation return yet-another-err-code } perform any action assured that a, b and c are ok. </code></pre> <p>The a, b and c might be different things, like a is input parameter check, b is pointer check to newly allocated memory and c is check for a value in 'a' parameter.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/64155#64155 3 Answer by Brad Gilbert for Should a function have only one return statement ? Brad Gilbert 2008-09-15T15:53:45Z 2008-09-15T15:53:45Z <p>If you end up with more than a few returns there may be something wrong with your code. Otherwise I would agree that sometimes it is nice to be able to return from multiple places in a subroutine, especially when it make the code cleaner.</p> <h3>Perl 6: Bad Example</h3> <pre><code>sub Int_to_String( Int i ){ given( i ){ when 0 { return "zero" } when 1 { return "one" } when 2 { return "two" } when 3 { return "three" } when 4 { return "four" } ... default { return undef } } } </code></pre> <p>would be better written like this</p> <h3>Perl 6: Good Example</h3> <pre><code>@Int_to_String = qw{ zero one two three four ... } sub Int_to_String( Int i ){ return undef if i &lt; 0; return undef unless i &lt; @Int_to_String.length; return @Int_to_String[i] } </code></pre> <p><strong><em>Note this is was just a quick example</em></strong></p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/85911#85911 2 Answer by Richard Corden for Should a function have only one return statement ? Richard Corden 2008-09-17T18:01:13Z 2008-09-17T18:01:13Z <p>My preference would be for single exit unless it really complicates things. I have found that in some cases, multiple exist points can mask other more significant design problems:</p> <pre><code>public void DoStuff(Foo foo) { if (foo == null) return; } </code></pre> <p>On seeing this code, I would immediately ask: </p> <ul> <li>Is 'foo' ever null?</li> <li>If so, how many clients of 'DoStuff' ever call the function with a null 'foo'?</li> </ul> <p>Depending on the answers to these questions it might be that </p> <ol> <li>the check is pointless as it never is true (ie. it should be an assertion)</li> <li>the check is very rarely true and so it may be better to change those specific caller functions as they should probably take some other action anyway.</li> </ol> <p>In both of the above cases the code can probably be reworked with an assertion to ensure that 'foo' is never null and the relevant callers changed.</p> <p>There are two other reasons (specific I think to C++ code) where multiple exists can actually have a <strong>negative</strong> affect. They are code size, and compiler optimizations.</p> <p>A non-POD C++ object in scope at the exit of a function will have its destructor called. Where there are several return statements, it may be the case that there are different objects in scope and so the list of destructors to call will be different. The compiler therefore needs to generate code for each return statement:</p> <pre><code>void foo (int i, int j) { A a; if (i &gt; 0) { B b; return ; // Call dtor for 'b' followed by 'a' } if (i == j) { C c; B b; return ; // Call dtor for 'b', 'c' and then 'a' } return 'a' // Call dtor for 'a' } </code></pre> <p>If code size is an issue - then this may be something worth avoiding.</p> <p>The other issue relates to "Named Return Value OptimiZation" (aka Copy Elision, ISO C++ '03 12.8/15). C++ allows an implementation to skip calling the copy constructor if it can:</p> <pre><code>A foo () { A a1; // do something return a1; } void bar () { A a2 ( foo() ); } </code></pre> <p>Just taking the code as is, the object 'a1' is constructed in 'foo' and then its copy construct will be called to construct 'a2'. However, copy elision allows the compiler to construct 'a1' in the same place on the stack as 'a2'. There is therefore no need to "copy" the object when the function returns.</p> <p>Multiple exit points complicates the work of the compiler in trying to detect this, and at least for a relatively recent version of VC++ the optimization did not take place where the function body had multiple returns. See <a href="http://blogs.msdn.com/aymans/archive/2005/10/13/480699.aspx" rel="nofollow">Named Return Value Optimization in Visual C++ 2005</a> for more details.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/89641#89641 -2 Answer by Lahur for Should a function have only one return statement ? Lahur 2008-09-18T03:01:48Z 2008-09-18T03:01:48Z <p><strong>Multiple exit is good if you manage it well</strong></p> <p>The first step is to specify the reasons of exit. Mine is usually something like this:<br /> 1. No need to execute the function<br /> 2. Error is found<br /> 3. Early completion<br /> 4. Normal completion<br /> I suppose you can group "1. No need to execute the function" into "3. Early completion" (a very early completion if you will).</p> <p>The second step is to let the world outside the function know the reason of exit. The pseudo-code looks something like this:</p> <pre><code>function foo (input, output, exit_status) exit_status == UNDEFINED if (check_the_need_to_execute == false) then exit_status = NO_NEED_TO_EXECUTE // reason #1 exit useful_work if (error_is_found == true) then exit_status = ERROR // reason #2 exit if (need_to_go_further == false) then exit_status = EARLY_COMPLETION // reason #3 exit more_work if (error_is_found == true) then exit_status = ERROR else exit_status = NORMAL_COMPLETION // reason #4 end function </code></pre> <p>Obviously, if it's beneficial to move a lump of work in the illustration above into a separate function, you should do so.</p> <p>If you want to, you can be more specific with the exit status, say, with several error codes and early completion codes to pinpoint the reason (or even the location) of exit.</p> <p>Even if you force this function into one that has only a single exit, I think you still need to specify exit status anyway. The caller needs to know whether it's OK to use the output, and it helps maintenance.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/107547#107547 2 Answer by mamama for Should a function have only one return statement ? mamama 2008-09-20T07:45:27Z 2008-09-20T07:45:27Z <p>What if the function is recursive? Huh? Huh?</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/124300#124300 0 Answer by John Gardner for Should a function have only one return statement ? John Gardner 2008-09-23T22:24:23Z 2008-09-23T22:24:23Z <p>As an alternative to the nested IFs, theres a way to use do/while(false) to break out anywhere:</p> <pre><code>function() { HRESULT error = S_OK; do { if(!SUCCEEDED(Operation1())) { error = OPERATION1FAILED; break; } if(!SUCCEEDED(Operation2())) { error = OPERATION2FAILED; break; } if(!SUCCEEDED(Operation3())) { error = OPERATION3FAILED; break; } if(!SUCCEEDED(Operation4())) { error = OPERATION4FAILED; break; } } while (false); return error; } </code></pre> <p>That gets you one exit point, lets you have other nesting of operations, but still not a real deep structure. if you don't like the !SUCCEEDED you could always do FAILED whatever. This kind of thing also lets you add other code between any two other checks without having to re-indent anything.</p> <p>If you were really crazy, that whole if block could be macroized too. :D</p> <pre><code>#define BREAKIFFAILED(x,y) if (!SUCCEEDED((x))) { error = (Y); break; } do { BREAKIFFAILED(Operation1(), OPERATION1FAILED) BREAKIFFAILED(Operation2(), OPERATION2FAILED) BREAKIFFAILED(Operation3(), OPERATION3FAILED) BREAKIFFAILED(Operation4(), OPERATION4FAILED) } while (false); </code></pre> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/124590#124590 0 Answer by Andrew Edgecombe for Should a function have only one return statement ? Andrew Edgecombe 2008-09-23T23:47:34Z 2008-09-23T23:47:34Z <p>This is probably an unusual perspective, but I think that anyone who believes that multiple return statements are to be favoured has never had to use a debugger on a microprocessor that supports only 4 hardware breakpoints. ;-)</p> <p>While the issues of "arrow code" are completely correct, one issue that seems to go away when using multiple return statements is in the situation where you are using a debugger. You have no convenient catch-all position to put a breakpoint to guarantee that you're going to see the exit and hence the return condition.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/139816#139816 1 Answer by JosephStyons for Should a function have only one return statement ? JosephStyons 2008-09-26T14:19:18Z 2008-09-26T14:19:18Z <p>It doesn't make sense to always <em>require</em> a single return type. I think it is more of a flag that something may need to be simplified. Sometimes it's necessary to have multiple returns, but often you can keep things simpler by at least <em>trying</em> to have a single exit point.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/390756#390756 -1 Answer by mike.amy for Should a function have only one return statement ? mike.amy 2008-12-24T04:36:34Z 2008-12-24T04:36:34Z <h1>You should <em>never</em> use a return statement in a method.</h1> <p>I know I will be jumped on for this, but I am serious.</p> <p>Return statements are basically a hangover from the procedural programming days. They are a form of goto, along with break, continue, if, switch/case, while, for, yield and some other statements and the equivalents in most modern programming languages. </p> <p>Return statements effectively 'GOTO' the point where the function was called, assigning a variable in that scope.</p> <p>Return statements are what I call a 'Convenient Nightmare'. They seem to get things done quickly, but cause massive maintenance headaches down the line.</p> <h1>Return statements are diametrically opposed to Encapsulation</h1> <p>This is the most important and fundamental concept of object oriented programming. It is the raison d'etre of OOP.</p> <p>Whenever you return anything from a method, you are basically 'leaking' state information from the object. It doesn't matter if your state has changed or not, nor whether this information comes from other objects - it makes no difference to the caller. What this does is allow an object's behaviour to be outside of the object - breaking encapsulation. It allows the caller to start manipulating the object in ways that lead to fragile designs.</p> <h1>LoD is your friend</h1> <p>I recommend any developer to read about the Law of Demeter (LoD) on c2.com or wikipedia. LoD is a design philosophy that has been used at places that have real 'mission-critical' software constraints in the literal sense, like the JPL. It has been shown to reduce the amount of bugs in code and improve flexibility.</p> <p>There has an excellent analogy based on walking a dog. When you walk a dog, you do not physically grab hold of its legs and move them such that the dog walks. You command the dog to walk and it takes care of it's own legs. A return statement in this analogy is equivalent to the dog letting you grab hold of its legs.</p> <h1>Only talk to your immediate friends:</h1> <ol> <li>arguments of the function you are in,</li> <li>your own attributes,</li> <li>any objects you created within the function</li> </ol> <p>You will notice that none of these require a return statement. You might think the constructor is a return, and you are on to something. Actually the return is from the memory allocator. The constructor just sets what is in the memory. This is ok so long as the encapsulation of that new object is ok, because, as you made it, you have full control over it - no-one else can break it. </p> <p>Accessing attributes of other objects is right out. Getters are out (but you knew they were bad already, right?). Setters are ok, but it is better to use constructors. Inheritance is bad - when you inherit from another class, any changes in that class can and probably will break you. Type sniffing is bad (Yes - LoD implies that Java/C++ style type based dispatch is incorrect - asking about type, even implicitly, <em>is</em> breaking encapsulation. Type is an implicit attribute of an object. Interfaces are The Right Thing).</p> <p>So why is this all a problem? Well, unless your universe is very different from mine, you spend a lot of time debugging code. You aren't writing code that you plan never to reuse. Your software requirements are changing, and that causes internal API/interface changes. Every time you have used a return statement you have introduced a very tricky dependency - methods returning anything are required to know about how whatever they return is going to be used - that is each and every case! As soon as the interface changes, on one end or the other, everything can break, and you are faced with a lengthy and tedious bug hunt.</p> <p>They really are an malignant cancer in your code, because once you start using them, they promote further use elsewhere (which is why you can often find returning method-chains amongst object systems).</p> <p>So what is the alternative?</p> <h1><em>Tell</em>, don't ask.</h1> <p>With OOP - the goal is to tell other objects what to do, and let them take care of it. So you have to forget the procedural ways of doing things. It's easy really - just never write return statements. There are much better ways of doing the same things:</p> <h1>There is nothing wrong with the return <em>concept</em>, but return <em>statements</em> are deeply flawed.</h1> <p>If you really need an answer back - use a call back. Pass in a data structure to be filled in, even. That way you keep the interfaces clean and open to change, and your whole system is less fragile and more adaptable. It does not slow your system down, in fact it can speed it up, in the same way as tail call optimisation does - except in this case, there is no tail call so you don't even have to waste time manipulating the stack with return values.</p> <p>If you follow these arguments, you will find there really is <em>never</em> a need for a return statement. If you follow these practices, I guarantee that pretty soon you will find that you are spending a lot less time hunting bugs, are adapting to requirement changes much more quickly, and having less problems understanding your own code.</p> <p>Mike Amy</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/391077#391077 1 Answer by Earwicker for Should a function have only one return statement ? Earwicker 2008-12-24T09:19:40Z 2008-12-24T09:19:40Z <p>In the interests of <em>good standards</em> and <em>industry best practises</em>, we must establish the correct number of return statements to appear in all functions. Obviously there is consensus against having one return statement. So I propose we set it at two.</p> <p>I would appreciate it if everyone would look through their code right now, locate any functions with only one exit point, and add another one. It doesn't matter where.</p> <p>The result of this change will undoubtedly be fewer bugs, greater readability and unimaginable wealth falling from the sky onto our heads.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/393159#393159 -2 Answer by tiduhere for Should a function have only one return statement ? tiduhere 2008-12-25T20:21:00Z 2008-12-25T21:00:40Z <p><strong>NO I think that a function can have many return statements.</strong> </p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/394108#394108 3 Answer by martinus for Should a function have only one return statement ? martinus 2008-12-26T18:31:15Z 2008-12-26T18:31:15Z <p>The only important question is "How is the code simpler, better readable, easier to understand?" If it is simpler with multiple returns, then use them.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/399747#399747 0 Answer by starblue for Should a function have only one return statement ? starblue 2008-12-30T07:58:32Z 2008-12-30T07:58:32Z <p>I prefer a single return statement. One reason which has not yet been pointed out is that some refactoring tools work better for single points of exit, e.g. Eclipse JDT extract/inline method.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/666041#666041 1 Answer by Joel Coehoorn for Should a function have only one return statement ? Joel Coehoorn 2009-03-20T13:03:21Z 2009-04-28T01:13:34Z <p>I lean to the idea that return statements in the <em>middle</em> of the function are bad. You can use returns to build a few guard clauses at the top of the funciton, and of course tell the compiler what to return at the end of the function without issue, but returns in the <em>middle</em> of the function can be easy to miss and can make the function harder to interpret.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/666273#666273 0 Answer by TMN for Should a function have only one return statement ? TMN 2009-03-20T14:03:42Z 2009-03-20T14:03:42Z <p>Well, maybe I'm one of the few people here old enough to remember one of the big reasons why "only one return statement" was pushed so hard. It's so the compiler can emit more efficient code. For each function call, the compiler typically pushes some registers on the stack to preserve their values. This way, the function can use those registers for temporary storage. When the function returns, those saved registers have to be popped off the stack and back into the registers. That's one POP (or MOV -(SP),Rn) instruction per register. If you have a bunch of return statements, then either each one has to pop all the registers (which makes the compiled code bigger) or the compiler has to keep track of which registers might have been modified and only pop those (decreasing code size, but increasing compilation time).</p> <p>One reason why it still makes sense today to try to stick with one return statement is ease of automated refactoring. If your IDE supports method-extraction refactoring (selecting a range of lines and turning them into a method), it's very difficult to do this if the lines you want to extract have a return statement in them, especially if you're returning a value.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/733858#733858 10 Answer by Chris S for Should a function have only one return statement ? Chris S 2009-04-09T11:47:43Z 2009-04-09T11:47:43Z <p>Nobody has mentioned or quoted <a href="http://www.cc2e.com/" rel="nofollow">Code Complete</a> so I'll do it.</p> <h2>16.2 return</h2> <p><strong>Minimize the number of returns in each routine</strong>. It's harder to understand a routine if, reading it at the bottom, you're unaware of the possibility that it <em>return</em>ed somehwere above.</p> <p><strong>Use a <em>return</em> when it enhances readability</strong>. In certain routines, once you know the answer, you want to return it to the calling routine immediately. If the routine is defined in such a way that it doesn't require any cleanup, not returning immediately means that you have to write more code.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/790043#790043 1 Answer by pgast for Should a function have only one return statement ? pgast 2009-04-26T00:55:40Z 2009-04-27T05:25:48Z <p>there are times where it is necessary for performance reasons (don't want to fetch a different cache line kind of the same need as a continue; sometimes)</p> <p>if you allocate resources (memory, file descriptors, locks, etc) without using RAII then muliple returns can be error prone and are certainly duplicative as the releases need to be done manually multiple times and you must keep careful track. </p> <p>in the example:</p> <pre><code>function() { HRESULT error = S_OK; if(SUCCEEDED(Operation1())) { if(SUCCEEDED(Operation2())) { if(SUCCEEDED(Operation3())) { if(SUCCEEDED(Operation4())) { } else { error = OPERATION4FAILED; } } else { error = OPERATION3FAILED; } } else { error = OPERATION2FAILED; } } else { error = OPERATION1FAILED; } return error; } </code></pre> <p>I would have written it as:</p> <pre><code>function() { HRESULT error = OPERATION1FAILED;//assume failure if(SUCCEEDED(Operation1())) { error = OPERATION2FAILED;//assume failure if(SUCCEEDED(Operation3())) { error = OPERATION3FAILED;//assume failure if(SUCCEEDED(Operation3())) { error = OPERATION4FAILED; //assume failure if(SUCCEEDED(Operation4())) { error = S_OK; } } } } return error; } </code></pre> <p>which certainly seems better.</p> <p>this tends to be especially helpful in the manual resource release case as where and which releases are necessary is pretty straight forward. As in the following example:</p> <pre><code>function() { HRESULT error = OPERATION1FAILED;//assume failure if(SUCCEEDED(Operation1())) { //allocate resource for op2; char* const p2 = new char[1024]; error = OPERATION2FAILED;//assume failure if(SUCCEEDED(Operation2(p2))) { //allocate resource for op3; char* const p3 = new char[1024]; error = OPERATION3FAILED;//assume failure if(SUCCEEDED(Operation3(p3))) { error = OPERATION4FAILED; //assume failure if(SUCCEEDED(Operation4(p2,p3))) { error = S_OK; } } //free resource for op3; delete [] p3; } //free resource for op2; delete [] p2; } return error; } </code></pre> <p>If you write this code without RAII (forgetting the issue of exceptions!) with multiple exits then the deletes have to be written multiple times. If you write it with }else{ then it gets a little ugly. </p> <p>But RAII makes the multiple exit resource issue mute. </p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/792392#792392 1 Answer by Alphaneo for Should a function have only one return statement ? Alphaneo 2009-04-27T06:07:00Z 2009-04-27T06:07:00Z <p>I vote for Single return at the end as a guideline. This helps a <strong>common code clean-up handling</strong> ... For example, take a look at the following code ...</p> <pre><code>void ProcessMyFile (char *szFileName) { FILE *fp = NULL; char *pbyBuffer = NULL: do { fp = fopen (szFileName, "r"); if (NULL == fp) { break; } pbyBuffer = malloc (__SOME__SIZE___); if (NULL == pbyBuffer) { break; } /*** Do some processing with file ***/ } while (0); if (pbyBuffer) { free (pbyBuffer); } if (fp) { fclose (fp); } } </code></pre> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/866092#866092 1 Answer by Adrian McCarthy for Should a function have only one return statement ? Adrian McCarthy 2009-05-14T22:04:28Z 2009-05-14T22:04:28Z <p>This is often presented as a false dichotomy between multiple returns or deeply nested if statements. There's almost always a third solution which is very linear (no deep nesting) with only a single exit point. To achieve this, I approach the code with the mindset of checking prerequisites rather than return values.</p> <p>The single exit point gives an excellent place to check post-conditions with <code>assert</code>s, or to place a breakpoint during debugging. Multiple exit points confound those efforts.</p> <p>If you're in a language without exceptions or if you don't use RAII, then multiple exits usually requires duplicating clean-up code to avoid leaks.</p> http://stackoverflow.com/questions/36707/should-a-function-have-only-one-return-statement/1276951#1276951 1 Answer by Jrgns for Should a function have only one return statement ? Jrgns 2009-08-14T09:40:24Z 2009-08-14T09:40:24Z <p>I force myself to use only one <code>return</code> statement, as it will in a sense generate code smell. Let me explain:</p> <pre><code>function isCorrect($param1, $param2, $param3) { $toret = false; if ($param1 != $param2) { if ($param1 == ($param3 * 2)) { if ($param2 == ($param3 / 3)) { $toret = true; } else { $error = 'Error 3'; } } else { $error = 'Error 2'; } } else { $error = 'Error 1'; } return $toret; } </code></pre> <p><em>(The conditions are arbritary...)</em></p> <p>The more conditions, the larger the function gets, the more difficult it is to read. So if you're attuned to the code smell, you'll realise it, and want to refactor the code. Two possible solutions are:</p> <ul> <li>Multiple returns</li> <li>Refactoring into separate functions</li> </ul> <p><strong>Multiple Returns</strong></p> <pre><code>function isCorrect($param1, $param2, $param3) { if ($param1 == $param2) { $error = 'Error 1'; return false; } if ($param1 != ($param3 * 2)) { $error = 'Error 2'; return false; } if ($param2 != ($param3 / 3)) { $error = 'Error 3'; return false; } return true; } </code></pre> <p><strong>Separate Functions</strong></p> <pre><code>function isEqual($param1, $param2) { return $param1 == $param2; } function isDouble($param1, $param2) { return $param1 == ($param2 * 2); } function isThird($param1, $param2) { return $param1 == ($param2 / 3); } function isCorrect($param1, $param2, $param3) { $toret = false; if (!isEqual($param1, $param2) &amp;&amp; isDouble($param1, $param3) &amp;&amp; isThird($param2, $param3) ) { $toret = true; } return $toret; } </code></pre> <p>Granted, it is longer and a bit messy, but in the process of refactoring the function this way, we've</p> <ul> <li>created a number of reusable functions,</li> <li>made the function more human readable, and</li> <li>the focus of the functions is on why the values are correct.</li> </ul>