Is there programming language with better approach for switch's break statements ?
Posted
by Vitaly Polonetsky
on Stack Overflow
See other posts from Stack Overflow
or by Vitaly Polonetsky
Published on 2010-06-10T13:17:20Z
Indexed on
2010/06/10
13:23 UTC
Read the original article
Hit count: 214
It's the same syntax in a way too many languages:
switch (someValue) {
case OPTION_ONE:
case OPTION_LIKE_ONE:
case OPTION_ONE_SIMILAR:
doSomeStuff1();
break; // EXIT the switch
case OPTION_TWO_WITH_PRE_ACTION:
doPreActionStuff2();
// the default is to CONTINUE to next case
case OPTION_TWO:
doSomeStuff2();
break; // EXIT the switch
case OPTION_THREE:
doSomeStuff3();
break; // EXIT the switch
}
Now all you know that break
statements are required, because the switch
will continue to the next case
when break
statement is missing. We have an example of that with OPTION_LIKE_ONE
, OPTION_ONE_SIMILAR
and OPTION_TWO_WITH_PRE_ACTION
. The problem is that we only need this "skip to next case" very very very rarely. And very often we put break at the end of case
.
It very easy for a beginner to forget about it. And one of my C teachers even explained it to us as if it was a bug in C language (don't want to talk about it :)
I would like to ask if there are any other languages that I don't know of (or forgot about) that handle switch/case like this:
switch (someValue) {
case OPTION_ONE: continue; // CONTINUE to next case
case OPTION_LIKE_ONE: continue; // CONTINUE to next case
case OPTION_ONE_SIMILAR:
doSomeStuff1();
// the default is to EXIT the switch
case OPTION_TWO_WITH_PRE_ACTION:
doPreActionStuff2();
continue; // CONTINUE to next case
case OPTION_TWO:
doSomeStuff2();
// the default is to EXIT the switch
case OPTION_THREE:
doSomeStuff3();
// the default is to EXIT the switch
}
The second question: is there any historical meaning to why it is like this in C? May be continue to next case was used far more often than we use it these days ?
© Stack Overflow or respective owner