这篇文章主要介绍了Stream流排序数组和List 详解,文章围绕主题展开详细的内容介绍,具有一定的参考价值,感兴趣的小伙伴可以参考一下
一、对象单字段排序
List<People> peopleList = Lists.newArrayList();
peopleList.add(new People(1, "小王", 5));
peopleList.add(new People(1, "小李", 4));
peopleList.add(new People(2, "小张", 3));
peopleList.add(new People(2, "小皇", 2));
peopleList.add(new People(2, "小刘", 1));
//单字段排序
peopleList = peopleList.stream().sorted(Comparator.comparing(People::getJgId)).collect(Collectors.toList());
log.info(peopleList.toString());
//这里是根据userId 进行排序——降序排序 reversed()
peopleList = peopleList.stream().sorted(Comparator.comparing(People::getJgId).reversed()).collect(Collectors.toList());
log.info(peopleList.toString());
二、多字段排序
List<People> peopleList = Lists.newArrayList();
peopleList.add(new People(1, "小王", 5));
peopleList.add(new People(1, "小李", 4));
peopleList.add(new People(2, "小张", 3));
peopleList.add(new People(2, "小皇", 2));
peopleList.add(new People(2, "小刘", 1));
//这里是根据Id及jgId进行联合升序排序
peopleList = peopleList.stream().sorted(Comparator.comparing(People::getId).thenComparing(People::getJgId)).collect(Collectors.toList());
log.info(peopleList.toString());
//下面两个结果都是以Id降序jgId升序排序的结果,但是查询方式不同
//先以id升序,升序结果进行id降序,再进行jgId升序
peopleList = peopleList.stream().sorted(Comparator.comparing(People::getId).reversed().thenComparing(People::getJgId)).collect(Collectors.toList());
log.info(peopleList.toString());
//先以id降序,再进行jgId升序 **推荐使用该种方式**
peopleList = peopleList.stream().sorted(Comparator.comparing(People::getId,Comparator.reverseOrder()).thenComparing(People::getJgId)).collect(Collectors.toList());
log.info(peopleList.toString());
//先以id升序,再进行jgId降序
peopleList = peopleList.stream().sorted(Comparator.comparing(People::getId).thenComparing(People::getJgId,Comparator.reverseOrder())).collect(Collectors.toList());
log.info(peopleList.toString());
三、数组排序以及List<Integer>排序
先把数组转换成List对象再进行排序
到此这篇关于Stream流排序数组和List 详解的文章就介绍到这了,更多相关Stream List 内容请搜索编程学习网以前的文章希望大家以后多多支持编程学习网!
沃梦达教程
本文标题为:Stream流排序数组和List 详解


基础教程推荐
猜你喜欢
- SpringBoot 2.5.5整合轻量级的分布式日志标记追踪神器TLog的详细过程 2023-06-17
- SpringBoot嵌入式Web容器原理与使用介绍 2023-06-17
- jsp hibernate的分页代码第3/3页 2024-01-11
- 详解http请求中的Content-Type 2023-07-31
- springboot中request和response的加解密实现代码 2022-12-08
- Spring MVC数据绑定方式 2023-06-30
- java 解决Eclipse挂掉问题的方法 2024-01-10
- JSP servlet实现文件上传下载和删除 2023-07-30
- 关于@MapperScan包扫描的坑及解决 2023-04-16
- 用javascript制作qq注册动态页面 2023-12-16