Actionscript object number of properties

2019-06-17 06:02发布

How can I get the number of properties in a generic Actionscript Object? (Like Array length)

2条回答
狗以群分
2楼-- · 2019-06-17 06:41

You will have to loop over all element to count them:

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
查看更多
冷血范
3楼-- · 2019-06-17 06:51

Even shorter code here:

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

Just remember to update the very last argument in the object list if ever anything is added to it. That's the main downside to this approach, I think. And now, of course, the .cnt does not actually return the true list length, but rather it is the list length - 1.

查看更多
登录 后发表回答