stream流list转map
时间: 2023-09-29 20:03:13 浏览: 41
可以使用Java 8中的Stream API来将一个List转换为Map,代码如下:
```
List<MyObject> list = ...; // 假设这是一个MyObject类型的List
Map<Integer, MyObject> map = list.stream().collect(Collectors.toMap(MyObject::getId, Function.identity()));
```
上面的代码中,我们假设MyObject有一个getId()方法,它返回一个Integer类型的ID。我们可以使用Stream的collect()方法将List中的元素转换为一个Map,其中Map的key是对象的ID,value是对象本身。Function.identity()方法会返回一个函数,该函数将对象本身作为值返回。
需要注意的是,如果List中包含重复的key,则会抛出一个IllegalStateException异常。如果你需要处理重复的key,可以在collect()方法中指定一个合并函数,例如:
```
Map<Integer, MyObject> map = list.stream().collect(Collectors.toMap(MyObject::getId, Function.identity(), (o1, o2) -> o1));
```
上面的代码中,我们指定了一个合并函数,如果遇到重复的key,则保留第一个对象。
相关问题
stream流list 转map
stream流可以通过collect(Collectors.toMap())方法将List转换为Map。在这个方法中,我们可以指定将List中的某个属性作为key,将List中的元素作为value。具体的实现如下所示:
```
Map<String, ProductDto> map = dtoList.stream()
.collect(Collectors.toMap(ProductDto::getProperty, Function.identity()));
```
这里的ProductDto表示List中的元素类型,getProperty表示要作为key的属性。通过这个方法,我们可以将List转换为一个以属性为key,元素为value的Map。
stream 流 list 转map
Java Stream可以通过collect方法将List转换为Map。
示例代码如下:
```
List<Person> personList = Arrays.asList(
new Person("Tom", 20),
new Person("Jerry", 25),
new Person("Alice", 30)
);
Map<String, Integer> personMap = personList.stream()
.collect(Collectors.toMap(Person::getName, Person::getAge));
System.out.println(personMap);
```
其中,Person是一个自定义的类,包含name和age两个属性。通过stream的collect方法,使用Collectors.toMap方法将List转换为Map,其中Person::getName和Person::getAge分别是获取name和age属性的方法引用。
输出结果为:
```
{Tom=20, Jerry=25, Alice=30}
```
即将List中的每个Person对象转换为Map中的一个键值对,键为name属性,值为age属性。
阅读全文