gpt4 book ai didi

java - 为什么会调用 ThreadPoolExecutor.run()?

转载 作者:搜寻专家 更新时间:2023-11-01 03:10:26 24 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Eclipse debugger always blocks on ThreadPoolExecutor without any obvious exception, why?

Eclipse 在 finally block 内的行下面的 run() 方法中持续暂停执行:workDone(this);

我没有在这里设置任何断点,我的应用程序似乎按预期工作。

关于为什么会发生这种情况的任何指示?

   java.util.concurrent.ThreadPoolExecutor

public void run() {
try {
Runnable task = firstTask;
firstTask = null;
while (task != null || (task = getTask()) != null) {
runTask(task);
task = null;
}
} finally {
workerDone(this);
}
}
}

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