我最近在oracle网站上的java教程中阅读并发。今天我读到了关于死锁/同步我能理解的一些事情。
同步:
synchronized方法:没有两个线程可以调用同一个对象的两个不同的同步方法。在给定的时间点,即使有多个其他同步方法,每个对象也会执行一个同步方法。
是我的理解。
死锁:
在下面的代码死锁闭塞但我只是不明白为什么?为什么两个线程都在等待彼此摆脱弓法?
package com.tutorial;
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();
}
}
答案 0 :(得分:3)
死锁