IF -ELSE
if (AUSDRUCK) {
ANWEISUNG;
} else if (Ausdruck) {
ANWEISUNG;
} else {
ANWEISUNG;
}
Download
Switch – Case
switch (AUSDRUCK) {
case WERT: ANWEISUNG; break;
case WERT: ANWEISUNG; break;
default: ANWEISUNG; break;
}
Download
Try – Catch
try {
ANWEISUNG
} catch (ex) {
ANWEISUNG
}
finally {
ANWEISUNG
}