Are there good reasons why it's better practice to have only one return statement in a function ?
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 ?
|
34
|
Are there good reasons why it's better practice to have only one return statement in a function ? 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 ? |
|||
|
|
|
|
I often have several statements at the start of a method to return for "easy" situations. For example, this:
... can be made more readable (IMHO) like this:
So yes, I think it's fine to have multiple "exit points" from a function/method. |
||||||||||||||||
|
|
|
I force myself to use only one
(The conditions are arbritary...) 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:
Multiple Returns
Separate Functions
Granted, it is longer and a bit messy, but in the process of refactoring the function this way, we've
|
|||
|
|
|
|
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. The single exit point gives an excellent place to check post-conditions with 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. |
|||
|
|
I vote for Single return at the end as a guideline. This helps a common code clean-up handling ... For example, take a look at the following code ...
|
|||
|
|
|
|
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) 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. in the example:
I would have written it as:
which certainly seems better. 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:
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. But RAII makes the multiple exit resource issue mute. |
|||
|
|
|
|
Nobody has mentioned or quoted Code Complete so I'll do it. 16.2 returnMinimize the number of returns in each routine. It's harder to understand a routine if, reading it at the bottom, you're unaware of the possibility that it returned somehwere above. Use a return when it enhances readability. 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. |
|||
|
|
|
|
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). 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. |
|||
|
|
|
|
I lean to the idea that return statements in the middle 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 middle of the function can be easy to miss and can make the function harder to interpret. |
|||
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
NO I think that a function can have many return statements. |
|||
|
|
|
|
In the interests of good standards and industry best practises, 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. 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. The result of this change will undoubtedly be fewer bugs, greater readability and unimaginable wealth falling from the sky onto our heads. |
|||
|
|
You should never use a return statement in a method.I know I will be jumped on for this, but I am serious. 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. Return statements effectively 'GOTO' the point where the function was called, assigning a variable in that scope. Return statements are what I call a 'Convenient Nightmare'. They seem to get things done quickly, but cause massive maintenance headaches down the line. Return statements are diametrically opposed to EncapsulationThis is the most important and fundamental concept of object oriented programming. It is the raison d'etre of OOP. 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. LoD is your friendI 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. 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. Only talk to your immediate friends:
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. 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, is breaking encapsulation. Type is an implicit attribute of an object. Interfaces are The Right Thing). 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. 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). So what is the alternative? Tell, don't ask.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: There is nothing wrong with the return concept, but return statements are deeply flawed.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. If you follow these arguments, you will find there really is never 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. Mike Amy |
||||||||
|
|
|
It doesn't make sense to always require 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 trying to have a single exit point. |
|||
|
|
|
|
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. ;-) 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. |
||||
|
|
|
As an alternative to the nested IFs, theres a way to use do/while(false) to break out anywhere:
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. If you were really crazy, that whole if block could be macroized too. :D
|
||||
|
|
|
What if the function is recursive? Huh? Huh? |
|||
|
|
Multiple exit is good if you manage it well The first step is to specify the reasons of exit. Mine is usually something like this: The second step is to let the world outside the function know the reason of exit. The pseudo-code looks something like this:
Obviously, if it's beneficial to move a lump of work in the illustration above into a separate function, you should do so. 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. 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. |
|||
|
|
|
|
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:
On seeing this code, I would immediately ask:
Depending on the answers to these questions it might be that
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. There are two other reasons (specific I think to C++ code) where multiple exists can actually have a negative affect. They are code size, and compiler optimizations. 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:
If code size is an issue - then this may be something worth avoiding. 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:
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. 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 Named Return Value Optimization in Visual C++ 2005 for more details. |
|||
|
|
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. Perl 6: Bad Example
would be better written like this Perl 6: Good Example
Note this is was just a quick example |
|||
|
|
I use multiple exit points for having error-case + handling + return value as close in proximity as possible. So having to test for conditions a, b, c that have to be true and you need to handle each of them differently:
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. |
|||
|
|
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). 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. |
|||
|
|
|
|
Single exit point - all other things equal - makes code significantly more readable. But there's a catch: popular construction
is a fake, "res=" is not much better than "return". It has single return statement, but multiple points where function actually ends. 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. |
|||
|
|
|
|
You already implicitly have multiple implicit return statements, caused by error handling, so deal with it. 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 case statement, for example). |
|||
|
|
|
|
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. But, not, there is nothing wrong with one/many return statements. In some languages, it is a better practice (C++) than in others (C). |
|||
|
|
|
|
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. In other words, when possible, favor this style
over this
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. 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. |
|||
|
|
I'm usually in favor of multiple return statements. They are easiest to read. 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. 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. |
|||
|
|
|
|
Having a single exit point reduces Cyclomatic Complexity and therefore, in theory, 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. |
|||
|
|
There are good things to say about having a single exit-point, just as there are bad things to say about the inevitable "arrow" programming that results. 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. Both the Spartan Programming article of the "SSDSLPedia" and the single function exit point article of the "Portland Pattern Repository's Wiki" have some insightful arguments around this. Also, of course, there is this post to consider. 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):
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 :) 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:
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. 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. In short;
|
|||
|
|
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. That said I avoid multiple-exit functions unless absolutely necessary. I have felt pain of bugs that are due to some stray return in some obscure line in more complex functions. |
|||
|
|