Tagged Questions
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
841 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
155 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 ...