Java中對(duì)數(shù)組降序排序的方法有多種,以下是兩種常用的方法:
import java.util.Arrays;
import java.util.Comparator;
public class Main {
public static void main(String[] args) {
int[] array = {5, 2, 8, 1, 9};
// 使用Comparator.reverseOrder()來實(shí)現(xiàn)降序排序
Integer[] newArray = Arrays.stream(array).boxed().toArray(Integer[]::new);
Arrays.sort(newArray, Comparator.reverseOrder());
System.out.println(Arrays.toString(newArray));
}
}
輸出:
[9, 8, 5, 2, 1]
import java.util.Arrays;
import java.util.Comparator;
public class Main {
public static void main(String[] args) {
int[] array = {5, 2, 8, 1, 9};
// 使用Comparator.reverseOrder()來實(shí)現(xiàn)降序排序
Integer[] newArray = Arrays.stream(array).boxed().toArray(Integer[]::new);
Arrays.parallelSort(newArray, Comparator.reverseOrder());
System.out.println(Arrays.toString(newArray));
}
}
輸出:
[9, 8, 5, 2, 1]
以上兩種方法都是使用了Comparator.reverseOrder()來指定降序排序規(guī)則,也可以自定義Comparator對(duì)象來實(shí)現(xiàn)其他降序排序規(guī)則。