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 ?
|
37
|
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 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. With the "single point of exit" theory, you inevitably wind up with code that looks like this:
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. This method makes code maintenance extremely difficult and error prone. |
||||||||||||
|
|
|
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. |
|||
|
|
|
|
As Kent Beck notes when discussing guard clauses in Implementation Patterns making a routine have a single entry and exit point ...
I find a function written with guard clauses much easier to follow than one long nested bunch of |
|||
|
|
|
|
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. |
|||
|
|
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 over and over again, in fact I have often refactored existing code to multiple exit points for clarity. We can compare the two approaches thus:-
Compare this to the code where multiple exit points are permitted:-
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. |
|||
|
|
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. |
|||
|
|
|
|
Structured programming 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 refactoring 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. |
||||
|
|
|
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 :) 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... |
|||
|
|
|
|
I would say you should have as many as required, or any that make the code cleaner (such as guard clauses). I have personally never heard/seen any "best practices" say that you should have only one return statement. 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). |
|||
|
|