问问题
4337 次
1 回答
9
ForkJoinPool
实现Executor
。
因此,您可以这样编写代码:
int threadCount = 3;
ForkJoinPool myPool = new ForkJoinPool(threadCount);
CompletableFuture cf = CompletableFuture.supplyAsync(mySup, myPool);
于 2016-04-12T10:29:41.973 回答