wait();notify();简单例子

public class Test1{ide

/**
* @param args
*/
public static void main(String[] args) {
new Thread(new Thread1()).start();
try {
Thread.sleep(10);
} catch (InterruptedException e) {
e.printStackTrace();
}
new Thread(new Thread2()).start();
}this

private static class Thread1 implements Runnable {线程

@Override
public void run() {
// 因为这里的Thread1和下面的Thread2内部run方法要用同一对象做为监视器,咱们这里不能用this,由于在Thread2里面的this和这个Thread1的this不是同一个对象。咱们用MultiThread.class这个字节码对象,当前虚拟机里引用这个变量时,指向的都是同一个对象。
synchronized (Test1.class) {对象

System.out.println("enter thread1...");
System.out.println("thread1 is waiting");
try {
// 释放锁有两种方式,第一种方式是程序天然离开监视器的范围,也就是离开了synchronized关键字管辖的代码范围,另外一种方式就是在synchronized关键字管辖的代码内部调用监视器对象的wait方法。这里,使用wait方法释放锁。
Test1.class.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}虚拟机

System.out.println("thread1 is going on...");
System.out.println("thread1 is being over!");
}
}it

}io

private static class Thread2 implements Runnable {class

@Override
public void run() {
synchronized (Test1.class) {thread

System.out.println("enter thread2...");
System.out.println("thread2 notify other thread can release wait status..");
// 因为notify方法并不释放锁,
// 即便thread2调用下面的sleep方法休息了10毫秒,但thread1仍然不会执行,由于thread2没有释放锁,因此Thread1没法得不到锁。
//notify并不释放锁,只是告诉调用过wait方法的线程能够去参与得到锁的竞争了,但不是立刻获得锁,由于锁还在别人手里,别人还没释放。若是notify方法后面的代码还有不少,须要这些代码执行完后才会释放锁
Test1.class.notify();
System.out.println("thread2 is sleeping ten millisecond...");
try {
Thread.sleep(10);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("thread2 is going on...");
System.out.println("thread2 is being over!");
}
}变量

} }

相关文章
相关标签/搜索