如何访问Lua中表的第一个元素?

时间:2015-06-26 14:20:59

标签: lua

我想访问我创建的表的第n个元素:

t = { 0.0 , 0.0 }

我怎么能在Lua中做到这一点?

我知道我可以使用ipairs,但我想要一个单线解决方案。

1 个答案:

答案 0 :(得分:8)

t[n]  -- this comment is just to make the answer sufficiently long