• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Lua select函数用法实例

    调用select时,必须传入一个固定实参selector(选择开关)和一系列变长参数。如果selector为数字n,那么select返回它的第n个可变实参,否则只能为字符串"#",这样select会返回变长参数的总数。例子代码:

    复制代码 代码如下:

     do
     function foo(...)
      for i = 1, select('#', ...) do //get the count of the params
       local arg = select(i, ...);//select the param
       print("arg", arg);
      end
     end

     foo(1, 2, 3, 4);
    end

    上一篇:Lua返回一个Closures函数实例
    下一篇:Lua UnPack函数用法实例
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    Lua select函数用法实例 Lua,select,函数,用法,实例,