vote up 3 vote down star

Do you prefer to write methods/functions using a single return statement or do you prefer several return statements?

C# pseudo code example for one return:

public string Foo(string message)
{
     string result = string.Empty;

     if (message.Equals("Ping?"))
     {
         result = "Pong!";
     }
     else
     {
         result = "Bar.";
     }

     return result;
 }

Same example with multiple return statements:

public string Foo(string message)
{
    if (message.Equals("Ping?"))
    {
        return "Pong!";
    }
    else
    {
        return "Bar.";
    }
}

If you prefer one over the other, why so?

flag

closed as exact duplicate by Mark Cidade Sep 23 '08 at 22:21

9 Answers

vote up 7 vote down check

Duplicate.

link|flag
Sorry, I searched but had not found this one. – hangy Sep 23 '08 at 21:54
hangy maybe you should train with the site more before you interact, so far you only asked crap questions. – Florian Bösch Sep 23 '08 at 21:56
So far I have found the site's search function to be woefully inadequate.... It would be nice to be able to limit it to questions only. – DGM Sep 23 '08 at 22:05
No need to be rude, Florian. – JW Sep 23 '08 at 22:20
vote up 3 vote down

I prefer a single return statement unless it became necessary to create additional variables to achieve that. The extra variables offset any readability gain made by having a single return.

But then, I would have written your example as:

public string Foo(string message)
{
    return message.Equals("Ping?") ? "Pong!" : "Bar.";
}
link|flag
vote up 2 vote down

I personally prefer the single return form. I believe it's easier to read.

link|flag
vote up 1 vote down

I have no problems with multiple return values, but I use whatever makes the code easiest to understand. It's all in the understanding, I think.

link|flag
vote up 1 vote down

I prefer multiple return statments because it means shorter code, which is a good thing.

link|flag
vote up 1 vote down

Here's a slightly modified version of the code you posted that is the way I tend to prefer.

Using Single Return Statement:

public string Foo(string message)
{
    string result = "Bar.";
    if (message.Equals("Ping?"))
        result = "Pong!";
    return result;
}

Using Multiple Return Statements:

public string Foo(string message)
{
    if (message.Equals("Ping?"))
        return "Pong!";

    return "Bar.";
}

One thing to remember is that any code after a Return statement is not executed if the Return is executed. The Return immediately exits the function.

I also prefer the second example I listed, since it doesn't involve the creation of a variable to hold the value prior to actually returning it.

link|flag
vote up 1 vote down

Multiple exits (breaks, returns, exception throws, gotos, etc.) simplify blocks of code by releasing conceptual artifacts earlier, and establishing more preconditions for the remainder of the block. Multiple entrances would do the opposite, complexifying the block.

link|flag
vote up 0 vote down

In a lot of ways, this question is asking us to compare functional and imperative styles of coding. In a functional language of course there is no return statement, meaning that all functions have a single point of exit. This style is nice and usually easier to follow. However, this is really only due to the fact that functional languages follow an "expression oriented" syntax. There are no statements; everything resolves to a value. Thus, you could rewrite your example in Scala without introducing any variables, just return the value of the conditional.

Bottom line: I strive for one exit point, but it isn't always bed in imperatve languages. In such cases, I would use two returns.

link|flag
vote up 0 vote down

In some cases I have had some complicated logic involved, and it makes much more sense to just get out of the function quickly when the answer is known, rather than setting a flag and then having all the rest of the function check that flag in addition the logic at hand.

In a similar fasion, what about web page redirects? It's a sort of return statement:

if($somecondition) {
   header("Location: error.php");
}

I have used that metaphor many times at the beginning of a script to bail out when something is not right... it's functionally the same as a return statement, but it sure doesn't make sense to make a flag and then put that down at the bottom of the web page - in fact you can't, if you've already output a body.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.