AS3: Optimized Arrays (AKA Vector)


/ Published in: ActionScript 3
Save to your folder(s)

This feature which is available in Flash CS4 is a much more efficient Array. Unlike Array, you cannot place data in any given index. Each index must have a value. For example, you can't have data in Array[0] and Array[5] but nothing in between. The second parameter is a Boolean and it decides whether the Vector array can have more indexes added later.


Copy this code and paste it in your HTML
  1. //In this case, the Vector will only hold a DataType of <uint>
  2. var numbers:Vector.<uint> = new Vector.<uint>(3, false);
  3. numbers[0] = 1;
  4. numbers[2] = 2;
  5. numbers[3] = 3;
  6.  
  7. trace( numbers )

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.