Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何获取表中的表数据,我的意思是这样的:
t = { {a, b, c}, {d, e, f} };
如果我写这行代码:
print( t[1] )
结果将是 —->>> {a, b, c}
但
我怎样才能只打印字母“a”?不使用ipairs我的意思是有没有办法使用类似的东西t[1]?
ipairs
t[1]
你试过t[1][1]吗?这应该让你获得表中的第一个索引t[1]
t[1][1]