gpt4 book ai didi

flash - Actionscript 对象的属性数

转载 作者:行者123 更新时间:2023-12-04 09:37:44 25 4
gpt4 key购买 nike

如何获取通用 Actionscript 对象中的属性数量? (如数组长度)

最佳答案

您必须遍历所有元素以计算它们:

function objectLength(myObject:Object):int {
var cnt:int=0;

for (var s:String in myObject) cnt++;

return cnt;
}

var o:Object={foo:"hello", bar:"world"};
trace(objectLength(o)); // output 2

关于flash - Actionscript 对象的属性数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4697879/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com