克隆阵列(AS3)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了克隆阵列(AS3)相关的知识,希望对你有一定的参考价值。

  1. var a:Array = [1, 2, 3, 4, 5];
  2. var b:Array;
  3.  
  4. //clone a:
  5. b = a.map(function(e:*, ...r):*{ return e });
  6.  
  7.  
  8. /*
  9. "...r" is a "rest" and stands for the two more arguments, the function in map(f:Function, target:Object = null) needs.
  10.  
  11. Full function would be: function (element:*, index:int, array:Array):*{return e};
  12. */

以上是关于克隆阵列(AS3)的主要内容,如果未能解决你的问题,请参考以下文章

闪存 AS3 的动态阵列

ActionScript 3 AS3在阵列中?

ActionScript 3 AS3阵列差异

AS3 - 相对于角度移动阵列对象

AS3阵列差异

ActionScript 3 AS3:优化阵列(AKA矢量)