local t = { 1,2,3,4,5 }
但是,我想创建一个关联表,我必须这样做:
local t = {} t['foo'] = 1 t['bar'] = 2
以下给出错误:
local t = { 'foo' = 1,'bar' = 2 }
有没有办法做到类似我的第一个代码片段?
local t = { foo = 1,bar = 2}
或者,如果表中的键不是合法标识符:
local t = { ["one key"] = 1,["another key"] = 2}