同步在 Java 中的工作原理
2022-09-02 20:17:10
首先,下面是一个示例:
public class Deadlock {
static class Friend {
private final String name;
public Friend(String name) {
this.name = name;
}
public String getName() {
return this.name;
}
public synchronized void bow(Friend bower) {
System.out.format("%s: %s has bowed to me!%n",
this.name, bower.getName());
bower.bowBack(this);
}
public synchronized void bowBack(Friend bower) {
System.out.format("%s: %s has bowed back to me!%n",
this.name, bower.getName());
}
}
public static void main(String[] args) {
final Friend alphonse = new Friend("Alphonse");
final Friend gaston = new Friend("Gaston");
new Thread(new Runnable() {
public void run() { alphonse.bow(gaston); }
}).start();
new Thread(new Runnable() {
public void run() { gaston.bow(alphonse); }
}).start();
}
}
我不明白的是堵塞是如何发生的。main 函数启动两个线程,每个线程都开始自己的弓。
“同步”究竟阻止了什么?为同一对象运行的相同函数(正如我最初认为的那样)?同一类的所有对象使用相同的函数?同一对象的所有同步函数?同一类的所有对象的所有同步函数?
帮帮我吧。