前端之家收集整理的这篇文章主要介绍了
如何快速初始化Lua中的关联表?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Lua中,您可以按照以下方式创建表:
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}
原文链接:https://www.f2er.com/lua/274789.html