作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
static final List<String> ALL_TYPES = AuthInt.getScopeAssociations().stream()
.map(a -> a.getLeft().getSimpleName())
.collect(Collectors.toList());
列表中有一个名称“MarieAntra”,我只想将其添加为 Marie。我如何使用 Streams 实现此目的?
最佳答案
在map
内部,你可以编写一个完整的函数,只要它返回正确的类型,所以你没有理由不能编写一些东西
static final List<String> ALL_TYPES = AuthInt.getScopeAssociations().stream()
.map(a -> a.getLeft().getSimpleName())
.map(name -> "MarieAntra".equals(name) ? "Marie" : name)
.collect(Collectors.toList());
关于java - 如何在java 8中过滤内部 map ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67016713/
我是一名优秀的程序员,十分优秀!