ActionScript 2:如何在不迭代的情况下确定关联数组中键的数量?

发布于 2024-08-14 06:15:28 字数 263 浏览 4 评论 0原文

是否有一个函数可以让我确定 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

内心荒芜 2024-08-21 06:15:28
var o:Object = new Object();
o["k1"] = "v1";
o["k2"] = "v2";
o["k3"] = "v3";

var len:Number = 0;
for( i in o ) len++;
trace( len );

抱歉,对象没有长度/大小,迭代是您唯一的选择。 AS3 通过 Dictionary 类对此提供了更好的选择。

var o:Object = new Object();
o["k1"] = "v1";
o["k2"] = "v2";
o["k3"] = "v3";

var len:Number = 0;
for( i in o ) len++;
trace( len );

Sorry, there's no length/size for an Object, iteration is your only choice. AS3 has better options for this with the Dictionary class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文