Lua select函数用法实例
程序员文章站
2024-01-07 13:58:22
调用select时,必须传入一个固定实参selector(选择开关)和一系列变长参数。如果selector为数字n,那么select返回它的第n个可变实参,否则只能为字符串...
调用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
下一篇: Webshell基础知识深入讲解
推荐阅读
-
php empty(), isset(), is_null()函数用法实例
-
smarty自定义函数htmlcheckboxes用法实例,smarty自定义函数_PHP教程
-
PHP函数func_num_args用法实例分析_PHP
-
C#四舍五入(函数)用法实例
-
PHP匿名函数和use子句用法实例,匿名use子句实例
-
PHP中curl_setopt函数用法实例分析_PHP
-
smarty内部日期函数html_select_date()用法实例分析,select函数用法
-
smarty内部日期函数html_select_date()用法实例分析
-
jQuery.fadeOut() 函数实例用法详解
-
php mysql_real_escape_string函数用法与实例教程_PHP