在AS3中对多维数组排序(数字)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在AS3中对多维数组排序(数字)相关的知识,希望对你有一定的参考价值。
I have fixed and improved some code I found on the Internet
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);
以上是关于在AS3中对多维数组排序(数字)的主要内容,如果未能解决你的问题,请参考以下文章