gpt4 book ai didi

java - 使用 join 和 InterruptedException 确定线程状态?

转载 作者:行者123 更新时间:2023-12-02 08:08:40 24 4
gpt4 key购买 nike

似乎这个方法接受一个线程数组,然后使用 InterruptedException 确定它们是否已完成,这对我来说似乎是合理的。

private static void waitUntilAllThreadsFinished(Thread[] threadArr) {
for(int i=0; i<threadArr.length; i++) {
try {
threadArr[i].join();
} catch (InterruptedException e) { }
log.debug("thread ["+threadArr[i].getName()+"] have completed");
}
}

最佳答案

如果您只想知道线程是否已被中断,请在thread引用上使用public boolean isInterrupted()方法。此代码尝试在每个线程完成时阻止当前线程,如果同时被中断则重试。

关于java - 使用 join 和 InterruptedException 确定线程状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7791514/

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