标签:table

Lua-table.concat()可以在关联数组中使用吗

table.concat无法直接用于关联数组,因为关联数组的元素顺序是不固定的。 但是我们可以先将关联数组转换为普通数组,然后使用table.concat: local t = { [……