赞
踩
- /*
- * Copyright (c) 2020, 2023, webrx.cn All rights reserved.
- *
- */
- package com.bbb;
-
- import java.util.Arrays;
-
- public class A1 {
- public static void main(String[] args) {
- //Lambda 表达式
- Integer[] arr = {2, 3, 4, 6, 1, 9, 7, 13};
- // Arrays.sort(arr);//升序
- Arrays.sort(arr, (a, b) -> b - a);//降序
- System.out.println(Arrays.toString(arr));
- }
- }
![](https://csdnimg.cn/release/blogv2/dist/pc/img/newCodeMoreWhite.png)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。