如何将地图流转换为单个地图
我需要使用流将 Stream
转换为 Map
。
EntityType
是一个具有特定值的 enum
,例如 A
、B
和C
。流中有很多地图。
我想使用 Stream API 将它们全部连接到一个地图中。有什么办法吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以尝试这样的事情:
You could try something like this:
为此,您可以通过应用
flatMap()
展平流中的地图。并用一个新条目包裹每个条目。需要此步骤1.以避免源突变,2.以避免发生UnsupportedOperationException
如果集不可修改,则引发。然后应用
collect()
。由于
EntityType
是一个enum
,因此supplier
提供的容器最合适的选择是EnumMap
,它是专为enum-keys设计,比HashMap
具有更好的性能。在
combine
方法中,merge()
应用于结果映射,以将流中的条目添加到其中。main()
输出
For that, you can flatten the maps in the stream by applying
flatMap()
. And wrap each entry with a new one. This step is required 1. to avoid mutation of the source and 2. to prevent anUnsupportedOperationException
which will be raised if sets are unmodifiable.And then apply
collect()
.Since
EntityType
is anenum
the most appropriate choice for the container provided by thesupplier
will be anEnumMap
which was designed specifically for enum-keys and has a better performance thanHashMap
.Inside the
combine
methodmerge()
is being applied on the resulting map to add entries from the stream into it.main()
Output