Java 8 中按多个字段分组
按多个字段名称对对象进行分组是 Java 编程中的常见操作,并且可以轻松实现使用 Java 8 的 Stream API 和 Collectors.groupingBy() 方法实现。
问题中提供的代码演示如何按单个字段名称对对象进行分组:
Map<Integer, List<Person>> peopleByAge = people .collect(Collectors.groupingBy(p -> p.age, Collectors.mapping((Person p) -> p, toList())));
要按多个字段对对象进行分组,第一个选项是链接多个收集器:
Map<String, Map<Integer, List<Person>>> map = people .collect(Collectors.groupingBy(Person::getName, Collectors.groupingBy(Person::getAge)));
另一个选项是创建表示分组标准的类,例如以下代码中的 NameAge:
class Person { record NameAge(String name, int age) { } public NameAge getNameAge() { return new NameAge(name, age); } } ... Map<NameAge, List<Person>> map = people.collect(Collectors.groupingBy(Person::getNameAge));
最后,可以使用第三方库(例如 Apache Commons Pair)创建 Pair 对象进行分组:
Map<Pair<String, Integer>, List<Person>> map = people.collect(Collectors.groupingBy(p -> Pair.of(p.getName(), p.getAge())));
通过利用这些分组技术,可以在 Java 8 中通过多个字段名称有效地对对象进行分组,提供了一种便捷的方式根据特定标准组织和访问数据。
以上是如何使用 Java 8 流按多个字段对对象进行分组?的详细内容。更多信息请关注PHP中文网其他相关文章!