Lua - If 语句


if语句由一个布尔表达式后跟一个或多个语句组成。

句法

Lua 编程语言中 if 语句的语法是 -

if(boolean_expression)
then
   --[ statement(s) will execute if the boolean expression is true --]
end

如果布尔表达式的计算结果为true,则 if 语句内的代码块将被执行。如果布尔表达式的计算结果为false,则将执行 if 语句结束后(右花括号后)的第一组代码。

Lua 编程语言将布尔true非 nil值的任意组合假定为true,如果它是布尔falsenil,则假定为false值。需要注意的是,在 Lua 中,零将被视为 true。

流程图

Lua if 语句

例子

--[ local variable definition --]
a = 10;

--[ check the boolean condition using if statement --]

if( a < 20 )
then
   --[ if condition is true then print the following --]
   print("a is less than 20" );
end

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

当您构建并运行上述代码时,它会产生以下结果。

a is less than 20
value of a is : 10
lua_decision_making.htm