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