Lua: istruzioni if ​​annidate

È sempre legale nella programmazione Lua nest istruzioni if-else, il che significa che puoi usare un'istruzione if o else if all'interno di un'altra istruzione if o else if.

Sintassi

La sintassi per a nested if l'affermazione è la seguente:

if( boolean_expression 1)
then
   --[ Executes when the boolean expression 1 is true --]
   if(boolean_expression 2)
   then
      --[ Executes when the boolean expression 2 is true --]
   end
end

Puoi annidare else if...elsenello stesso modo in cui hai annidato l' istruzione if .

Esempio

--[ local variable definition --]
a = 100;
b = 200;

--[ check the boolean condition --]

if( a == 100 )
then
   --[ if condition is true then check the following --]
   if( b == 200 )
   then
      --[ if condition is true then print the following --]
      print("Value of a is 100 and b is 200" );
   end
end

print("Exact value of a is :", a );
print("Exact value of b is :", b );

Quando crei ed esegui il codice precedente, produce il seguente risultato.

Value of a is 100 and b is 200
Exact value of a is :	100
Exact value of b is :	200