主页 > 知识库 > Lua中if语句嵌套的使用教程

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

热门标签:服务外包 Linux服务器 百度竞价排名 呼叫中心市场需求 地方门户网站 网站排名优化 AI电销 铁路电话系统

 在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嵌套代码

标签:黄山 湘潭 仙桃 兰州 湖南 铜川 崇左 衡水

巨人网络通讯声明:本文标题《Lua中if语句嵌套的使用教程》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266