类型化对象的集合
如何创建对象集合,在其中声明集合中使用的对象类型?
例如,在 Java 中,您可以执行以下操作:
List
其中 Person
是对象类型。
在 AS3/Flex
ArrayCollection
中,它采用任何对象类型。
有没有办法在 AS3/Flex 中创建声明对象的列表/集合(或者由于弱类型语言而不可能)?
谢谢 菲尔
How do you create a collection of objects, where we declare the object typed used in the collection?
For example in Java you can do:
List<Person>
where Person
is the object type.
In AS3/Flex
ArrayCollection
which takes any object type.
Is there any way to create a list/collection of declared objects in AS3/Flex (or is it impossible due to weakly typed language)?
Thanks
Phil
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以创建一个
Vector
对象,它是一个元素均为同一类型的数组:You can create a
Vector
object which is an array whose elements are all the same type:在 AS3 中,它称为 Vector。
It's called Vector in AS3.