ActionScript 3 克隆数组(AS3)

Posted

tags:

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

var a:Array = [1, 2, 3, 4, 5];
var b:Array;

//clone a:
b = a.map(function(e:*, ...r):*{ return e });


/*
"...r" is a "rest" and stands for the two more arguments, the function in map(f:Function, target:Object = null) needs.

Full function would be: function (element:*, index:int, array:Array):*{return e};
*/

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

ActionScript 3 AS3:在数组中搜索

ActionScript 3 AS3从数组中删除元素

ActionScript 3 as3中没有固定长度的数组

ActionScript 3 AS3在数组中添加一系列值

ActionScript 3 在AS3中对多维数组进行排序(数字)

ActionScript 3 在AS3中排序多维数组(按字母顺序)