你可以使用 Java 8 中的 Stream API 来将 List 转换为 Map。
例如,假设你有一个类 Person,其中包含名字和年龄两个属性,并且你有一个 List 列表,你希望将列表中的每个人的名字作为键,年龄作为值,转换为 Map。你可以使用以下代码实现:
List<Person> list = // ...
Map<String, Integer> map = list.stream()
.collect(Collectors.toMap(Person::getName, Person::getAge));
在这里,我们使用 Stream API 的 collect 方法,并将 Collectors.toMap 作为参数传递。我们使用 Person 类的 getName 和 getAge 方法作为函数参数,以提取每个 Person 对象的名字和年