Swift - Dichiarazioni If annidate
In Swift 4 è sempre legale annidare if-else dichiarazioni, il che significa che puoi usarne una if o else iflato un altro if o else if dichiarazione (i).
Sintassi
La sintassi per a nested if l'affermazione è la seguente:
if boolean_expression_1 {
/* Executes when the boolean expression 1 is true */
if boolean_expression_2 {
/* Executes when the boolean expression 2 is true */
}
}
Puoi annidare else if...elsenello stesso modo in cui hai annidato l' istruzione if .
Esempio
var varA:Int = 100;
var varB:Int = 200;
/* Check the boolean condition using if statement */
if varA == 100 {
/* If condition is true then print the following */
print("First condition is satisfied");
if varB == 200 {
/* If condition is true then print the following */
print("Second condition is also satisfied");
}
}
print("Value of variable varA is \(varA)");
print("Value of variable varB is \(varB)");
Quando il codice precedente viene compilato ed eseguito, produce il seguente risultato:
First condition is satisfied
Second condition is also satisfied
Value of variable varA is 100
Value of variable varB is 200