Stream流最佳实战

Stream流最佳实战

stream 进行排序、分组、多级分组、交集、并集、差集等

package com.al.admin.utils;import cn.hutool.core.util.ObjectUtil;
import lombok.Data;
import org.springframework.util.StringUtils;import java.text.SimpleDateFormat;
import java.util.*;
import java.util.function.Function;
import java.util.function.Predicate;
import java.util.stream.Collectors;/*** 测试*/
public class StreamUtil {public static void main(String[] args) {List<Student> students = new ArrayList<>();for(int i=0; i<5 ;i++) {Student student = new StreamUtil().new Student();student.setId(i+"");if(i > 2) {student.setAge(1);} else {student.setAge(2);}if(i > 3) {student.setName("zhangsan");} else if(i == 0) {student.setName(null);} else {student.setName("lisi");}student.setMoney(i);student.setCreatedDate(null);students.add(student);}
//多级进行分组 当然也可以进行其他的操作Map<String, Map<Integer, List<Student>>> collectq = students.stream().collect(Collectors.groupingBy(x -> StringUtils.isEmpty(x.getName()) ? "" : x.getName(), Collectors.groupingBy(Student::getAge)));System.out.println("collectq:" + collectq);SimpleDateFormat sm = new SimpleDateFormat("yyyy-MM-dd");Map<String, List<Student>> groupBy = students.stream().collect(Collectors.groupingBy(a -> sm.format(a.getCreatedDate())));System.out.println("==============");System.out.println(groupBy);/*** 条件过滤*/System.out.println("条件过滤==============");System.out.println("student.getAge() >1 ==============");List<Student> collect = students.stream().filter(student -> student.getAge() > -1).collect(Collectors.toList());System.out.println(collect);/*** 正序排列*/System.out.println("正序排列==============");collect = collect.stream().sorted(Comparator.comparing(Student::getAge)).collect(Collectors.toList());System.out.println(collect);/*** 倒序排列*/System.out.println("倒序排列==============");collect = collect.stream().sorted(Comparator.comparing(Student::getAge).reversed()).collect(Collectors.toList());System.out.println(collect);/*** string 类型的字段 倒序排列*/System.out.println("string 类型的字段进行倒序排序 ==============");collect = collect.stream().sorted(Comparator.comparing(Student::getId).reversed()).collect(Collectors.toList());System.out.println(collect);/*** string 类型的字段 进行截取 倒序排列*/System.out.println("string 类型的字段进行倒序排序 ==============");collect = collect.stream().sorted((o1,o2) -> {try {return Integer.parseInt(o2.getName().split("-")[1].substring(0,5)) - Integer.parseInt(o1.getName().split("-")[1].substring(0,5));} catch (Exception e){e.printStackTrace();}return 0;}).collect(Collectors.toList());System.out.println(collect);/*** 多字段倒序排序*/System.out.println("多字段倒序排序 ==============");collect = collect.stream().sorted(Comparator.comparing(Student::getAge).thenComparing(Student::getId).reversed()).collect(Collectors.toList());System.out.println(collect);/*** 多字段条件*/System.out.println("age大于20 money大于3000的数据==============");Predicate<Student> predicate1 = student -> student.getAge()>20;Predicate<Student> predicate2 = student -> student.getMoney()>3000;List<Student> collect1 = collect.stream().filter(predicate1.and(predicate2)).collect(Collectors.toList());System.out.println(collect1);/*** 两个集合差集 、 并集 、 交集* 集合 students 、 collect*/System.out.println("两个集合差集");Predicate<Student> predicate =user -> collect1.stream().noneMatch(user1 -> (user.getId()).equalsIgnoreCase(user1.getId()));collect = students.stream().filter(predicate).collect(Collectors.toList());System.out.println("students - collect1的差集  注意 集合a对集合b之间的差集 和 集合b对集合a之间的差集 不一样");System.out.println(collect);System.out.println("两个集合交集");Predicate<Student> predicate3 =user -> collect1.stream().anyMatch(user1 -> (user.getId()).equalsIgnoreCase(user1.getId()));collect = students.stream().filter(predicate3).collect(Collectors.toList());System.out.println("students - collect1的交集");System.out.println(collect);System.out.println("两个集合并集");List<Student> collect2 = students.parallelStream().collect(Collectors.toList());List<Student> collect3 = collect1.parallelStream().collect(Collectors.toList());collect2.addAll(collect3);List<Student> collect4 = collect2.stream().distinct().collect(Collectors.toList());System.out.println(collect4);System.out.println("list 转 map");System.out.println("key是list对象中id,value是list对象中的年龄");Map<String, Integer> map = students.stream().collect(Collectors.toMap(Student::getId, Student::getAge));System.out.println(map);System.out.println("key是list对象中id,value是list对象");Map<String, Student> map1 = students.stream().collect(Collectors.toMap(Student::getId, student -> student));System.out.println(map1);System.out.println("key是list对象中id,value是list对象 另一种写法");Map<String, Student> map2 = students.stream().collect(Collectors.toMap(Student::getId, Function.identity()));System.out.println(map2);System.out.println("key是对象中的某个属性值,value是对象本身,当key冲突时选择第二个key值覆盖第一个key值。");Map<String, Student> map3 = students.stream().collect(Collectors.toMap(Student::getId, Function.identity(), (oldValue, newValue) -> newValue));System.out.println(map3);System.out.println("map 转 list");List<String> collect5 = map3.keySet().stream().collect(Collectors.toList());List<Student> collect6 = map3.values().stream().collect(Collectors.toList());System.out.println("map的key转list::"+collect5);System.out.println("map的value转list::"+collect6);List<Student> lst = map.entrySet().stream().map(c -> {Student student = new StreamUtil().new Student();student.setId(c.getKey());student.setAge(c.getValue());return student;}).collect(Collectors.toList());System.out.println("通过map的key,value转对象集合");System.out.println(lst);}@Datapublic class Student {private String id;private int age;private double money;private String name;private Date createdDate;public Student(){}}}

2、
java中用stream进行去重,排序,分组


3、stream排序

    public void test6() {List<User> list = new ArrayList<>();//定义三个用户对象User user1 = new User();user1.setUserName("admin");user1.setAge(16);user1.setSex("男");User user2 = new User();user2.setUserName("root");user2.setAge(20);user2.setSex("女");User user3 = new User();user3.setUserName("admin");user3.setAge(18);user3.setSex("男");User user4 = new User();user4.setUserName("admin11");user4.setAge(22);user4.setSex("女");System.out.println(list);// 年龄排序(逆序)List<User> collect = list.stream().sorted(Comparator.comparing(User::getAge).reversed()).collect(Collectors.toList());System.out.println(collect);// 写法2List<User> collect1 = list.stream().sorted(Comparator.comparing(User::getAge, Comparator.reverseOrder())).collect(Collectors.toList());System.out.println(collect1);// lambda表达式List<User> collect2 = list.stream().sorted((a, b) -> b.getAge() - a.getAge()).collect(Collectors.toList());System.out.println(collect2);// 并行排序 - 排序数量大时使用并行排序,提高排序速度list.parallelStream().sorted().collect(Collectors.toList());// 多字段排序1-都进行倒序排序(先根据年龄倒序,再根据用户名倒序)List<User> collect3 = list.stream().sorted(Comparator.comparing(User::getAge).thenComparing(User::getUserName).reversed()).collect(Collectors.toList());System.out.println(collect3);// 多字段排序2-先根据年龄逆序,再根据用户名顺序--reversed()是让他前面所有字段进行倒序list.stream().sorted(Comparator.comparing(User::getAge).reversed().thenComparing(User::getUserName)).collect(Collectors.toList());// 多字段排序3list.stream().sorted(Comparator.comparing(User::getAge, Comparator.reverseOrder()).thenComparing(User::getUserName, Comparator.reverseOrder())).collect(Collectors.toList());}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/99524.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

1、【gradio】快速开始,构建自己的机器学习的应用

1、【gradio】快速开始,构建自己的机器学习的应用 Gradio能做什么Hello, WorldInterface类组件属性多个输入和输出组件一个图片的ExampleChatbot(聊天机器人)Blocks:更多的灵活性和控制Hello, Blocks更复杂一点的实现先决条件:Gradio 需要 Python 3.8 或更高版本。 Gradio…

仅用61行代码,你也能从零训练大模型

本文并非基于微调训练模型&#xff0c;而是从头开始训练出一个全新的大语言模型的硬核教程。看完本篇&#xff0c;你将了解训练出一个大模型的环境准备、数据准备&#xff0c;生成分词&#xff0c;模型训练、测试模型等环节分别需要做什么。AI 小白友好~文中代码可以直接实操运…

取出SQLite数据(基本游标)

前面一节中已经为Starbuzz创建了一个SQLite帮助器。 目前还是从Java Drink类获取数据&#xff0c;这时候要修改这个应用从SQLite数据库获取数据。 本文所有代码均存放于 https://github.com/MADMAX110/Starbuzz 一、修改DrinkActivity来使用Starbuzz数据库 基本步骤&#xff…

Puppeteer基础知识(一)

Puppeteer基础知识&#xff08;一&#xff09; Puppeteer基础知识&#xff08;一&#xff09;一、简介二、其他一些自动化测试工具三、安装与使用四、Puppeteer常用命令五、常见问题解决&#xff1a; 一、简介 Puppeteer 是一个强大而灵活的工具&#xff0c;可以用于网页爬虫、…

Transformer预测 | Pytorch实现基于Transformer 的锂电池寿命预测(CALCE数据集)

文章目录 效果一览文章概述模型描述程序设计参考资料效果一览 文章概述 Pytorch实现基于Transformer 的锂电池寿命预测,环境为pytorch 1.8.0,pandas 0.24.2 随着充放电次数的增加,锂电池的性能逐渐下降。电池的性能可以用容量来表示,故寿命预测 (RUL) 可以定义如下: SOH(t…

QT位置相关函数

Qt&#xff08;Qt Framework&#xff09;是一个流行的C应用程序开发框架&#xff0c;提供了丰富的位置相关函数和类&#xff0c;用于处理窗口、窗口小部件和图形的位置和几何操作。以下是一些常用的Qt位置相关函数和类&#xff1a; QPoint&#xff1a;QPoint类表示一个二维点的…

RTC 时间、闹钟

实时时钟RTC是一个独立的定时器。RTC模块拥有一个连续计数的计数器&#xff0c;在软件配置下&#xff0c;可以提供时钟日历的功能。修改计数器的值可以重新设置当前时间和日期 RTC还包含用于管理低功耗模式的自动唤醒单元。 在掉电情况下 RTC仍可以独立运行 只要芯片的备用电源…

vue3中使用插件vite-plugin-svg-icons

在vue3 vite 项目中使用svg图标 插件&#xff1a;vite-plugin-svg-icons 预加载 在项目运行时就生成所有图标,只需操作一次 dom高性能 内置缓存,仅当文件被修改时才会重新生成 安装 yarn add vite-plugin-svg-icons -D # or npm i vite-plugin-svg-icons -D # or pnpm inst…

总结html5中常见的选择器

HTML5并没有引入新的选择器类型&#xff0c;它仍然使用CSS选择器来选择和操作HTML元素。HTML5中仍然可以使用CSS2和CSS3中定义的各种选择器。以下是HTML5中常见的选择器类型&#xff1a; 1. 元素选择器&#xff08;Element Selector&#xff09;&#xff1a;使用元素名称作为选…

实现协议互通:探索钡铼BL124EC的EtherCAT转Ethernet/IP功能

钡铼BL124EC是一种用于工业网络通信的网关设备&#xff0c;专门用于将EtherCAT协议转换成Ethernet/IP协议。它充当一个桥梁&#xff0c;连接了使用不同协议的设备&#xff0c;使它们能够无缝地进行通信和互操作。 具体来说&#xff0c;BL124EC通过支持EtherCAT&#xff08;以太…

2023,全网最真实的自动化测试学习路线,看不懂来打我!

随着测试行业的发展&#xff0c;“会代码”越来越成为测试工程师的一个标签。打开各大招聘网站&#xff0c;测试工程师月薪一万以上基本都有一个必备技能&#xff0c;那就是自动化测试。那么自动化测试到底难不难呢&#xff1f;下面我将会将我的经历讲给大家听&#xff0c;希望…

安卓App使用HttpURLConnection发送请求与上传文件

安卓原生App开发时常用的http开发工具 系统内置http请求工具为 HttpURLConnectionhttpClient 是 apache 的开源工具okHttp 使用更简单&#xff0c;语法相对HttpURLConnection也简洁了许多&#xff0c;需要在graddle添加依赖。 本文主要讲解如何使用HttpURConnection向服务器发…

【java基础学习】之DOS命令

#java基础学习 1.常用的DOS命令&#xff1a; dir:列出当前目录下的文件以及文件夹 md: 创建目录 rd:删除目录cd:进入指定目录 cd.. :退回到上级目录 cd\ : 退回到根目录 del:删除文件 exit:退出dos命令行 1.dir:列出当前目录下的文件以及文件夹 2.md: 创建目录 …

[NewStarCTF 2023 公开赛道] week1 Crypto

brainfuck 题目描述&#xff1a; [>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<-]>>>>>>>.>----.<-----.>-----.>-----.<<<-.>>..…

黑豹程序员-架构师学习路线图-百科:AJAX

文章目录 1、什么是AJAX2、发展历史3、工作原理4、一句话概括 1、什么是AJAX Ajax即Asynchronous&#xff08;呃森可乐思&#xff09; Javascript And XML&#xff08;异步JavaScript和XML&#xff09; 在 2005年被Jesse James Garrett&#xff08;杰西詹姆斯加勒特&#xff09…

WuThreat身份安全云-TVD每日漏洞情报-2023-10-08

漏洞名称:Glibc ld.so本地权限提升漏洞 漏洞级别:高危 漏洞编号:CVE-2023-4911 相关涉及:系统-ubuntu_22.04-glibc-*-Up to-(excluding)-2.35-0ubuntu3.4- 漏洞状态:POC 参考链接:https://tvd.wuthreat.com/#/listDetail?TVD_IDTVD-2023-24714 漏洞名称:Apple macOS Ventura …

Android Studio新建项目缓慢解决方案

关于Android Studio2022新建项目时下载依赖慢的解决方案 起因解决方案gradle下载慢解决方案kotlin依赖下载慢解决方案 结尾 起因 新建Android Studio项目时&#xff0c;常会因为网络问题导致部分依赖下载缓慢&#xff0c;其中gradle和kotlin最拖慢进度。 解决方案 gradle下载…

1.3.OpenCV技能树--第一单元--图像的基础操作(进阶篇)

目录 1.文章内容来源 2.图像的进阶操作 2.1.边界填充 2.2.数值计算 2.3.图像融合 2.4.图像保存 2.5.视频读取 3.课后习题代码复现 3.1.问题一图像像素颜色 3.2.问题二图片黑客帝国化 3.3.问题三梅西的足球轨迹 4.易错点总结与反思 1.文章内容来源 1.题目来源:https://edu.c…

MySQL之主从复制

概述&#xff1a; 将主库的数据 变更同步到从库&#xff0c;从而保证主库和从库数据一致。 它的作用是 数据备份&#xff0c;失败迁移&#xff0c;读写分离&#xff0c;降低单库读写压力 原理&#xff1a; 主服务器上面的任何修改都会保存在二进制日志&#xff08; Bin-log日志…

【Zookeeper专题】Zookeeper经典应用场景实战(二)

目录 前置知识课程内容一、Zookeeper分布式锁实战1.1 什么是分布式锁1.2 基于数据库设计思路1.3 基于Zookeeper设计思路一1.4 基于Zookeeper设计思路二1.5 Curator 可重入分布式锁工作流程1.6 总结 二、基于Zookeeper实现服务的注册与发现2.1 设计思路2.2 Zookeeper实现注册中心…