北考网

Lua中if ... else语句的详解用法

时间:2023-06-12 19:57:32 文/李盛 句子北考网www.beiweimall.com

Lua中if ... else语句的详解用法

  if 语句后面可以跟一个可选的else语句,当布尔表达式为假该语句执行。

  语法

  在Lua编程语言中的.if ... else语句的语法是:

  代码如下:

  if(boolean_expression)

  then

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

  else

  --[ statement(s) will execute if the boolean expression is false --]

  end

  如果布尔表达式的值为true,那么if代码块将被执行,否则else代码块将被执行。

  Lua程序设计语言假定布尔true和非零值的任意组合作为true,以及它是否是布尔假或零,则假定为false值。但应当注意的是,在Lua零值被视为true。

  例如:

  代码如下:

  --[ local variable definition --]

  a = 100;

  --[ check the boolean condition --]

  if( a < 20 )

  then

  --[ if condition is true then print the following --]

  print("a is less than 20" )

  else

  --[ if condition is false then print the following --]

  print("a is not less than 20" )

  end

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

  当建立和运行上面的代码,它会产生以下结果。

  代码如下:

  a is not less than 20

  value of a is : 100

  if...else if...else 语句

  if语句后面可以跟一个可选的else if ... else语句,这是非常有用的使用,以测试各种条件单个if...else if 语句。

  当使用if , else if , else语句有几点要记住使用:

  if 可以有零或一个 else ,但必须在elseif之前。

  if 之后可以有零到很多else if在else之前。

  一旦一个else if成功,其它的elseif将不会被测试。

  语法

  if...else if...else...else语句在Lua编程语言的语法是:

  代码如下:

  if(boolean_expression 1)

  then

  --[ Executes when the boolean expression 1 is true --]

  else if( boolean_expression 2)

  --[ Executes when the boolean expression 2 is true --]

  else if( boolean_expression 3)

  --[ Executes when the boolean expression 3 is true --]

  else

  --[ executes when the none of the above condition is true --]

  end

  例如:

  代码如下:

  --[ local variable definition --]

  a = 100

  --[ check the boolean condition --]

  if( a == 10 )

  then

  --[ if condition is true then print the following --]

  print("Value of a is 10" )

  elseif( a == 20 )

  then

  --[ if else if condition is true --]

  print("Value of a is 20" )

  elseif( a == 30 )

  then

  --[ if else if condition is true --]

  print("Value of a is 30" )

  else

  --[ if none of the conditions is true --]

  print("None of the values is matching" )

  end

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

  当建立和运行上面的代码,它会产生以下结果。

  代码如下:

  None of the values is matching

  Exact value of a is: 100

相关文章

分手时感人的语句2023-06-06 03:24:46

鼓励别人经典语句2023-06-02 06:08:18

描写景物的语句2023-06-16 16:22:55

最新国庆节问候祝福语2023-06-13 05:54:24

赞美好朋友的语句大全2023-06-12 22:53:02

哄女孩开心的爱情语句2023-06-03 13:32:40

上海对外经贸大学和北京交通大学(威海校区)对比哪个好(排名分数线区2024-03-31 16:25:18

河北高考排名237950名物理能上什么大学(能报哪些学校)2024-03-31 16:19:23

山东城市建设职业学院在山东招生人数和招生计划 多少人2024-03-31 16:15:16

上海农林职业技术学院在湖南招生人数和招生计划 多少人2024-03-31 16:12:52

吉林农业科技学院在湖南招生人数和招生计划 多少人2024-03-31 16:09:19

安徽高考多少分可以上云南经贸外事职业学院 招生人数和最低分2024-03-31 16:04:52

精选励志的句子80条2023-06-05 11:42:24

思考人生的古风句子2023-06-06 20:31:32

情侣的句子古风版2023-06-09 12:37:12

最新文章

热门排序