Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
Nachdem Sie jetzt eine switch/case-Anweisung in Aktion gesehen haben, nehmen wir das Ganze auseinander und sehen uns das allgemeine Format der Anweisung an.
switch + ( + Testwert + ) + {
case + Übereinstimmung 1 + :
Anweisung + ;
break + ;
...
default + :
Anweisung + ;
...
break + ;
}