使用流计算笛卡尔积时,我可以并行生成它们,并按顺序使用它们,如下面的代码所示:
int min = 0;
int max = 9;
Supplier<IntStream> supplier = () -> IntStream.rangeClosed(min, max).parallel();
supplier.get()
.flatMap(a -> supplier.get().map(b -> a * b))
.forEachOrdered(System.out::println);
这将按顺序完美打印所有内容,现在考虑以下代码,我想将其添加到列表中,同时保留顺序。
int min = 0;
int max = 9;
Supplier<IntStream> supplier = () -> IntStream.rangeClosed(min, max).parallel();
List<Integer> list = supplier.get()
.flatMap(a -> supplier.get().map(b -> a * b))
.boxed()
.collect(Collectors.toList());
list.forEach(System.out::println);
现在它没有按顺序打印!
这是可以理解的,因为我没有要求保留订单。
现在的问题是:有没有办法collect()
或是否有保留订单的Collector
?
答案 0 :(得分:4)
当我执行你的代码时,我按顺序得到了输出。事实上,两个代码都有相同的输出。好像从Collector
返回的Collectors.toList
已经订购了,如下面的代码所示:
Collector collector = Collectors.toList();
System.out.print(collector.characteristics());
打印:
[IDENTITY_FINISH]
由于没有为收集器设置UNORDERED
个特征,它只会按顺序处理元素,这就是我所看到的行为。
事实上,Collectors.toList()
的文档中明确提到了这一点:
<强>返回:强>
Collector
以相遇顺序将所有输入元素收集到List