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

Posted

tags:

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

public function orderNumerically(a, b):Number{
	// Change a[0] & b[0] by a[i] & b[i]
	// (where i is the array index you want to use to sort the multidimensional array)
	var num1 = Number(a[0]);
	var num2 = Number(b[0]);
	if(num1<num2){
		return -1;
	}else if(num1>num2) {
		return 1;
	}else{
		return 0;
	}
}
the_array.sort(orderNumerically);

以上是关于ActionScript 3 在AS3中对多维数组进行排序(数字)的主要内容,如果未能解决你的问题,请参考以下文章

在AS3中对多维数组排序(数字)

ActionScript 3 AS3:在数组中搜索

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

ActionScript 3 克隆数组(AS3)

ActionScript 3 AS3随机化数组

ActionScript 3 AS3在数组中搜索值并返回其位置索引