Java 8 Stream 多属性分组与聚合:自定义对象列表处理教程

Java 8 Stream 多属性分组与聚合:自定义对象列表处理教程

本教程详细介绍了如何利用 java 8 stream api,对自定义对象列表进行多属性分组,并对指定数值字段进行聚合求和。通过引入自定义复合键类和聚合容器,结合 `collectors.groupingby` 和 `collector.of`,实现了高效、灵活的数据处理,将具有相同名称、年龄和城市的学生数据合并,并累加其薪资和奖金,最终生成聚合后的新列表。

引言:Java 8 Stream 的多维聚合挑战

在数据处理中,我们经常需要对列表中的对象进行分组,并根据分组结果对某些属性进行聚合计算。例如,在一个学生列表中,我们可能需要根据学生的姓名、年龄和城市进行分组,然后统计每个分组的总薪资和总奖金。Java 8 引入的 Stream API 提供了强大的功能来处理这类问题,但对于涉及多属性分组和自定义聚合逻辑的场景,需要巧妙地结合 Collectors 来实现。

问题分析与原始尝试的局限

假设我们有一个 Student 类,包含姓名、年龄、城市、薪资和奖金等属性:

public class Student {    private String name;    private int age;    private String city;    private double salary;    private double incentive;    public Student(String name, int age, String city, double salary, double incentive) {        this.name = name;        this.age = age;        this.city = city;        this.salary = salary;        this.incentive = incentive;    }    // Getters for all fields    public String getName() { return name; }    public int getAge() { return age; }    public String getCity() { return city; }    public double getSalary() { return salary; }    public double getIncentive() { return incentive; }    @Override    public String toString() {        return "Student{" +               "name='" + name + ''' +               ", age=" + age +               ", city='" + city + ''' +               ", salary=" + salary +               ", incentive=" + incentive +               '}';    }}

我们的目标是将具有相同 name、age 和 city 的学生进行分组,并将其 salary 和 incentive 进行累加。

初次尝试时,开发者可能倾向于使用 Collectors.toMap,并尝试将多个属性作为 Map 的键。例如,使用 AbstractMap.SimpleEntry:

立即学习“Java免费学习笔记(深入)”;

// 编译错误示例// List res = new ArrayList(students.stream()//     .collect(Collectors.toMap(//         ec -> new AbstractMap.SimpleEntry(ec.getName(), ec.getAge(), ec.getCity()), // 编译错误:SimpleEntry只接受两个参数//         Function.identity(),//         (a, b) -> new Student(//             a.getName(), a.getAge(), a.getCity(), a.getSalary() + b.getSalary(), a.getIncentive() + b.getIncentive()//         )//     ))//     .values());

这个尝试会遇到两个主要问题:

AbstractMap.SimpleEntry 只能接受两个参数作为键值对,无法直接用于表示三个属性的复合键。double 类型的加法直接使用 + 运算符即可,如果尝试使用 add() 方法,会提示“Cannot resolve method ‘add(double)’”,因为 double 是基本类型,没有 add 方法(除非 salary 或 incentive 被定义为 Double 对象,并被错误地期望有 add 方法)。

为了解决多属性分组的问题,我们需要一个能够封装这些属性并正确实现 equals 和 hashCode 方法的自定义对象作为 Map 的键。

方案一:构建复合键

要将多个属性作为一个整体进行分组,最清晰且可维护的方式是创建一个专门的类来表示这个复合键。对于 Java 8,我们需要手动实现 equals 和 hashCode 方法。

public static class NameAgeCity {    private String name;    private int age;    private String city;    public NameAgeCity(String name, int age, String city) {        this.name = name;        this.age = age;        this.city = city;    }    public String getName() { return name; }    public int getAge() { return age; }    public String getCity() { return city; }    // 静态工厂方法,方便从 Student 对象创建 NameAgeCity 实例    public static NameAgeCity from(Student s) {        return new NameAgeCity(s.getName(), s.getAge(), s.getCity());    }    @Override    public boolean equals(Object o) {        if (this == o) return true;        if (o == null || getClass() != o.getClass()) return false;        NameAgeCity that = (NameAgeCity) o;        return age == that.age &&               Objects.equals(name, that.name) &&               Objects.equals(city, that.city);    }    @Override    public int hashCode() {        return Objects.hash(name, age, city);    }    @Override    public String toString() {        return "NameAgeCity{" +               "name='" + name + ''' +               ", age=" + age +               ", city='" + city + ''' +               '}';    }}

重要提示:

Melodio Melodio

Melodio是全球首款个性化AI流媒体音乐平台,能够根据用户场景或心情生成定制化音乐。

Melodio 110 查看详情 Melodio equals 和 hashCode 方法的正确实现对于将自定义对象用作 Map 的键至关重要。equals 定义了两个对象何时被认为是相等的,而 hashCode 则用于提高哈希表的查找效率。不正确实现会导致分组失败或性能问题。对于 Java 16 及更高版本,可以使用 record 类型更简洁地定义这样的复合键,编译器会自动生成构造函数、equals、hashCode 和 toString 方法。

方案二:自定义聚合逻辑

在分组之后,我们需要将每个分组内的 salary 和 incentive 进行累加。由于我们希望得到一个聚合后的新对象,而不是修改原始 Student 对象,或者如果 Student 对象是不可变的,我们可以引入一个专门的类 AggregatedValues 来存储聚合结果。

AggregatedValues 将充当一个可变的累加器,它会在流处理过程中收集和合并数据。

public static class AggregatedValues {    private String name;    private int age;    private String city;    private double salary;    private double incentive;    // 默认构造函数,用于 Collectors.of 的 supplier    public AggregatedValues() {        // 初始值通常为0或null    }    // Getters for aggregated values    public String getName() { return name; }    public int getAge() { return age; }    public String getCity() { return city; }    public double getSalary() { return salary; }    public double getIncentive() { return incentive; }    // 累加器方法:将一个 Student 对象的数据累加到当前 AggregatedValues 实例    public void accept(Student s) {        // 首次接受 Student 时,初始化基本信息        if (name == null) name = s.getName();        if (age == 0) age = s.getAge(); // 假设age不会是0作为有效分组键        if (city == null) city = s.getCity();        // 累加薪资和奖金        this.salary += s.getSalary();        this.incentive += s.getIncentive();    }    // 合并器方法:将另一个 AggregatedValues 实例的数据合并到当前实例    public AggregatedValues merge(AggregatedValues other) {        this.salary += other.salary;        this.incentive += other.incentive;        return this; // 返回当前实例以支持链式调用    }    // 可选:将聚合结果转换回 Student 对象    public Student toStudent() {        return new Student(name, age, city, salary, incentive);    }    @Override    public String toString() {        return "AggregatedValues{" +               "name='" + name + ''' +               ", age=" + age +               ", city='" + city + ''' +               ", salary=" + salary +               ", incentive=" + incentive +               '}';    }}

整合方案:使用 Collectors.groupingBy 与 Collector.of

现在,我们可以将上述两个方案结合起来,使用 Collectors.groupingBy 进行分组,并使用 Collector.of 创建一个自定义的下游收集器来执行聚合操作。

Collector.of 方法需要四个参数:

supplier (供应器): 一个函数,用于创建新的结果容器(在这里是 AggregatedValues 的实例)。accumulator (累加器): 一个函数,用于将流中的元素添加到结果容器中(在这里是 AggregatedValues::accept)。combiner (合并器): 一个函数,用于将两个结果容器合并(在并行流中特别有用,在这里是 AggregatedValues::merge)。finisher (终结器,可选): 一个函数,用于对最终结果容器进行转换(例如,将 AggregatedValues 转换回 Student)。

完整示例代码:

import java.util.ArrayList;import java.util.Collections;import java.util.List;import java.util.Objects;import java.util.stream.Collectors;public class StudentAggregator {    // Student 类定义 (如上所示)    public static class Student {        private String name;        private int age;        private String city;        private double salary;        private double incentive;        public Student(String name, int age, String city, double salary, double incentive) {            this.name = name;            this.age = age;            this.city = city;            this.salary = salary;            this.incentive = incentive;        }        public String getName() { return name; }        public int getAge() { return age; }        public String getCity() { return city; }        public double getSalary() { return salary; }        public double getIncentive() { return incentive; }        @Override        public String toString() {            return "Student{" +                   "name='" + name + ''' +                   ", age=" + age +                   ", city='" + city + ''' +                   ", salary=" + salary +                   ", incentive=" + incentive +                   '}';        }    }    // NameAgeCity 复合键类定义 (如上所示)    public static class NameAgeCity {        private String name;        private int age;        private String city;        public NameAgeCity(String name, int age, String city) {            this.name = name;            this.age = age;            this.city = city;        }        public static NameAgeCity from(Student s) {            return new NameAgeCity(s.getName(), s.getAge(), s.getCity());        }        @Override        public boolean equals(Object o) {            if (this == o) return true;            if (o == null || getClass() != o.getClass()) return false;            NameAgeCity that = (NameAgeCity) o;            return age == that.age &&                   Objects.equals(name, that.name) &&                   Objects.equals(city, that.city);        }        @Override        public int hashCode() {            return Objects.hash(name, age, city);        }        @Override        public String toString() {            return "NameAgeCity{" +                   "name='" + name + ''' +                   ", age=" + age +                   ", city='" + city + ''' +                   '}';        }    }    // AggregatedValues 聚合容器类定义 (如上所示)    public static class AggregatedValues {        private String name;        private int age;        private String city;        private double salary;        private double incentive;        public AggregatedValues() { }        public String getName() { return name; }        public int getAge() { return age; }        public String getCity() { return city; }        public double getSalary() { return salary; }        public double getIncentive() { return incentive; }        public void accept(Student s) {            if (name == null) name = s.getName();            if (age == 0) age = s.getAge(); // Assuming age 0 is not a valid grouping key initially            if (city == null) city = s.getCity();            this.salary += s.getSalary();            this.incentive += s.getIncentive();        }        public AggregatedValues merge(AggregatedValues other) {            this.salary += other.salary;            this.incentive += other.incentive;            return this;        }        public Student toStudent() {            return new Student(name, age, city, salary, incentive);        }        @Override        public String toString() {            return "AggregatedValues{" +                   "name='" + name + ''' +                   ", age=" + age +                   ", city='" + city + ''' +                   ", salary=" + salary +                   ", incentive=" + incentive +                   '}';        }    }    public static void main(String[] args) {        List students = new ArrayList();        // For Java 8, use Collections.addAll or Arrays.asList for list initialization        Collections.addAll(students,            new Student("Raj", 10, "Pune", 10000, 100),            new Student("Raj", 10, "Pune", 20000, 200),            new Student("Raj", 20, "Pune", 10000, 100),            new Student("Ram", 30, "Pune", 10000, 100),            new Student("Ram", 30, "Pune", 30000, 300),            new Student("Seema", 10, "Pune", 10000, 100)        );        // 方案一:聚合结果为 AggregatedValues 列表        List aggregatedValuesList = students.stream()            .collect(Collectors.groupingBy(                NameAgeCity::from, // keyMapper: 将 Student 映射为 NameAgeCity 复合键                Collectors.of(     // downstream Collector: 自定义聚合逻辑                    AggregatedValues::new,    // supplier: 创建新的 AggregatedValues 实例                    AggregatedValues::accept, // accumulator: 将 Student 累加到 AggregatedValues                    AggregatedValues::merge   // combiner: 合并两个 AggregatedValues 实例                )            ))            .values().stream() // 获取 Map 的所有值 (AggregatedValues 实例)            .collect(Collectors.toList()); // 收集为列表        System.out.println("--- AggregatedValues 列表 ---");        aggregatedValuesList.forEach(System.out::println);        // 方案二:聚合结果直接转换为 Student 列表 (使用 finisher)        List aggregatedStudentsList = students.stream()            .collect(Collectors.groupingBy(                NameAgeCity::from, // keyMapper                Collectors.of(     // downstream Collector                    AggregatedValues::new,      // supplier                    AggregatedValues::accept,   // accumulator                    AggregatedValues::merge,    // combiner                    AggregatedValues::toStudent // finisherFunction: 将 AggregatedValues 转换为 Student                )            ))            .values().stream() // 获取 Map 的所有值 (此时已经是 Student 实例)            .collect(Collectors.toList()); // 收集为列表        System.out.println("n--- 聚合后的 Student 列表 ---");        aggregatedStudentsList.forEach(System.out::println);    }}

输出结果:

--- AggregatedValues 列表 ---AggregatedValues{name='Raj', age=20, city='Pune', salary=10000.0, incentive=100.0}AggregatedValues{name='Raj', age=10, city='Pune', salary=30000.0, incentive=300.0}AggregatedValues{name='Ram', age=30, city='Pune', salary=40000.0, incentive=400.0}AggregatedValues{name='Seema', age=10, city='Pune', salary=10000.0, incentive=100.0}--- 聚合后的 Student 列表 ---Student{name='Raj', age=20, city='Pune', salary=10000.0, incentive=100.0}Student{name='Raj', age=10, city='Pune', salary=30000.0, incentive=300.0}Student{name='Ram', age=30, city='Pune', salary=40000.0, incentive=400.0}Student{name='Seema', age=10, city='Pune', salary=10000.0, incentive=100.0}

可以看到,Raj, 10, Pune 的学生数据被正确聚合,薪资和奖金分别累加为 30000 和 300。

注意事项与最佳实践

equals 和 hashCode 的重要性: 在使用自定义对象作为 Map 的键时,务必正确实现 equals 和 hashCode 方法。equals 用于判断两个键是否逻辑相等,而 hashCode 用于快速定位键在哈希表中的位置。如果它们不一致,Map 将无法正确地识别相同的键,导致分组错误。可变容器的性能: AggregatedValues 作为可变容器,在 Collector.of 的 accumulator 阶段直接修改自身状态,这种“可变归约”在处理大量数据时通常比创建大量中间不可变对象具有更好的性能。Java 版本兼容性: 本教程提供的 NameAgeCity 类是 Java 8 兼容的。对于 Java 16+,可以使用 record 关键字来更简洁地定义复合键。例如:`public record NameAgeCity(String name, int age, String

以上就是Java 8 Stream 多属性分组与聚合:自定义对象列表处理教程的详细内容,更多请关注创想鸟其它相关文章!

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/939441.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
mysql如何优化查询执行计划
上一篇 2025年11月29日 17:14:16
探究Swoole异步编程中的IO信号处理
下一篇 2025年11月29日 17:14:17

相关推荐

  • 修复Django电商项目中AJAX过滤产品列表图片不显示问题

    在Django电商项目中,当使用AJAX动态加载过滤后的产品列表时,常遇到图片无法正常显示的问题。这通常是由于前端模板中图片加载方式(如data-setbg属性结合JavaScript库)与AJAX动态内容更新机制不兼容所致。解决方案是直接在AJAX返回的HTML中使用标准的标签来渲染图片,确保浏览…

    2026年5月10日
    000
  • Matplotlib 地图中多类型图例的创建与优化

    Matplotlib 地图中多类型图例的创建与优化Matplotlib 地图中多类型图例的创建与优化Matplotlib 地图中多类型图例的创建与优化Matplotlib 地图中多类型图例的创建与优化

    本教程旨在解决matplotlib地图可视化中,如何在一个图例中同时展示颜色块(如区域分类)和自定义标记(如特定兴趣点)的问题。文章详细介绍了当传统`patch`对象无法正确显示标记时,如何利用`matplotlib.lines.line2d`创建标记图例句柄,并将其与颜色块图例句柄合并,从而生成一…

    2026年5月10日 用户投稿
    100
  • Golang JSON序列化:控制敏感字段暴露的最佳实践

    本教程探讨golang中如何高效控制结构体字段在json序列化时的可见性。当需要将包含敏感信息的结构体数组转换为json响应时,通过利用`encoding/json`包提供的结构体标签,特别是`json:”-“`,可以轻松实现对特定字段的忽略,从而避免敏感数据泄露,确保api…

    2026年5月10日
    000
  • 比特币新手教程 比特币交易平台有哪些

    比特币是一种去中心化的数字货币,基于区块链技术实现点对点交易,具有匿名性、有限发行和不可篡改等特点;新手可通过交易所购买,P2P交易获得比特币,常用平台包括Binance、OKX和Huobi;交易流程包括注册账户、实名认证、绑定支付方式、充值法币并下单购买,可选择市价单或限价单;比特币存储方式有交易…

    2026年5月10日
    000
  • c++中的SFINAE技术是什么_c++模板编程中的SFINAE原理与应用

    SFINAE 是“替换失败不是错误”的原则,指模板实例化时若参数替换导致错误,只要存在其他合法候选,编译器不报错而是继续重载决议。它用于条件启用模板、类型检测等场景,如通过 decltype 或 enable_if 控制函数重载,实现类型特征判断。尽管 C++20 引入 Concepts 简化了部分…

    2026年5月10日
    000
  • Go语言mgo查询构建:深入理解bson.M与日期范围查询的正确实践

    本文旨在解决go语言mgo库中构建复杂查询时,特别是涉及嵌套`bson.m`和日期范围筛选的常见错误。我们将深入剖析`bson.m`的类型特性,解释为何直接索引`interface{}`会导致“invalid operation”错误,并提供一种推荐的、结构清晰的代码重构方案,以确保查询条件能够正确…

    2026年5月10日
    100
  • 修复点击时按钮抖动:CSS垂直对齐实践

    本文探讨了在Web开发中,交互式按钮(如播放/暂停按钮)在点击时发生意外垂直位移的问题。通过分析CSS样式变化对元素布局的影响,我们发现这是由于按钮不同状态下的边框样式和内边距改变,以及默认的垂直对齐行为共同作用所致。核心解决方案是利用CSS的vertical-align属性,将其设置为middle…

    2026年5月10日
    100
  • Golang goroutine与channel调试技巧

    使用go run -race检测数据竞争,结合runtime.NumGoroutine监控协程数量,通过pprof分析阻塞调用栈,利用select超时避免永久阻塞,有效排查goroutine泄漏、死锁和数据竞争问题。 Go语言的goroutine和channel是并发编程的核心,但它们也带来了调试上…

    2026年5月10日
    000
  • 使用 Jupyter Notebook 进行探索性数据分析

    Jupyter Notebook通过单元格实现代码与Markdown结合,支持数据导入(pandas)、清洗(fillna)、探索(matplotlib/seaborn可视化)、统计分析(describe/corr)和特征工程,便于记录与分享分析过程。 Jupyter Notebook 是进行探索性…

    2026年5月10日
    000
  • 《魔兽世界》将于6月11日开启国服回归技术测试

    《魔兽世界》将于6月11日开启国服回归技术测试《魔兽世界》将于6月11日开启国服回归技术测试《魔兽世界》将于6月11日开启国服回归技术测试《魔兽世界》将于6月11日开启国服回归技术测试

    《%ign%ignore_a_1%re_a_1%》官方宣布,将于6月11日开启国服回归技术测试,时间为7天,并称可以在6月内正式开服,玩家们可以访问官网下载战网客户端并预下载“巫妖王之怒”客户端,技术测试详情见下图。 WordAi WordAI是一个AI驱动的内容重写平台 53 查看详情 以上就是《…

    2026年5月10日 用户投稿
    200
  • 如何在HTML中插入表单元素_HTML表单控件与输入类型使用指南

    HTML表单通过标签构建,包含action和method属性定义数据提交目标与方式,常用input类型如text、password、email等适配不同输入需求,配合label、required、placeholder提升可用性,结合textarea、select、button等控件实现完整交互,是…

    2026年5月10日
    100
  • 前端缓存策略与JavaScript存储管理

    根据数据特性选择合适的存储方式并制定清晰的读写与清理逻辑,能显著提升前端性能;合理运用Cookie、localStorage、sessionStorage、IndexedDB及Cache API,结合缓存策略与定期清理机制,可在保证用户体验的同时避免安全与性能隐患。 前端缓存和JavaScript存…

    2026年5月10日
    200
  • HTML5网页如何实现手势操作 HTML5网页移动端交互的处理技巧

    首先利用原生touch事件实现滑动判断,再通过preventDefault解决滚动冲突,接着引入Hammer.js处理复杂手势,最后通过优化点击区域、避免事件冲突和增加视觉反馈提升体验。 在移动端浏览器中,HTML5网页可以通过触摸事件实现手势操作,提升用户体验。虽然原生JavaScript提供了基…

    2026年5月10日
    000
  • 创建指定大小并填充特定数据的Golang文件教程

    本文将介绍如何使用Golang创建一个指定大小的文件,并用特定数据填充它。我们将使用 `os` 包提供的函数来创建和截断文件,从而实现快速生成大文件的目的。示例代码展示了如何创建一个10MB的文件,并将其填充为全零数据。掌握这些方法,可以方便地在例如日志系统或磁盘队列等场景中,预先创建测试文件或初始…

    2026年5月10日
    000
  • 深入理解 Express.js 中 next() 参数的作用与中间件机制

    本文深入探讨 express.js 中间件函数中的 `next()` 参数。它负责将控制权传递给请求-响应周期中的下一个中间件或路由处理程序。文章将详细解释 `next()` 的工作原理、中间件的注册与执行顺序,以及不正确使用 `next()` 可能导致请求挂起的风险,并通过代码示例和实际应用场景,…

    2026年5月10日
    000
  • Python命令怎样使用profile分析脚本性能 Python命令性能分析的基础教程

    使用Python的cProfile模块分析脚本性能最直接的方式是通过命令行执行python -m cProfile your_script.py,它会输出每个函数的调用次数、总耗时、累积耗时等关键指标,帮助定位性能瓶颈;为进一步分析,可将结果保存为文件python -m cProfile -o ou…

    2026年5月10日
    000
  • 使用 WebCodecs VideoDecoder 实现精确逐帧回退

    本文档旨在解决在使用 WebCodecs VideoDecoder 进行视频解码时,实现精确逐帧回退的问题。通过比较帧的时间戳与目标帧的时间戳,可以避免渲染中间帧,从而提高用户体验。本文将提供详细的解决方案和示例代码,帮助开发者实现精确的视频帧控制。 在使用 WebCodecs VideoDecod…

    2026年5月10日
    000
  • 如何插入查询结果数据_SQL插入Select查询结果方法

    如何插入查询结果数据_SQL插入Select查询结果方法如何插入查询结果数据_SQL插入Select查询结果方法如何插入查询结果数据_SQL插入Select查询结果方法如何插入查询结果数据_SQL插入Select查询结果方法

    使用INSERT INTO…SELECT语句可高效插入数据,通过NOT EXISTS、LEFT JOIN、MERGE语句或唯一约束避免重复;表结构不一致时可通过别名、类型转换、默认值或计算字段处理;结合存储过程可提升可维护性,支持参数化与动态SQL。 将查询结果数据插入到另一个表中,可以…

    2026年5月10日 用户投稿
    000
  • Discord.py 交互按钮超时与持久化解决方案

    本教程旨在解决Discord.py中交互按钮在一段时间后出现“This Interaction Failed”错误的问题。我们将深入探讨视图(View)的超时机制,并提供通过正确设置timeout参数以及利用bot.add_view()方法实现按钮持久化的具体方案,确保您的机器人交互功能稳定可靠,即…

    2026年5月10日
    000
  • Debian Copilot的社区活跃度如何

    debian copilot是codeberg社区维护的ai助手,旨在为debian用户提供服务。尽管搜索结果中没有直接提供关于debian copilot社区支持活跃度的具体数据,但我们可以通过debian社区的整体活跃度和特点来推断其活跃性。 Debian社区的一般情况: Debian拥有详尽的…

    2026年5月10日
    000

发表回复

登录后才能评论
关注微信