理解synchronized

理解线程synchronized
参考

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// WaitTest.java的源码
class ThreadA extends Thread{

public ThreadA(String name) {
super(name);
}

public void run() {
synchronized (this) {
System.out.println(Thread.currentThread().getName()+" call notify()");
// 唤醒当前的wait线程
notify();
}
}
}

public class WaitTest {

public static void main(String[] args) {

ThreadA t1 = new ThreadA("t1");

synchronized(t1) {
try {
// 启动“线程t1”
System.out.println(Thread.currentThread().getName()+" start t1");
t1.start();

// 主线程等待t1通过notify()唤醒。
System.out.println(Thread.currentThread().getName()+" wait()");
t1.wait();

System.out.println(Thread.currentThread().getName()+" continue");
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}

线程获取锁要清楚获取的是对象锁,还是类的锁。同步方法,同步静态方法,同步代码块的区别。锁的释放时机,wait的时候会释放对象或者类锁,而notify会重新试图获取锁。

锁流程