Groovy - Istruzione If annidata
A volte è necessario disporre di più istruzioni if incorporate l'una nell'altra.
La forma generale di questa dichiarazione è:
if(condition) {
statement #1
statement #2
...
} else if(condition) {
statement #3
statement #4
} else {
statement #5
statement #6
}
Di seguito è riportato un esempio di un'istruzione if / else nidificata:
class Example {
static void main(String[] args) {
// Initializing a local variable
int a = 12
//Check for the boolean condition
if (a>100) {
//If the condition is true print the following statement
println("The value is less than 100");
} else
// Check if the value of a is greater than 5
if (a>5) {
//If the condition is true print the following statement
println("The value is greater than 5 and greater than 100");
} else {
//If the condition is false print the following statement
println("The value of a is less than 5");
}
}
}
Nell'esempio precedente, inizializziamo prima una variabile con un valore di 12. Nel primo if dichiarazione, stiamo vedendo se il valore di a è maggiore di 100. In caso contrario, inseriamo il nostro secondo ciclo for per vedere se il valore di a è maggiore di 5 o minore di 5. L'output del codice precedente sarebbe -
The value is greater than 5 and greater than 100