类型化对象的集合

发布于 2024-11-01 08:18:15 字数 328 浏览 1 评论 0原文

如何创建对象集合,在其中声明集合中使用的对象类型?

例如,在 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 技术交流群。

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

发布评论

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

评论(2

慢慢从新开始 2024-11-08 08:18:16

您可以创建一个 Vector 对象,它是一个元素均为同一类型的数组:

var stringVector:Vector.<String> = new Vector.<String>();

You can create a Vectorobject which is an array whose elements are all the same type:

var stringVector:Vector.<String> = new Vector.<String>();
孤城病女 2024-11-08 08:18:16

在 AS3 中,它称为 Vector

It's called Vector in AS3.

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