我正在尝试使用table.getn获取Lua中数组的长度.我收到此错误: The function table.getn is deprecated! (在Transformice Lua中) 使用 #: a = {10, 11, 12, 13} print(#a)4 但请注意,长度运算符#不适用于非数组的
The function table.getn is deprecated!
(在Transformice Lua中)
使用 #:> a = {10, 11, 12, 13} > print(#a) 4
但请注意,长度运算符#不适用于非数组的表,它只计算数组部分中的元素数(索引为1,2,3等).
这不起作用:
> a = {1, 2, [5] = 7, key = '1234321', 15} > print(#a) 3
这里只有(1,2和15)在数组部分.