Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
変数を関数に渡すときに、lua には拡散演算子がありますか?
たとえば、配列がaあり、これを別の関数に渡したいとしますstring.format。もし私がそうするならstring.format(a)、私は得る
a
string.format
string.format(a)
bad argument #1 to 'format' (string expected, got table)
私はlocal f, e = pcall(string.format, t)運がなかったので試しました。
local f, e = pcall(string.format, t)