java新特性stream流的相关操作(二)

参考资料:

java新特性stream流的相关操作(一)


groupingBy的综合使用:

package com.example.worddemo.test.jacob;import com.alibaba.fastjson2.JSON;import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
import java.util.concurrent.ConcurrentMap;
import java.util.function.Function;
import java.util.stream.Collectors;
import java.util.stream.Stream;/*** @author 军哥* @version 1.0* @description: TODO* @date 2022/8/1 19:20*/public class Student {//班级private String classNumber;//姓名private String name;//年龄private int age;//地址private String address;//数学成绩private int mathScores;//语文成绩private int chainessScores;public Student(String classNumber, String name, int age, String address, int mathScores, int chainessScores) {this.classNumber = classNumber;this.name = name;this.age = age;this.address = address;this.mathScores = mathScores;this.chainessScores = chainessScores;}public String getClassNumber() {return classNumber;}public void setClassNumber(String classNumber) {this.classNumber = classNumber;}public String getName() {return name;}public void setName(String name) {this.name = name;}public int getAge() {return age;}public void setAge(int age) {this.age = age;}public String getAddress() {return address;}public void setAddress(String address) {this.address = address;}public int getMathScores() {return mathScores;}public void setMathScores(int mathScores) {this.mathScores = mathScores;}public int getChainessScores() {return chainessScores;}public void setChainessScores(int chainessScores) {this.chainessScores = chainessScores;}//https://blog.csdn.net/sugelachao/article/details/117736155public static void main(String[] args) {//--1 添加数据Student student1 = new Student("701","张三",16,"北京",78,90);Student student2 = new Student("700","李四",17,"北京",78,90);Student student3 = new Student("703","王五",16,"上海",78,90);Student student4 = new Student("701","赵六",16,"上海",78,90);Student student5 = new Student("700","钱七",18,"",78,90);Student student6 = new Student("701","老八",17,"",78,90);//高二年级的成绩单List<Student> students = Stream.of(student1,student2,student3,student4,student5,student6).collect(Collectors.toList());//--2 按照班级分组Map<String, List<Student>> collect1 = students.stream().collect(Collectors.groupingBy(Student::getClassNumber));System.out.println(JSON.toJSONString(collect1));//--2-1 按照班级 和  地区分组Function<Student, List<Object>> compositeKey = student ->Arrays.asList(student.getClassNumber(), student.getAddress());Map<List<Object>, List<String>> collect2_1 = students.stream().collect(Collectors.groupingBy(compositeKey, Collectors.mapping(Student::getName, Collectors.toList())));System.out.println(JSON.toJSONString(collect2_1));//--2-2 按照班级 和  地区分组Map<List<Object>, List<Student>> collect3_1 = students.stream().collect(Collectors.groupingBy(compositeKey));System.out.println(JSON.toJSONString(collect3_1));//--3 按照班级分组得到每个班级的同学姓名Map<String, List<String>> collect2 = students.stream().collect(Collectors.groupingBy(Student::getClassNumber, Collectors.mapping(Student::getName, Collectors.toList())));System.out.println(JSON.toJSONString(collect2));//--4 统计每个班级人数Map<String, Long> collect3 = students.stream().collect(Collectors.groupingBy(Student::getClassNumber, Collectors.counting()));System.out.println(JSON.toJSONString(collect3));//--5 求每个班级的数学平均成绩Map<String, Double> collect4 = students.stream().collect(Collectors.groupingBy(Student::getClassNumber, Collectors.averagingDouble(Student::getMathScores)));System.out.println(JSON.toJSONString(collect4));//--6 按班级分组求每个同学的总成绩Map<String, Map<String, Integer>> collect5 = students.stream().collect(Collectors.groupingBy(Student::getClassNumber,Collectors.toMap(Student::getName, student -> student.getMathScores() + student.getChainessScores())));System.out.println(JSON.toJSONString(collect5));//--7 嵌套分组,先按班级分组,再按年龄分组Map<String, Map<Integer, List<Student>>> collect6 = students.stream().collect(Collectors.groupingBy(Student::getClassNumber, Collectors.groupingBy(Student::getAge)));System.out.println(JSON.toJSONString(collect6));//--8 分组后得到一个线程安全的ConcurrentMapConcurrentMap<String, List<Student>> collect7 = students.stream().collect(Collectors.groupingByConcurrent(Student::getClassNumber));System.out.println(JSON.toJSONString(collect7));//--9 根据年龄分组并小到大排序,TreeMap默认为按照key升序TreeMap<Integer, List<String>> collect8 = students.stream().collect(Collectors.groupingBy(Student::getAge, TreeMap::new, Collectors.mapping(Student::getName, Collectors.toList())));System.out.println(JSON.toJSONString(collect8));//{16:["张三","王五","赵六"],17:["李四","老八"],18:["钱七"]}//--10 根据年龄分组并大到小排序,因为TreeMap默认为按照key升序,所以排完顺序再反转一下就OK了TreeMap<Integer, List<String>> collect9 = students.stream().collect(Collectors.groupingBy(Student::getAge, TreeMap::new, Collectors.mapping(Student::getName, Collectors.toList())));Map<Integer, List<String>> collect10 = collect9.descendingMap();System.out.println(JSON.toJSONString(collect10));//{18:["钱七"],17:["李四","老八"],16:["张三","王五","赵六"]}}
}

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

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

相关文章

安全运营方案的基本框架和关键要素

一、前言 阐述安全运营方案的目的和重要性。强调安全运营与组织整体战略目标的关联。 二、安全运营原则 确立安全运营的基本原则&#xff0c;如保密性、完整性和可用性。明确安全责任划分&#xff0c;确保各部门和人员履行安全职责。 三、安全风险评估与管理 进行全面的安…

计算两帧雷达数据之间的变换矩阵

文章目录 package.xmlCMakeLists.txtpoint_cloud_registration.cc运行结果 package.xml <?xml version"1.0"?> <package format"2"><name>point_cloud_registration</name><version>0.0.0</version><descriptio…

九州金榜|孩子厌学的因素及解决办法

孩子在学习的过程中&#xff0c;遇到厌学这种情况非常容易见到&#xff0c;这也是孩子在成长的过程中经常遇到的烦恼。面对孩子的厌学&#xff0c;作为家长这时候不要慌乱&#xff0c;要做到分析孩子产生厌学的原因&#xff0c;在去寻找解决孩子厌学的办法。下面九州金榜家庭教…

【漏洞复现】大华ICC智能物联综合管理平台任意文件读取漏洞

Nx01 产品简介 大华智能物联综合管理平台 iConnection Center&#xff08;以下简称&#xff1a;ICC平台&#xff09;&#xff0c;是一套基于智能物联的综合业务管理平台软件&#xff0c;具备强大的后台服务能力&#xff0c;配套了B/S管理员端、C/S客户端、移动APP终端、小程序等…

mmlspark.lightgbm.LightGBMClassifier参数说明

mmlspark.lightgbm.LightGBMClassifier 是一个用于二元分类和多类分类的机器学习模型&#xff0c;它是基于 Microsoft ML for Apache Spark (MMLSpark) 库的。这个类是为了在Spark环境中使用LightGBM实现&#xff0c;提供了大量的参数用于调整模型。下面是一些主要参数的详细中…

数据分析之Excel的使用

数据分析之Excel的使用 SUM()求和SUMIF()单条件求和SUMIFS()多条件求和日期函数YEAR()提取年份MONTH()提取月份DAY()提取日 SUBTOTAL()聚合函数IF()函数IF嵌套 VLOOKUP()搜索取值MATCH()返回行值或列值INDEX()定位取值 SUM()求和 SUMIF()单条件求和 SUMIFS()多条件求和 日期…

python的类修饰器

类修饰器有 staticmethodclassmethod staticmethod 函数传参不会传实例 classmethod 函数传参的第一个参数是类&#xff0c;不是实例

nacos闪退无法正常启动bug

配置java的时候要配置JAVA_HOME 不能直接在path中用jdk的bin路径&#xff0c;不然会报错&#xff0c;虽然你能够正常使用java&#xff0c;但还是会报错 这是报错信息 //bin/java -Djava.ext.dirs//jre/lib/ext://lib/ext -server -Xms2g -Xmx2g -Xmn1g -XX:MetaspaceSize128…

vue中性能优化

目录 1. 编码优化 2. 源码优化 3. 打包优化 4. 利用 Vue Devtools 总结 Vue.js 作为一个强大的前端框架&#xff0c;提供了丰富的功能和工具来帮助开发者构建高效的 Web 应用。然而&#xff0c;在开发过程中&#xff0c;性能优化仍然是一个需要关注的问题。以下是对 Vue.j…

华为OD机考-C卷

文章目录 攀登者问题停车场最短路径 攀登者问题 24/03/09 20:50~23:10 攀登者喜欢寻找各种地图&#xff0c;并且尝试攀登到最高的山峰。地图表示为一维数组&#xff0c;数组的索引代表水平位置&#xff0c;数组的元素代表相对海拔高度。其中数组元素0代表地面。一个山脉可能有多…

GTH手册学习注解

CPLL的动态配置 终于看到有这个复位功能了 QPLL SWITCHing需要复位 器件级RESET没发现有管脚引出来 两种复位方式&#xff0c;对应全复位和器件级复位 对应的复位功能管脚 改那个2分频的寄存器说明段&#xff0c;复位是自动发生的&#xff1f;说明可能起效了&#xff0c;但是分…

Linux 之七:Linux 防火墙 和进程管理

防火墙 查看防火墙 查看 Centos7 的防火墙的状态 sudo systemctl status firewalld。 查看后&#xff0c;看到active(running)就意味着防火墙打开了。 关闭防火墙&#xff0c;命令为&#xff1a; sudo systemctl stop firewalld。 关闭后查看是否关闭成功&#xff0c;如果…

python 判断操作系统是windows 还是linux

下载脚本之后需要先判断是windows还是linux&#xff0c;如果是windows的话&#xff0c;下载完成之后需要等待用户操作才能进行安装&#xff0c;安装之后需要先在windows上安装openssh 在Python中&#xff0c;你可以使用platform模块来判断当前操作系统是Windows还是Linux。以下…

leetcode必刷题 96.不同的二叉搜索树

一、问题描述&#xff1a; 给你一个整数 n &#xff0c;求恰由 n 个节点组成且节点值从 1 到 n 互不相同的 二叉搜索树 有多少种&#xff1f;返回满足题意的二叉搜索树的种数。 二、解题思路&#xff1a; 二叉树是由根节点&#xff0c;左右子树组成的&#xff0c;二叉搜索树要…

提高驾驶安全性 | 基于ACM32 MCU的胎压监测仪方案

概述 胎压监测系统 作为车辆的基础部件&#xff0c;轮胎是影响行车安全不可忽视的因素之一。据统计&#xff0c;中国每年由胎压问题引起轮胎爆炸的交通事故约占 30%&#xff0c;其中 50%的高速交通事故是由车辆胎压异常引起。因此&#xff0c;准确实时地监测车辆在行驶过程中…

Java虚拟机(JVM)元数据区存放的内容

类元数据 元数据区&#xff08;在HotSpot虚拟机中也称为Metaspace&#xff09;主要存放了类的元数据信息&#xff0c;如类的名称、访问修饰符、常量池、字段描述、方法描述等。 运行时常量池 运行时常量池是每个类或接口的常量池表的运行时表示形式&#xff0c;包含了若干种不…

Curriculum Manager for Source Selection in Multi-Source Domain Adaptation

GRL: gradient reversal layer&#xff0c;CM: Curriculum Manager 辅助信息 作者未提供代码

PokéLLMon 源码解析(四)

.\PokeLLMon\poke_env\exceptions.py """ This module contains exceptions. """# 定义一个自定义异常类 ShowdownException&#xff0c;继承自内置异常类 Exception class ShowdownException(Exception):"""This exception is …

openssl3.2 - exp - generate prime

文章目录 openssl3.2 - exp - generate prime概述笔记END openssl3.2 - exp - generate prime 概述 openssl3.2.命令行可以生成质数 openssl prime -generate -bits 256 -hex -safe 单步调试openssl.exe工程, 整理了一个函数, 用openssl API来产生质数. openssl命令行是将结果…

2024/3/10打卡借教室——二分+差分

题目 在大学期间&#xff0c;经常需要租借教室。 大到院系举办活动&#xff0c;小到学习小组自习讨论&#xff0c;都需要向学校申请借教室。 教室的大小功能不同&#xff0c;借教室人的身份不同&#xff0c;借教室的手续也不一样。  面对海量租借教室的信息&#xff0c;我们自…