java的wait(), notify()和notifyall()使用心得-亚博电竞手机版
本篇文章是对java的 wait(),notify(),notifyall()进行了详细的分析介绍,需要的朋友参考下。
wait(),notify()和notifyall()都是java.lang.object的方法:
wait(): causes the current thread to wait until another thread invokes the notify() method or the notifyall() method for this object.
notify(): wakes up a single thread that is waiting on this object’s monitor.
notifyall(): wakes up all threads that are waiting on this object’s monitor.
这三个方法,都是java语言提供的实现线程间阻塞(blocking)和控制进程内调度(inter-process communication)的底层机制。在解释如何使用前,先说明一下两点:
1. 正如java内任何对象都能成为锁(lock)一样,任何对象也都能成为条件队列(condition queue)。而这个对象里的wait(), notify()和notifyall()则是这个条件队列的固有(intrinsic)的方法。
2. 一个对象的固有锁和它的固有条件队列是相关的,为了调用对象x内条件队列的方法,你必须获得对象x的锁。这是因为等待状态条件的机制和保证状态连续性的机制是紧密的结合在一起的。
(an object’s intrinsic lock and its intrinsic condition queue are related: in order to call any of the condition queue methods on object x, you must hold the lock on x. this is because the mechanism for waiting for state-based conditions is necessarily tightly bound to the mechanism fo preserving state consistency)
根据上述两点,在调用wait(), notify()或notifyall()的时候,必须先获得锁,且状态变量须由该锁保护,而固有锁对象与固有条件队列对象又是同一个对象。也就是说,要在某个对象上执行wait,notify,先必须锁定该对象,而对应的状态变量也是由该对象锁保护的。
知道怎么使用后,我们来问下面的问题:
1. 执行wait, notify时,不获得锁会如何?
请看代码:
public static void main(string[] args) throws interruptedexception { object obj = new object(); obj.wait(); obj.notifyall(); }
执行以上代码,会抛出java.lang.illegalmonitorstateexception的异常。
2. 执行wait, notify时,不获得该对象的锁会如何?
请看代码:
public static void main(string[] args) throws interruptedexception { object obj = new object(); object lock = new object(); synchronized (lock) { obj.wait(); obj.notifyall(); } }
执行代码,同样会抛出java.lang.illegalmonitorstateexception的异常。
3. 为什么在执行wait, notify时,必须获得该对象的锁?
这是因为,如果没有锁,wait和notify有可能会产生竞态条件(race condition)。考虑以下生产者和消费者的情景:
1.1生产者检查条件(如缓存满了)-> 1.2生产者必须等待
2.1消费者消费了一个单位的缓存 -> 2.2重新设置了条件(如缓存没满) -> 2.3调用notifyall()唤醒生产者
我们希望的顺序是: 1.1->1.2->2.1->2.2->2.3
但在多线程情况下,顺序有可能是 1.1->2.1->2.2->2.3->1.2。也就是说,在生产者还没wait之前,消费者就已经notifyall了,这样的话,生产者会一直等下去。
所以,要解决这个问题,必须在wait和notifyall的时候,获得该对象的锁,以保证同步。
请看以下利用wait,notify实现的一个生产者、一个消费者和一个单位的缓存的简单模型:
public class queuebuffer { int n; boolean valueset = false; synchronized int get() { if (!valueset) try { wait(); } catch (interruptedexception e) { system.out.println("interruptedexception caught"); } system.out.println("got: " n); valueset = false; notify(); return n; } synchronized void put(int n) { if (valueset) try { wait(); } catch (interruptedexception e) { system.out.println("interruptedexception caught"); } this.n = n; valueset = true; system.out.println("put: " n); notify(); } }
public class producer implements runnable { private queuebuffer q; producer(queuebuffer q) { this.q = q; new thread(this, "producer").start(); } public void run() { int i = 0; while (true) { q.put(i ); } } }
public class consumer implements runnable { private queuebuffer q; consumer(queuebuffer q) { this.q = q; new thread(this, "consumer").start(); } public void run() { while (true) { q.get(); } } }
public class main { public static void main(string[] args) { queuebuffer q = new queuebuffer(); new producer(q); new consumer(q); system.out.println("press control-c to stop."); } }
所以,jvm通过在执行的时候抛出illegalmonitorstateexception的异常,来确保wait, notify时,获得了对象的锁,从而消除隐藏的race condition。
最后来看看一道题:写一个多线程程序,交替输出1,2,1,2,1,2……
利用wait, notify解决:
public class outputthread implements runnable { private int num; private object lock; public outputthread(int num, object lock) { super(); this.num = num; this.lock = lock; } public void run() { try { while(true){ synchronized(lock){ lock.notifyall(); lock.wait(); system.out.println(num); } } } catch (interruptedexception e) { // todo auto-generated catch block e.printstacktrace(); } } public static void main(string[] args){ final object lock = new object(); thread thread1 = new thread(new outputthread(1,lock)); thread thread2 = new thread(new outputthread(2, lock)); thread1.start(); thread2.start(); } }