拉姆达表达式实现对集合中的对象中的某个属性求和以及查询某个特定属性以及对特定属性求和以及针对集合根据某个属性以key-value形式分组

本文主要是介绍拉姆达表达式实现对集合中的对象中的某个属性求和以及查询某个特定属性以及对特定属性求和以及针对集合根据某个属性以key-value形式分组,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

废话不多说 直接上代码 求和

List<UserEntity> userEntities = new ArrayList<UserEntity>();userEntities.add(new UserEntity(20L, "张三",1,1L));userEntities.add(new UserEntity(20L, "张三",1,1L));userEntities.add(new UserEntity(22L, "李四",2,2L));userEntities.add(new UserEntity(10L, "王五",3,3L));//        Map<String, List<UserEntity>> user = userEntities.stream().collect
//                (Collectors.groupingBy(UserEntity::getAge));Long collect1 = userEntities.stream().collect(Collectors.summingLong(UserEntity::getAge));Long collect2 = userEntities.stream().collect(Collectors.summingLong(UserEntity::getSex));Long collect3 = userEntities.stream().collect(Collectors.summingLong(UserEntity::getUserId));System.out.println(collect1+"000");System.out.println(collect2+"+++");System.out.println(collect3+"---");

运行结果

7000
7+++
72---

代码 查询特定属性

 List<UserEntity> userEntities = new ArrayList<UserEntity>();userEntities.add(new UserEntity(20L, "张三",1,1L));userEntities.add(new UserEntity(20L, "张三",1,1L));userEntities.add(new UserEntity(22L, "李四",2,2L));userEntities.add(new UserEntity(10L, "王五",3,3L));//        Map<String, List<UserEntity>> user = userEntities.stream().collect
//                (Collectors.groupingBy(UserEntity::getAge));List<Long> collect1 = userEntities.stream().map(UserEntity::getAge).collect(Collectors.toList());List<Long> collect2 = userEntities.stream().map(UserEntity::getUserId).collect(Collectors.toList());List<Integer> collect3 = userEntities.stream().map(UserEntity::getSex).collect(Collectors.toList());System.out.println(collect1+" ===");System.out.println(collect2+" ---");System.out.println(collect3+" 000");double sum = userEntities.stream().mapToDouble(UserEntity::getUserId).sum();System.out.println(sum+" sum");

运行结果

[1, 1, 2, 3] ===
[20, 20, 22, 10] ---
[1, 1, 2, 3] 000
72.0 sum

代码 分组

List<UserEntity> userEntities = new ArrayList<UserEntity>();userEntities.add(new UserEntity(20L, "张三",1,1L));userEntities.add(new UserEntity(20L, "张三",1,1L));userEntities.add(new UserEntity(22L, "李四",2,2L));userEntities.add(new UserEntity(10L, "王五",3,3L));//        Map<String, List<UserEntity>> user = userEntities.stream().collect
//                (Collectors.groupingBy(UserEntity::getAge));Map<Long, List<UserEntity>> collect = userEntities.stream().collect(Collectors.groupingBy(UserEntity::getAge));System.out.println(collect+" collect");

结果

{1=[UserEntity{userId=20, username='张三', sex=1, age=1}, UserEntity{userId=20, username='张三', sex=1, age=1}],
2=[UserEntity{userId=22, username='李四', sex=2, age=2}],
3=[UserEntity{userId=10, username='王五', sex=3, age=3}]} collect

参考博客

获取集合的某个属性

这辈子坚持与不坚持都不可怕,怕的是独自走在坚持的道路上!! 欢迎加入技术群聊。。

在这里插入图片描述

这篇关于拉姆达表达式实现对集合中的对象中的某个属性求和以及查询某个特定属性以及对特定属性求和以及针对集合根据某个属性以key-value形式分组的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/796407

相关文章

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

【前端学习】AntV G6-08 深入图形与图形分组、自定义节点、节点动画(下)

【课程链接】 AntV G6:深入图形与图形分组、自定义节点、节点动画(下)_哔哩哔哩_bilibili 本章十吾老师讲解了一个复杂的自定义节点中,应该怎样去计算和绘制图形,如何给一个图形制作不间断的动画,以及在鼠标事件之后产生动画。(有点难,需要好好理解) <!DOCTYPE html><html><head><meta charset="UTF-8"><title>06

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

C++11第三弹:lambda表达式 | 新的类功能 | 模板的可变参数

🌈个人主页: 南桥几晴秋 🌈C++专栏: 南桥谈C++ 🌈C语言专栏: C语言学习系列 🌈Linux学习专栏: 南桥谈Linux 🌈数据结构学习专栏: 数据结构杂谈 🌈数据库学习专栏: 南桥谈MySQL 🌈Qt学习专栏: 南桥谈Qt 🌈菜鸡代码练习: 练习随想记录 🌈git学习: 南桥谈Git 🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈🌈�

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

活用c4d官方开发文档查询代码

当你问AI助手比如豆包,如何用python禁止掉xpresso标签时候,它会提示到 这时候要用到两个东西。https://developers.maxon.net/论坛搜索和开发文档 比如这里我就在官方找到正确的id描述 然后我就把参数标签换过来

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

Android实现任意版本设置默认的锁屏壁纸和桌面壁纸(两张壁纸可不一致)

客户有些需求需要设置默认壁纸和锁屏壁纸  在默认情况下 这两个壁纸是相同的  如果需要默认的锁屏壁纸和桌面壁纸不一样 需要额外修改 Android13实现 替换默认桌面壁纸: 将图片文件替换frameworks/base/core/res/res/drawable-nodpi/default_wallpaper.*  (注意不能是bmp格式) 替换默认锁屏壁纸: 将图片资源放入vendo

06 C++Lambda表达式

lambda表达式的定义 没有显式模版形参的lambda表达式 [捕获] 前属性 (形参列表) 说明符 异常 后属性 尾随类型 约束 {函数体} 有显式模版形参的lambda表达式 [捕获] <模版形参> 模版约束 前属性 (形参列表) 说明符 异常 后属性 尾随类型 约束 {函数体} 含义 捕获:包含零个或者多个捕获符的逗号分隔列表 模板形参:用于泛型lambda提供个模板形参的名