Lua中的表内表

发布于 2024-11-26 04:07:05 字数 285 浏览 1 评论 0原文

我怎样才能获取表中表的数据,我的意思是这样的:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

桜花祭 2024-12-03 04:07:05

您尝试过t[1][1]吗?这应该会为您提供从 t[1] 获得的表中的第一个索引

Have you tried t[1][1]? That should get you the first index in the table you get from t[1]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文