In computer programming, a switch, case, select or inspect statement is a type of selection control mechanism that exists in most imperative programming languages such as Pascal, Ada, C/C++, C#, Java, and so on. It is also included in several other types of languages. Its purpose is to allow the value of a variable or expression to control the flow of program execution via a multiway branch (or "goto", one of several labels). The main reasons for using a switch include improving clarity, by reducing otherwise repetitive coding, and (if the heuristics permit) also offering the potential for faster execution through easier compiler optimization in many cases.
Stats
created |
1 year ago |
viewed |
58 times |
active |
1 year ago |
editors |
1 |
Recent Hot Answers
Switch on enum with default case won't compile.Switch statement in Java error
Switch on enum with default case won't compile.
Compiler not giving error for alternative name for 'default' case in switch
Avoid if-else or switch-case statements for deciding
more »
Related Tags
java × 408c# × 322
php × 316
c++ × 231
javascript × 221
if-statement × 173
c × 171
case × 147
jquery × 125
enums × 88
objective-c × 87
iphone × 64
string × 62
performance × 61
arrays × 54
loops × 52
.net × 50
ios × 48
ruby × 48
python × 40
while-loop × 33
xcode × 32
function × 29
break × 29