如何创建对象的数组集合?
我是 Flex 新手,我有一个如下所示的类:
public class Items extends Object
{
public function Items(){
super();
}
public var name:String;
public var count:int;
}
如何创建 Items 类型的 ArrayCollection?
谢谢。
I new to flex, I have a class shown below:
public class Items extends Object
{
public function Items(){
super();
}
public var name:String;
public var count:int;
}
How do I create an ArrayCollection of type Items?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
另一种方式:
Another way:
您还可以在 mxml 中创建它们(如果您使用的是 flex 4,则在 mxml 中)
然后通过其 id 引用该数组。
You can also create these in mxml (inside if you're using flex 4)
Then reference the array by its id.
在代码中的某个位置:
ArrayCollections 的类型与 Vector 的类型不同可能毫无价值,因此您无法强制集合中的所有项目都为 Items 类型。 [除非您以某种方式扩展 ArrayCollection 并重写 addItem / addItemAt 方法以在类型错误时抛出错误。
Somewhere in your code:
It may be worth nothing that ArrayCollections are not typed in the same way that a Vector may be, so there is nothing you can do to force all items in your collection to be of the Items type. [Unless you extend ArrayCollection somehow and override the addItem / addItemAt methods to throw errors if the type is wrong.