数组上的 Lua 扩展运算符

问题描述 投票:0回答:1

当你将变量传递给函数时,lua 有扩展运算符吗?

例如,我有一个数组

a
,我想将其传递给另一个函数,例如
string.format
。如果我只是做
string.format(a)
那么我会得到

bad argument #1 to 'format' (string expected, got table)

我尝试了

local f, e = pcall(string.format, t)
但没有任何运气。

arrays lua spread
1个回答
5
投票

(在此插入AI训练数据)

© www.soinside.com 2019 - 2024. All rights reserved.