list.stream().map(this::AccountVO2).collect(Collectors.toList()) 请换一种方式改写上述代码
时间: 2023-08-21 08:21:24 浏览: 84
java8新特性之stream的collect实战教程
5星 · 资源好评率100%
可以使用 lambda 表达式来替代方法引用 this::AccountVO2,改写后的代码如下:
```
list.stream().map(account -> AccountVO2(account)).collect(Collectors.toList())
```
或者更简洁的写法:
```
list.stream().map(AccountVO2::new).collect(Collectors.toList())
```
这样可以直接使用构造函数引用 AccountVO2::new 来创建 AccountVO2 对象。
阅读全文