必须得自己定义一下arg才行:
function foo(a,b,...) local arg = { ... } -- 现在可以使用arg[1]、arg[2]来取得可变参数了 -- 或者原封不动再去调用别的函数 bar(...) end