lua中获取table长度常用的方法有两种 :
1:table={} print(#table)
2:arr={} table.getn(arr)
两者最重要的区别还是存在的,前者 “#” 在下标索引不连续的时候会得到 0.(博主的测试而已,如有异议,请告知下,一起学习)