作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我当前的逻辑是:
List<String> priceUnitCodes = ofNullable(product.getProductPrices())
.map(ProductPrices::getProductPrices)
.flatMap(productPrices -> productPrices.stream()) // << error highlight
.map(ProductPrice::getPriceBase)
.map(PriceBase::getPriceUnit)
.map(UniversalType::getCode)
.collect(Collectors.toList());
IntelliJ 中 flatMap
的位置部分突出显示并显示以下错误提示:
no instance(s) of type variable(s) U exist so that Stream<ProductPrice> conforms to Optional<? extends U>
我知道Optionals
和Stream
是两个不同的东西,但我想知道是否有办法将它们结合起来,这样我就可以跟进 Optional<List<?>>
与 Stream
之后。
最佳答案
如果您使用的是 Java 9+,则可以使用 Optional.stream
,然后使用 flatMap
:
ofNullable(product.getProductPrices())
.map(ProductPrices::getProductPrices)
.stream()
.flatMap(Collection::stream) //assuming getProductPrices returns a Collection
...
Optional.stream
如果可选值为空,则返回空流。
关于java - 如何在 Java 中将可选映射转换为流映射,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58855126/
我是一名优秀的程序员,十分优秀!