Flex2中对数组的操作

Flex2中对数组的操作
1、查找数组中的元素可以使用ascb.util.ArrayUtilities中的 findMatchIndex()、findLastMatchIndex()、findMatchIndices()方法,具体参考API。

2、使用splice()方法可以移除数组中间的元素,使用pop()方法移除数组的最后一个元素,使用shift()方法移除数组的第一个元素。也可以使用splice()方法向数组中增加元素。

3、将数组转化为String,可以使用join()方法。
例:
var letters:Array = ["a", "b", "c"];
trace(letters.join());   // Displays: a,b,c

你可能感兴趣的:(Flex2中对数组的操作)