ActionScript 2:如何在不迭代的情况下确定关联数组中键的数量?
是否有一个函数可以让我确定 ActionScript 2 关联数组中键的数量,而无需迭代该数组?
// ascertain the length/size of an associative array
var o:Object = new Object();
o["k1"] = "v1";
o["k2"] = "v2";
o["k3"] = "v3";
我希望有一个“o.size”或“o.length”会返回 3。
谢谢。
Is there a function that allows me to determine the number of keys in an ActionScript 2 associative array without iterating over that array?
// ascertain the length/size of an associative array
var o:Object = new Object();
o["k1"] = "v1";
o["k2"] = "v2";
o["k3"] = "v3";
I'd expect there to be an "o.size" or "o.length" that would return 3.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
抱歉,对象没有长度/大小,迭代是您唯一的选择。 AS3 通过 Dictionary 类对此提供了更好的选择。
Sorry, there's no length/size for an Object, iteration is your only choice. AS3 has better options for this with the Dictionary class.