我想知道Java如何实现join()方法来等待线程完成。根据{{3}}:
public final synchronized void [More ...] join(long millis)
throws InterruptedException {
long base = System.currentTimeMillis();
long now = 0;
if (millis < 0) {
throw new IllegalArgumentException("timeout value is negative");
}
if (millis == 0) {
while (isAlive()) {
wait(0);
}
} else {
while (isAlive()) {
long delay = millis - now;
if (delay <= 0) {
break;
}
wait(delay);
now = System.currentTimeMillis() - base;
}
}
}
调用线程在运行线程仍处于活动状态时无限期地获取正在运行的线程的监视器和wait()1160行。
我的问题是:当线程完成时,在哪里(以及谁调用)notify()或notifyAll(),以便它唤醒调用线程?
非常清楚,问题是关于 JDK / JVM 中的哪个地方被调用notify(),而不是我们的代码。
谢谢。
答案 0 :(得分:6)
notifyAll(或其本机等价物)在src/share/vm/runtime/thread.cpp中的ensure_join中调用,在当前版本的第1526行,在同一文件中从JavaThread :: exit调用。