Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between Array and ArrayCollection(Flex)

What's the difference between array and arraycollection?

like image 892
ryudice Avatar asked Feb 22 '10 04:02

ryudice


1 Answers

First, the ArrayCollection is designed for the Flex framework. It acts like a Proxy for a given Array instance. This means it can listen for modifications made to the source Array and update it self when this happens. It also contains a subset of additional methods required specifically by the framework (have a look at the IList implementation for instance).

like image 114
Theo.T Avatar answered Oct 19 '22 03:10

Theo.T