Lua中if语句嵌套的使用教程

2023-12-05 0 436

Lua编程内嵌if-else语句,这意味着可以使用一个 if 或 else if 在另一个语句if或else if 语句中。
语法

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

您可以嵌套else if…else 以类似if语句的方式。
例子:

复制代码 代码如下:–[ local variable definition –]
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

您可能感兴趣的文章:

  • JQuery自适应IFrame高度(支持嵌套 兼容IE,ff,safafi,chrome)
  • js实现网页防止被iframe框架嵌套及几种location.href的区别
  • js中用window.open()打开多个窗口的name问题
  • javascript window.open打开新窗口后无法再次打开该窗口问题的解决方法
  • window.open()详解及浏览器兼容性问题示例探讨
  • js中window.open打开一个新的页面
  • 讲解Python中if语句的嵌套用法
  • 详解Java编程中if…else语句的嵌套写法
  • Window.Open打开窗体和if嵌套代码

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

悠久资源 Lua Lua中if语句嵌套的使用教程 https://www.u-9.cn/jiaoben/lua/101330.html

常见问题

相关文章

发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务