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中文網其他相關文章!