如果线程的wait比notify先执行,那么程序就死了,怎么才能解决这个问题?
public class AaaTest {
public static void main(String[] args) throws InterruptedException {
Object obj=new Object();
Ttt ttt=new Ttt(obj);
ttt.start();
synchronized(obj){
obj.wait();
}
System.out.println("wait先执行,程序通过");
}
static class Ttt extends Thread{
Object obj;
Ttt(Object obj){
this.obj=obj;
}
public void run() {
synchronized(obj){
obj.notify();
}
}
}
}
这样是否能够100%保证 obj.wait(); 在 obj.notify(); 之前执行?
守着星空守着你
慕容708150
相关分类