Tagged Questions
326
votes
48answers
28k views
Should a function have only one return statement? [closed]
Are there good reasons why it's a better practice to have only one return statement in a function?
Or is it okay to return from a function as soon as it is logically correct to do so, meaning there ...
24
votes
22answers
2k views
Why is “else” rarely used after “if x then return”?
This method:
boolean containsSmiley(String s) {
if (s == null) {
return false;
}
else {
return s.contains(":)");
}
}
can equivalently be written:
boolean ...
11
votes
22answers
837 views
What to put in the IF block and what to put in the ELSE block?
This is a minor style question, but every bit of readability you add to your code counts.
So if you've got:
if (condition) then
{
// do stuff
}
else
{
// do other stuff
}
How do you decide ...
1
vote
6answers
154 views
Quick question about returning from a nested statement
If I have something like a loop or a set of if/else statements, and I want to return a value from within the nest (see below), is the best way of doing this to assign the value to a field or property ...