📌  相关文章
📜  对int数组进行降序排序java代码示例

📅  最后修改于: 2022-03-11 14:52:30.708000             🧑  作者: Mango

代码示例2
// an array of ints
int[] arr = {1, 2, 3, 4, 5, 6};

// an array of reverse sorted ints
int[] arrDesc = Arrays.stream(arr).boxed()
    .sorted(Collections.reverseOrder())
    .mapToInt(Integer::intValue)
    .toArray();

System.out.println(Arrays.toString(arrDesc)); // outputs [6, 5, 4, 3, 2, 1]