List<Integer> list = Arrays.asList(3, 4, 6, 1, 2, 3, 5, 6);
list.parallelStream().forEach(System.out::print);
list.parallelStream().map(a -> a + 2).forEach(a -> System.out.println(Thread.currentThread().getName() + "--" + a));
two and three line will use a same forkjoinpool? if not, how to let them use one?