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)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2025年11月29日 17:14:05
下一篇 2025年11月29日 17:19:53

相关推荐

  • Uniapp 中如何不拉伸不裁剪地展示图片?

    灵活展示图片:如何不拉伸不裁剪 在界面设计中,常常需要以原尺寸展示用户上传的图片。本文将介绍一种在 uniapp 框架中实现该功能的简单方法。 对于不同尺寸的图片,可以采用以下处理方式: 极端宽高比:撑满屏幕宽度或高度,再等比缩放居中。非极端宽高比:居中显示,若能撑满则撑满。 然而,如果需要不拉伸不…

    2025年12月24日
    400
  • 如何让小说网站控制台显示乱码,同时网页内容正常显示?

    如何在不影响用户界面的情况下实现控制台乱码? 当在小说网站上下载小说时,大家可能会遇到一个问题:网站上的文本在网页内正常显示,但是在控制台中却是乱码。如何实现此类操作,从而在不影响用户界面(UI)的情况下保持控制台乱码呢? 答案在于使用自定义字体。网站可以通过在服务器端配置自定义字体,并通过在客户端…

    2025年12月24日
    800
  • 如何在地图上轻松创建气泡信息框?

    地图上气泡信息框的巧妙生成 地图上气泡信息框是一种常用的交互功能,它简便易用,能够为用户提供额外信息。本文将探讨如何借助地图库的功能轻松创建这一功能。 利用地图库的原生功能 大多数地图库,如高德地图,都提供了现成的信息窗体和右键菜单功能。这些功能可以通过以下途径实现: 高德地图 JS API 参考文…

    2025年12月24日
    400
  • 如何使用 scroll-behavior 属性实现元素scrollLeft变化时的平滑动画?

    如何实现元素scrollleft变化时的平滑动画效果? 在许多网页应用中,滚动容器的水平滚动条(scrollleft)需要频繁使用。为了让滚动动作更加自然,你希望给scrollleft的变化添加动画效果。 解决方案:scroll-behavior 属性 要实现scrollleft变化时的平滑动画效果…

    2025年12月24日
    000
  • 如何为滚动元素添加平滑过渡,使滚动条滑动时更自然流畅?

    给滚动元素平滑过渡 如何在滚动条属性(scrollleft)发生改变时为元素添加平滑的过渡效果? 解决方案:scroll-behavior 属性 为滚动容器设置 scroll-behavior 属性可以实现平滑滚动。 html 代码: click the button to slide right!…

    2025年12月24日
    500
  • 如何选择元素个数不固定的指定类名子元素?

    灵活选择元素个数不固定的指定类名子元素 在网页布局中,有时需要选择特定类名的子元素,但这些元素的数量并不固定。例如,下面这段 html 代码中,activebar 和 item 元素的数量均不固定: *n *n 如果需要选择第一个 item元素,可以使用 css 选择器 :nth-child()。该…

    2025年12月24日
    200
  • 使用 SVG 如何实现自定义宽度、间距和半径的虚线边框?

    使用 svg 实现自定义虚线边框 如何实现一个具有自定义宽度、间距和半径的虚线边框是一个常见的前端开发问题。传统的解决方案通常涉及使用 border-image 引入切片图片,但是这种方法存在引入外部资源、性能低下的缺点。 为了避免上述问题,可以使用 svg(可缩放矢量图形)来创建纯代码实现。一种方…

    2025年12月24日
    100
  • 如何让“元素跟随文本高度,而不是撑高父容器?

    如何让 元素跟随文本高度,而不是撑高父容器 在页面布局中,经常遇到父容器高度被子元素撑开的问题。在图例所示的案例中,父容器被较高的图片撑开,而文本的高度没有被考虑。本问答将提供纯css解决方案,让图片跟随文本高度,确保父容器的高度不会被图片影响。 解决方法 为了解决这个问题,需要将图片从文档流中脱离…

    2025年12月24日
    000
  • 为什么 CSS mask 属性未请求指定图片?

    解决 css mask 属性未请求图片的问题 在使用 css mask 属性时,指定了图片地址,但网络面板显示未请求获取该图片,这可能是由于浏览器兼容性问题造成的。 问题 如下代码所示: 立即学习“前端免费学习笔记(深入)”; icon [data-icon=”cloud”] { –icon-cl…

    2025年12月24日
    200
  • 如何利用 CSS 选中激活标签并影响相邻元素的样式?

    如何利用 css 选中激活标签并影响相邻元素? 为了实现激活标签影响相邻元素的样式需求,可以通过 :has 选择器来实现。以下是如何具体操作: 对于激活标签相邻后的元素,可以在 css 中使用以下代码进行设置: li:has(+li.active) { border-radius: 0 0 10px…

    2025年12月24日
    100
  • 如何模拟Windows 10 设置界面中的鼠标悬浮放大效果?

    win10设置界面的鼠标移动显示周边的样式(探照灯效果)的实现方式 在windows设置界面的鼠标悬浮效果中,光标周围会显示一个放大区域。在前端开发中,可以通过多种方式实现类似的效果。 使用css 使用css的transform和box-shadow属性。通过将transform: scale(1.…

    2025年12月24日
    200
  • 为什么我的 Safari 自定义样式表在百度页面上失效了?

    为什么在 Safari 中自定义样式表未能正常工作? 在 Safari 的偏好设置中设置自定义样式表后,您对其进行测试却发现效果不同。在您自己的网页中,样式有效,而在百度页面中却失效。 造成这种情况的原因是,第一个访问的项目使用了文件协议,可以访问本地目录中的图片文件。而第二个访问的百度使用了 ht…

    2025年12月24日
    000
  • 如何用前端实现 Windows 10 设置界面的鼠标移动探照灯效果?

    如何在前端实现 Windows 10 设置界面中的鼠标移动探照灯效果 想要在前端开发中实现 Windows 10 设置界面中类似的鼠标移动探照灯效果,可以通过以下途径: CSS 解决方案 DEMO 1: Windows 10 网格悬停效果:https://codepen.io/tr4553r7/pe…

    2025年12月24日
    000
  • 使用CSS mask属性指定图片URL时,为什么浏览器无法加载图片?

    css mask属性未能加载图片的解决方法 使用css mask属性指定图片url时,如示例中所示: mask: url(“https://api.iconify.design/mdi:apple-icloud.svg”) center / contain no-repeat; 但是,在网络面板中却…

    2025年12月24日
    000
  • 如何用CSS Paint API为网页元素添加时尚的斑马线边框?

    为元素添加时尚的斑马线边框 在网页设计中,有时我们需要添加时尚的边框来提升元素的视觉效果。其中,斑马线边框是一种既醒目又别致的设计元素。 实现斜向斑马线边框 要实现斜向斑马线间隔圆环,我们可以使用css paint api。该api提供了强大的功能,可以让我们在元素上绘制复杂的图形。 立即学习“前端…

    2025年12月24日
    000
  • 图片如何不撑高父容器?

    如何让图片不撑高父容器? 当父容器包含不同高度的子元素时,父容器的高度通常会被最高元素撑开。如果你希望父容器的高度由文本内容撑开,避免图片对其产生影响,可以通过以下 css 解决方法: 绝对定位元素: .child-image { position: absolute; top: 0; left: …

    2025年12月24日
    000
  • CSS 帮助

    我正在尝试将文本附加到棕色框的左侧。我不能。我不知道代码有什么问题。请帮助我。 css .hero { position: relative; bottom: 80px; display: flex; justify-content: left; align-items: start; color:…

    2025年12月24日 好文分享
    200
  • 前端代码辅助工具:如何选择最可靠的AI工具?

    前端代码辅助工具:可靠性探讨 对于前端工程师来说,在HTML、CSS和JavaScript开发中借助AI工具是司空见惯的事情。然而,并非所有工具都能提供同等的可靠性。 个性化需求 关于哪个AI工具最可靠,这个问题没有一刀切的答案。每个人的使用习惯和项目需求各不相同。以下是一些影响选择的重要因素: 立…

    2025年12月24日
    300
  • 如何用 CSS Paint API 实现倾斜的斑马线间隔圆环?

    实现斑马线边框样式:探究 css paint api 本文将探究如何使用 css paint api 实现倾斜的斑马线间隔圆环。 问题: 给定一个有多个圆圈组成的斑马线图案,如何使用 css 实现倾斜的斑马线间隔圆环? 答案: 立即学习“前端免费学习笔记(深入)”; 使用 css paint api…

    2025年12月24日
    000
  • 如何使用CSS Paint API实现倾斜斑马线间隔圆环边框?

    css实现斑马线边框样式 想定制一个带有倾斜斑马线间隔圆环的边框?现在使用css paint api,定制任何样式都轻而易举。 css paint api 这是一个新的css特性,允许开发人员创建自定义形状和图案,其中包括斑马线样式。 立即学习“前端免费学习笔记(深入)”; 实现倾斜斑马线间隔圆环 …

    2025年12月24日
    100

发表回复

登录后才能评论
关注微信