基于Java多线程notify与notifyall的区别分析
程序员文章站
2023-12-11 19:23:46
当一个线程进入wait之后,就必须等其他线程notify/notifyall,使用notifyall,可以唤醒所有处于wait状态的线程,使其重新进入锁的争夺队列中,而no...
当一个线程进入wait之后,就必须等其他线程notify/notifyall,使用notifyall,可以唤醒
所有处于wait状态的线程,使其重新进入锁的争夺队列中,而notify只能唤醒一个。注意,任何时候只有一个线程可以获得锁,也就是说只有一个线程可以运行synchronized 中的代码,notifyall只是让处于wait的线程重新拥有锁的争夺权,但是只会有一个获得锁并执行。
那么notify和notifyall在效果上又什么实质区别呢?
主要的效果区别是notify用得不好容易导致死锁,例如下面提到的例子。
复制代码 代码如下:
public synchronized void put(object o) {
while (buf.size()==max_size) {
wait(); // called if the buffer is full (try/catch removed for brevity)
}
buf.add(o);
notify(); // called in case there are any getters or putters waiting
}
复制代码 代码如下:
public synchronized object get() {
// y: this is where c2 tries to acquire the lock (i.e. at the beginning of the method)
while (buf.size()==0) {
wait(); // called if the buffer is empty (try/catch removed for brevity)
// x: this is where c1 tries to re-acquire the lock (see below)
}
object o = buf.remove(0);
notify(); // called if there are any getters or putters waiting
return o;
}
所以除非你非常确定notify没有问题,大部分情况还是是用notifyall。
更多详细的介绍可以参看:
推荐阅读
-
基于Java多线程notify与notifyall的区别分析
-
Java方法的覆盖与隐藏的区别分析
-
基于Java的打包jar、war、ear包的作用与区别详解
-
基于java中stack与heap的区别,java中的垃圾回收机制的相关介绍
-
java与c语言的区别有哪些(全面分析这3个基本区别)
-
java与c语言的区别有哪些(全面分析这3个基本区别)
-
C#命名空间与java包的区别分析
-
Java中实现多线程继承Thread类与实现Runnable接口的区别
-
notify与notifyAll的区别
-
Java多线程的wait(),notify(),notifyAll()、sleep()和yield()方法使用详解