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;??????
|
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.
|
|||
|
No if you return from 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. |
|||||
|
|
|
No break is required as |
|||
|
|
|
It is not "implied", but since the code will never get there, you don't have to write |
|||
|
|
|
program execution will never reach at the break statement if it has return statement before it. |
|||
|
|
|
After return the program will not reach the break so you can remove the statement from there. |
|||
|
|
defaultis normally the last case in the switch, thebreakbecomes doubly redundant. It's unreachable because of the return, and in any case abreakas the last thing in aswitchjust jumps to the same place that you'd "fall out" to anyway, the first statement after the end of theswitch. But regardless of whether it does anything, some style guides want everycaseto have either abreakor at least a comment saying something like "fall through", just because people find it very easy to forget thebreakwhen it is needed. – Steve Jessop Jan 31 '12 at 9:48defaultdoes not need to be last in the switch statement. And since many people, for whatever reason, simply add newcasestatements to the end of theswitch, 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