作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
CompletableFuture.runAsync
文档说明:
Returns a new CompletableFuture that is asynchronously completed by a task running in the
ForkJoinPool.commonPool()
after it runs the given action.
但是,据我所知,runAsync
只向ForkJoinPool.commonPool()
提交任务当ForkJoinPool.getCommonPoolParallelism() > 1
。如果没有,它会手动创建一个新的 Thread
对于每个提交的任务。
为什么会出现这种情况?
最佳答案
是的,如果 ForkJoinPool 并行度小于 2,则为每个任务创建新线程 here
All async methods without an explicit Executor argument are performed using the ForkJoinPool.commonPool() (unless it does not support a parallelism level of at least two, in which case, a new Thread is created to run each task).
关于java - 为什么 CompletableFuture.runAsync() 并不总是提交给 ForkJoinPool.commonPool()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59426187/
我是一名优秀的程序员,十分优秀!