as3中何时使用ArrayCollection或Array?
我知道 ArrayCollection 是 Array 的包装器,但我想知道何时选择一个而不是另一个?过度使用 ArrayCollection 会影响性能吗?
I know that an ArrayCollection
is a wrapper over an Array
, but what I wanted to know is when to choose one over the other? Will the over usage of ArrayCollection
s result in performance?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ArrayCollection
的主要优点是collectionChange
事件,它允许利用与其进行数据绑定。其他一些是:
ICollectionView
的实现,允许创建游标并用它迭代集合。如果您不需要任何这些优点,请使用简单的
Array
。The main advantage of
ArrayCollection
iscollectionChange
event which allows to get advantage of data binding with it.Some others are:
ICollectionView
which allows to create a cursor and iterate collection with it.If you don't need any of these advantages use simple
Array
.