Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 ForkJoinPool 中,并行构造函数是指 CPU 数还是线程数?如果它的 CPU 数量,那么如何设置 ForkJoinPool 的最大大小?
此构造函数参数代表池中的工作线程数。默认情况下,它等于 CPU 的数量,并且此默认值在大多数情况下是合理的。例如,如果同时运行多个 FJP,您可能需要更改它。
如果您要更改线程数,那么分析应用程序通常是一个好主意。实际的性能结果几乎总是与您所期望的不同。