在 Java 中,按属性对对象进行分组可以提供组织和分析数据的结构化方式。例如,假设您有一个学生及其位置的列表。您可能希望根据学生的位置对学生进行分组以便进一步处理。
下面是利用 Java 8 的高级功能来实现此目的的代码片段:
import java.util.List; import java.util.ArrayList; import java.util.Map; 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")); Map<String, List<Student>> studlistGrouped = studlist.stream().collect(Collectors.groupingBy(w -> w.stud_location)); } } 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; } }
收集器。 Java 8 中引入的 groupingBy 方法允许您创建一个根据指定键函数的值对对象进行分组的 Map。在本例中,我们将 Stud_location 字段指定为键函数,从而生成一个地图,其中每个键代表一个位置,对应的值是该位置的学生列表。
这种方法提供了一种高效而优雅的方法使用特定属性对对象列表进行分组的方法。生成的地图可用于各种目的,例如进一步过滤、排序或数据可视化。
以上是如何使用 Java 8 流按属性对对象进行分组?的详细内容。更多信息请关注PHP中文网其他相关文章!