作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的处境很奇怪。无论如何,是否可以将列表流式传输到具有相同值的 map ?
即
让a
属于 Map< Integer, List< String > >
类型
比方说b
只是与 a
的键对应的整数列表.
b.stream().map(x ->
a.get(x).stream()
.collect(
Collectors.toMap(i -> i, x);
)
);
我想要一个所有值都是 x
的 map 所有的键都来自 b
中的值.
上面的函数应该返回 Stream< List< Map< String, Int > > >
(显然它不起作用)
最佳答案
toMap
中的第二个值方法也需要是 lambda (即它需要满足接口(interface) Function<? super T, ? extends U>
,其中 T
是 b
流中对象的类型,而 U
是结果中值的类型 map ):
Map<Integer, List<String>> a = ...
List<Integer> b = ...
Stream<Map<String, Integer>> c = b.stream().map(x ->
a.get(x).stream()
.collect(Collectors.toMap(i -> i, i -> x)));
关于Java 8 将列表流放入具有相同值的映射中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41603402/
我是一名优秀的程序员,十分优秀!