如何访问数组内 table 内的值?
How to get access to a value inside a table inside array?
我有这个结构,我正在尝试访问最后一个索引:
table = { {[11] = 22}, {[255] = 1}, {[55] = 1000} }
我试过了,但是 returns 我 nil
print(table[#table][1])
如何获得 1000 值?
由于您使用数字键,因此实际上是 table[#table][55]
。
我有这个结构,我正在尝试访问最后一个索引:
table = { {[11] = 22}, {[255] = 1}, {[55] = 1000} }
我试过了,但是 returns 我 nil
print(table[#table][1])
如何获得 1000 值?
由于您使用数字键,因此实际上是 table[#table][55]
。