标签: lua
我想访问我创建的表的第n个元素:
t = { 0.0 , 0.0 }
我怎么能在Lua中做到这一点?
我知道我可以使用ipairs,但我想要一个单线解决方案。
答案 0 :(得分:8)
t[n] -- this comment is just to make the answer sufficiently long