Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In a switch statement inside a bool function I have this. Do I add break or is it implied I am very bad at this.

case Stop:
default:
    return false;
//break;??????
share|improve this question
1  
Since the default is normally the last case in the switch, the break becomes doubly redundant. It's unreachable because of the return, and in any case a break as the last thing in a switch just jumps to the same place that you'd "fall out" to anyway, the first statement after the end of the switch. But regardless of whether it does anything, some style guides want every case to have either a break or at least a comment saying something like "fall through", just because people find it very easy to forget the break when it is needed. – Steve Jessop Jan 31 '12 at 9:48
@SteveJessop, of course default does not need to be last in the switch statement. And since many people, for whatever reason, simply add new case statements to the end of the switch, it seems a good preventative measure to not let the final case/default fall-through to the end. – edA-qa mort-ora-y Jan 31 '12 at 11:31

6 Answers

up vote 5 down vote accepted

No if you return from default case break statement isn't necessary there.

You must add break statement only after all your cases which you want to operate and stop switch's work, otherwise default is operated returning from function.

share|improve this answer
I would refine this to "if you return from any case". – phresnel Jan 31 '12 at 8:54
Yeah, of course. – Chuck Norris Jan 31 '12 at 8:55

No break is required as return will be the last statement executed in the function.

share|improve this answer

It is not "implied", but since the code will never get there, you don't have to write break;.

share|improve this answer

It's just redundant, return is enough.

share|improve this answer

program execution will never reach at the break statement if it has return statement before it.

share|improve this answer

After return the program will not reach the break so you can remove the statement from there.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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