ストリームを使用して Java オブジェクトを属性ごとにグループ化する方法

Susan Sarandon
リリース: 2024-11-18 05:33:02
オリジナル
380 人が閲覧しました

How to Group Java Objects by Attributes Using Streams?

Java Streams を使用した属性によるオブジェクトのグループ化

前述したように、オブジェクトのリストを「Location」という属性でグループ化したいと考えています。 Java 8 のストリームを使用してこれを実現するきれいな方法は次のとおりです。

import java.util.*;
import java.util.stream.Collectors;

public class Grouping {
    public static void main(String[] args) {
        List<Student> studlist = new ArrayList<>();
        studlist.add(new Student("1726", "John", "New York"));
        studlist.add(new Student("4321", "Max", "California"));
        studlist.add(new Student("2234", "Andrew", "Los Angeles"));
        studlist.add(new Student("5223", "Michael", "New York"));
        studlist.add(new Student("7765", "Sam", "California"));
        studlist.add(new Student("3442", "Mark", "New York"));

        // Group the list by "Location" attribute using Streams
        Map<String, List<Student>> studlistGrouped =
                studlist.stream().collect(Collectors.groupingBy(w -> w.stud_location));

        // Print the results
        for (String location : studlistGrouped.keySet()) {
            System.out.println("Location: " + location);
            for (Student student : studlistGrouped.get(location)) {
                System.out.println("\t" + student.stud_id + " " + student.stud_name);
            }
        }
    }

    class Student {
        String stud_id;
        String stud_name;
        String stud_location;

        Student(String sid, String sname, String slocation) {
            this.stud_id = sid;
            this.stud_name = sname;
            this.stud_location = slocation;
        }
    }
}
ログイン後にコピー

このプログラムは、Streams API の Collectors.groupingBy() メソッドを使用して、学生を所在地別にグループ化します。結果のマップ (studlistGrouped) には、場所としてのキーと、その場所にいる生徒のリストとしての値が含まれています。

以上がストリームを使用して Java オブジェクトを属性ごとにグループ化する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート