摘要: // 串行执行流 stream().filter(e -> e > 10).count(); // 并行执行流 parallelStream().filter(e -> e > 10).count() ParallelStreams 默认使用 ForkJoinPool.commonPool()线程池 阅读全文
posted @ 2021-06-21 21:03 breeze.zZ 阅读(3032) 评论(0) 推荐(0)