gpt4 book ai didi

java - ScheduledExecutorService 会根据需要创建新线程吗?

转载 作者:搜寻专家 更新时间:2023-10-30 19:43:10 26 4
gpt4 key购买 nike

我正在使用 Executors.newScheduledThreadPool()创建一个 ScheduledExecutorService , 像这样指定线程数:

int corePoolSize = 42;
ScheduledExecutorService foo = Executors.newScheduledThreadPool(corePoolSize);

根据 JavaDocs,corePoolSize 参数集

the number of threads to keep in the pool, even if they are idle.

这是否意味着此 ExecutorService 实现可能会根据需要创建超过 corePoolSize 个线程,类似于 cached thread pool

最佳答案

没有。正确答案是否定的,ScheduledExecutorService 不会生成新线程。

See answer here

关于java - ScheduledExecutorService 会根据需要创建新线程吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11197439/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com