0%

java | join 原理

join 是等待线程终止。它的原理和 java | 设计模式 同步模式-保护性暂停 优化 超时 等待线程超时是一样的。

源码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
public final synchronized void 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;
}
}
}

java | 设计模式 同步模式-保护性暂停 优化 超时 是一样的原理。

请我喝杯咖啡吧~