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
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;
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
Exact value of a is : 100
Exact value of b is : 200
関連
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン