Lua select函数用法 Lua select函数用法实例
人气:0想了解Lua select函数用法实例的相关内容吗,在本文为您仔细讲解Lua select函数用法的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点: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
加载全部内容