如何使用Streams将2D列表转换为1D列表?

前端之家收集整理的这篇文章主要介绍了如何使用Streams将2D列表转换为1D列表?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试过这段代码(列表是ArrayList< List< Integer>>):
list.stream().flatMap(Stream::of).collect(Collectors.toList());

但它没有做任何事情;该列表仍然是2D列表.如何将此2D列表转换为1D列表?

解决方法

您仍在接收列表列表的原因是因为当您应用 Stream::of时,它将返回现有列表的新流.

那就是当你执行Stream::of就像拥有{{{1,2}},{{3,4}},{{5,6}}}那么当你执行flatMap时就像这样做:

{{{1,6}}} -> flatMap -> {{1,2},{3,4},{5,6}}
// result after flatMap removes the stream of streams of streams to stream of streams

相反,您可以使用.flatMap(Collection :: stream)来获取流的流,例如:

{{1,6}}

并把它变成:

{1,2,3,4,5,6}

因此,您可以将当前的解决方案更改为:

List<Integer> result = list.stream().flatMap(Collection::stream)
                           .collect(Collectors.toList());
原文链接:https://www.f2er.com/java/239801.html

猜你在找的Java相关文章