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

Luaで関係演算子を使用するためのチュートリアル

2022-02-11 15:43:28

Lua言語がサポートするすべての関係演算子の一覧は以下の通りです。変数Aに10、変数Bに20が格納されているとします。

Luaプログラミング言語が提供するすべての関係演算子を理解するために、次の例を試してみてください。

コピーコード コードは以下の通りです。
a = 21
b = 10

if( a == b )
then
   print("Line 1 - a is equal to b" )
else
   print("Line 1 - a is not equal to b" )
end

if( a ~= b )
then
   print("Line 2 - a is not equal to b" )
else
   print("Line 2 - a is equal to b" )
end

if ( a < b )
then
   print("Line 3 - a is less than b" )
else
   print("Line 3 - a is not less than b" )
end

if ( a > b )
then
   print("Line 4 - a is greater than b" )
else
   print("Line 5 - a is not greater than b" )
end

-- Lets change the value of a and b
a = 5
b = 20
if ( a <= b )
then
   print("Line 5 - a is either less than or equal to b" )
end

if ( b >= a )
then
   print("Line 6 - b is either greater than or equal to b" )
end

上記のプログラムを作成し、実行すると、以下のような結果が得られます。

コピーコード コードは以下の通りです。
Line 1 - a is not equal to b
Line 2 - a is not equal to b
Line 3 - a is not less than b
Line 4 - a is greater than b
Line 5 - a is either less than or equal to b
Line 6 - b is either greater than or equal to b