Lua中的表内表
我怎样才能获取表中表的数据,我的意思是这样的:
t = { {a, b, c}, {d, e, f} };
如果我写这行代码:
print( t[1] )
结果将是 -–>>>> {a, b, c}
但是
我怎样才能只打印字母“a”呢?不使用 ipairs
我的意思是有什么办法可以使用 t[1]
之类的东西吗?
How can I get the data which is a table inside a table, i mean like this:
t = { {a, b, c}, {d, e, f} };
if I write this line of code:
print( t[1] )
the result will be —–>>> {a, b, c}
BUT
how can I print just the letter “a”? without using ipairs
I mean is there any way to use something like t[1]
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尝试过
t[1][1]
吗?这应该会为您提供从t[1]
获得的表中的第一个索引Have you tried
t[1][1]
? That should get you the first index in the table you get fromt[1]