在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
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
請注意,如果List中存在重復的key,則會拋出IllegalStateException
異常。您可以使用另一個Collectors.toMap()
方法重載,指定一個合并函數來處理重復key的情況。