2
votes

Is there any point to using Vector.<Object>, or should I just stick with Array?

3

3 Answers

6
votes

Performance. If you are doing operations that store/retrieve tons of values from a dataset, a vector will probably perform much faster than an array. (ie: millions of values, not say, 100 values in an array).

4
votes

.. and Vector is an easy way to create typed array lists, which is good for debugging and application stability

2
votes

If you need to target earlier flash versions (before Flash Player 10) stick with array