当前位置 : 主页 > 网络编程 > lua >

如何在LUA中获取数组的大小?

来源:互联网 收集:自由互联 发布时间:2021-06-23
参见英文答案 Lua table.getn() returns 0?4个 这是一个代码: users = {} users["aaa"] = "bbbb";users["bbb"] = "bbbb";users["ccc"] = "bbbb";print("Users count ", table.getn(users)); 为什么table.getn(用户)总是返回0? BTW,
参见英文答案 > Lua table.getn() returns 0?                                    4个
这是一个代码:

users = {}  
users["aaa"] = "bbbb";
users["bbb"] = "bbbb";
users["ccc"] = "bbbb";
print("Users count ", table.getn(users));

为什么table.getn(用户)总是返回0? BTW,#users也返回0.那么,我做错了什么,还有另一种方法来获得数组中的元素数量?

table.maxn和#查找数字索引;他们不会看到你的字符串索引.

至于获取具有任意索引的数组中的元素数量,我可能会使用以下内容来遍历数组:

Count = 0
for Index, Value in pairs( Victim ) do
  Count = Count + 1
end

但我是个白痴.

网友评论