gpt4 book ai didi

java - 为什么由 ScheduledExecutorService.schedule() 启动的线程永远不会终止?

转载 作者:搜寻专家 更新时间:2023-10-30 21:07:59 25 4
gpt4 key购买 nike

当我通过调用 ScheduledExecutorService.schedule() 创建线程时,它在执行计划任务后永远不会终止。

例如下面的程序永远不会退出:

public static void main(String[] args) {
ScheduledFuture scheduledFuture =
Executors.newSingleThreadScheduledExecutor().schedule(new Callable() {

public Void call() {
doSomething();
return null;
}

}, 1, TimeUnit.SECONDS);
}

public static void doSomething() {
}

这是 JDK 错误,还是我错过了什么?

最佳答案

计划任务正在执行或正在等待执行。

如果任务正在等待执行,future.cancel() 将阻止它被执行(取消(真)/取消(假))。

如果任务已经在执行,future.cancel(false) 将无效。 future.cancel(true) 将中断正在执行该任务的线程。 这是否会产生任何影响取决于您,谁将执行该任务。任务可能会或可能不会响应中断,具体取决于实现。

为了使您的任务响应取消,您必须实现 doSomething() 以便它响应中断。

基本上有两种方法可以做到这一点:

1.检查逻辑中的中断标志

public void doSomething(){
stuff();
//Don't use Thread.interrupt()
if(Thread.currentThread().isInterrupted()){
// We have an interruption request, possibly a cancel request
//Stop doing what you are doing and terminate.
return;
}
doLongRunningStuff();
}

您必须偶尔检查中断标志,如果被中断,请停止您正在做的事情并返回。请务必使用 Thread.isInterrupted() 而不是 Thread.interrupt() 进行检查。

2.Act On Interrupted exception

public void doSomething(){
try{
stuff();
}catch(InterruptedException e){
// We have an interruption request, possibly a cancel request

// First, preserve Interrupted Status because InterruptedException clears the
// interrupted flag
Thread.currentThread.interrupt();

// Now stop doing your task and terminate
return;
}

doLongRunningStuff();
}

当你有任何抛出 InterruptedException 的方法时,一定要停止你正在做的事情并在抛出一个时终止。

以这种方式实现方法后,您可以调用 future.cancel(true) 来取消正在运行的任务的执行。

关于java - 为什么由 ScheduledExecutorService.schedule() 启动的线程永远不会终止?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2903342/

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