if 语句由布尔表达式组成,后跟一个或多个语句。
if statement - 语法
Lua编程语言中的if语句的语法是-
if(boolean_expression) then --[ statement(s) will execute if the boolean expression is true --] end
如果布尔表达式的输出为 true ,则将执行if语句中的代码块。如果布尔表达式的输出为 false ,则将执行if语句结束后(右花括号之后)的第一组代码。
Lua编程语言假定布尔值 true 和 non-nil 的任意组合为 true ,如果是布尔值 false 或 nil ,则假定为 false 值。要注意的是,在Lua中,0被认为是true。
if statement - 流程图
if statement - 示例
--[ 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
参考链接
https://www.learnfk.com/lua/if-statement-in-lua.html
标签:语句,教程,false,--,无涯,Lua,statement,true From: https://blog.51cto.com/u_14033984/6941502