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 ? |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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 ...
|
|||
|
|
|
|
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 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
|
|||
|
|