java多线程join()详解
程序员文章站
2022-05-04 16:25:05
...
Thread的join方法是一个非常重要的方法。使用它的特性可以实现很多比较强大的功能。虽然在编码中很少去直接使用,但是在并发包中被大量使用,所以了解它的作用与实现是很有必要的。
public static void main(String[] args) {
Thread thread = new Thread(() -> {
try {
TimeUnit.SECONDS.sleep(2);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("thread1");
});
Thread thread2 = new Thread(() ->{
try {
TimeUnit.SECONDS.sleep(2);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("thread2");
});
thread.start();
thread2.start();
try {
thread.join();
thread2.join();
System.out.println("I am main thread");
} catch (InterruptedException e) {
e.printStackTrace();
}
}
这段代码不管怎么执行,主线程一定的输出一定在子线程输出完后输出。
说实话第一次看到这个官方解释,并不能知道join的作用,按照实际应用,我对于join的理解就是:
join某个线程A,会使当前线程B阻塞。直到线程A结束生命周期。
我们来看看源码:
看完这个方法调用我们也就明白了Join的工作原理了。
上一篇: Web后端开发知识点整理