java中当线程终止时,会调用自身的notifyAll方法的原理分析
例子代码
复制public class Client {
public static void main(String[] args) throws InterruptedException {
Thread thread = new Thread(() -> {
System.out.println(Thread.currentThread().getName() + " run start");
try {
Thread.sleep(3000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println(Thread.currentThread().getName() + " run end");
});
thread.start();
thread.join();
System.out.println(Thread.currentThread().getName() + " run end");
}
}
主要是关于Thread.join()方法的用法,join()方法内部也是调用的wait()方法,
将当前线程也就是main线程阻塞住,但在这个过程没有调用notify()和notifyAll()方法,
那main线程是什么时候被唤醒的呢?
原理
这里使用openjdk16的源码,其实各版本差别不大,github地址
主要源码都在 src/hotspot/share/runtime/thread.cpp 文件中
复制void Thread::call_run() {
...
this->pre_run();
this->run();
this->post_run();
...
}
void JavaThread::post_run() {
this->exit(false);
...
}
void JavaThread::exit(bool destroy_vm, ExitType exit_type) {
...
ensure_join(this);
...
}
static void ensure_join(JavaThread* thread) {
...
lock.notify_all(thread);
...
}
可以看到在线程执行结束前会调用notifyAll()方法,唤醒所有等待的线程,示例代码中的main线程就是这样被唤醒的。
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· 【自荐】一款简洁、开源的在线白板工具 Drawnix