Object中wait()、notify()、notifyAll()
解释
必须在
synchronized
修饰的方法/代码块中使用。
wait()
将当前线程持有对象的锁交出(允许其他线程持有),并进入等待状态。
notify()
唤醒某一个正在等待的线程(由某一个正在等待的线程获取锁)。
notifyAll()
通知所有正在等待的线程(所有正在等待的线程争夺一个锁),由jvm决定唤醒哪一个。
例子
并不是立即唤醒,而是等待被
synchronized
修饰的代码执行完,释放锁之后才执行,具体看下面demo
public class TestObject {
public static Object o = new Object();
public static void main(String[] args) throws InterruptedException {
Thread thread1 = new MyThread1();
Thread thread2 = new MyThread2();
thread1.start();
Thread.sleep(2000);
thread2.start();
}
static class MyThread1 extends Thread {
@Override
public void run() {
System.out.println("1 >>>> 输出A1");
synchronized (o) {
System.out.println("2 >>>> 输出A2");
try {
o.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("6 >>>> 输出A3");
}
System.out.println("7 >>>> 输出A4");
}
}
static class MyThread2 extends Thread {
@Override
public void run() {
System.out.println("3 >>>> 输出B1");
synchronized (o) {
System.out.println("4 >>>> 输出B2");
o.notify();
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("5 >>>> 输出B3");
}
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
System.out.println("8 >>>> 输出B4");
}
}
}
输出结果
1 >>>> 输出A1
2 >>>> 输出A2
3 >>>> 输出B1
4 >>>> 输出B2
5 >>>> 输出B3
6 >>>> 输出A3
7 >>>> 输出A4
8 >>>> 输出B4
思考?notify()与notifyAll()有什么区别?
这个时候就要说到锁池和等待池了。
- 锁池:通过notify方法能将等待该对象的某一个线程进入锁池,而notityAll方法能将等待该对象的所有线程都进入锁池。
- 等待池:通过调用wait方法能将当前线程进入等待池。
在锁池里的线程才有资格争夺锁。
所以notify可能会导致死锁,而notifyAll不会。
有三个字送给你,
一是“诚”,
二是“勤”,
三是“专”。
当你无比地想做成一件事,
愿意为它倾尽无数心血和努力时,
结果总不会太差。
一是“诚”,
二是“勤”,
三是“专”。
当你无比地想做成一件事,
愿意为它倾尽无数心血和努力时,
结果总不会太差。