1. ホーム
  2. スクリプト・コラム
  3. ルア

Luaでネストされたif文の使用に関するチュートリアル

2022-02-11 04:14:58

 Luaプログラミングにおけるif-else文のネストとは、if文やelse文の中に別のif文やelse文が使えることを意味します。
シンタックス

ネストされたif文の構文は以下の通りです。

コピーコード コードは以下の通りです。
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

if文と同じようにelse if... .elseをネストすることができます。

コピーコード コードは以下の通りです。
--[ 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 );

上記のコードをビルドして実行すると、次のような結果が得られます。

コピーコード コードは以下の通りです。
Value of a is 100 and b is 200
Exact value of a is : 100
Exact value of b is : 200