gpt4 book ai didi

java - 如果我调用 return 会发生什么;从可运行?

转载 作者:行者123 更新时间:2023-11-29 07:39:58 26 4
gpt4 key购买 nike

我有 Java Runnable,我正在其中实现 run() 方法。在该运行方法中与服务器建立了一些连接,当它失败时,我对线程执行不再感兴趣,我想退出它。我做这样的事情:

class MyRunnable implements Runnable {
@Override
public void run() {
// connect to server here
if (it failed) {
return;
}

// do something else
}
}

现在我使用我自己的线程工厂将这个 runnable 提交到 Executors.cachedThreadPool() 中,它基本上没有做任何新的事情。

我可以安全地从那样的 runnable 返回吗?

我查看了 jvisualvm,发现线程池中有一个线程 + 有一些线程正在与服务器逻辑的连接中执行,当我返回时,我看到这些连接线程已停止,它们确实留在名单,但他们是白人......

最佳答案

您不是在向执行器提交线程,而是在向其提交 Runnable。在 Runnable 中调用 return 不会导致执行它的线程终止。编写执行器以便它可以以 Runnable 的形式运行多个任务,当 Runnable 完成执行时(无论它是否提前返回或其他)线程继续,并从其排队提交的任务中获取更多工作。

这是 ThreadPoolExecutor#runWorker 方法中的代码。显示 task.run() 的行是工作线程执行任务的地方,当您的任务返回时,工作线程的执行从那里继续进行。

final void runWorker(Worker w) {
Thread wt = Thread.currentThread();
Runnable task = w.firstTask;
w.firstTask = null;
w.unlock(); // allow interrupts
boolean completedAbruptly = true;
try {
while (task != null || (task = getTask()) != null) {
w.lock();
// If pool is stopping, ensure thread is interrupted;
// if not, ensure thread is not interrupted. This
// requires a recheck in second case to deal with
// shutdownNow race while clearing interrupt
if ((runStateAtLeast(ctl.get(), STOP) ||
(Thread.interrupted() &&
runStateAtLeast(ctl.get(), STOP))) &&
!wt.isInterrupted())
wt.interrupt();
try {
beforeExecute(wt, task);
Throwable thrown = null;
try {
task.run();
} catch (RuntimeException x) {
thrown = x; throw x;
} catch (Error x) {
thrown = x; throw x;
} catch (Throwable x) {
thrown = x; throw new Error(x);
} finally {
afterExecute(task, thrown);
}
} finally {
task = null;
w.completedTasks++;
w.unlock();
}
}
completedAbruptly = false;
} finally {
processWorkerExit(w, completedAbruptly);
}
}

关于java - 如果我调用 return 会发生什么;从可运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31347657/

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