java8中list转map怎么实现

avatar
作者
猴君
阅读量:8

在Java 8中,可以使用Collectors.toMap()方法将List转换为Map。以下是一个简单的示例代码:

假设有一个类Person:

public class Person {     private String name;     private int age;      public Person(String name, int age) {         this.name = name;         this.age = age;     }      // getters and setters } 

现在有一个List,我们想将其转换为Map,其中key为name,value为age:

import java.util.List; import java.util.Map; import java.util.stream.Collectors;  public class Main {      public static void main(String[] args) {         List<Person> personList = List.of(                 new Person("Alice", 25),                 new Person("Bob", 30),                 new Person("Charlie", 35)         );          Map<String, Integer> personMap = personList.stream()                 .collect(Collectors.toMap(Person::getName, Person::getAge));          System.out.println(personMap);     } }  

上面的代码中,我们使用personList.stream().collect(Collectors.toMap(Person::getName, Person::getAge))将List转换为Map<String, Integer>,其中key为name,value为age。

请注意,如果List中存在重复的key,则会抛出IllegalStateException异常。您可以使用另一个Collectors.toMap()方法重载,指定一个合并函数来处理重复key的情况。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!