2

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

3 Answers 3

6

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).

Sign up to request clarification or add additional context in comments.

Comments

4

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

Comments

2

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

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.