gpt4 book ai didi

java - 如何在 Java 中修复此死锁代码?

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:03:30 25 4
gpt4 key购买 nike

<分区>

我从 oracle 得到了这个死锁示例代码。

class Thread_Test {
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();
}
}

如果我像下面这样更改函数 bow,我可以解决死锁问题。

public void bow(Friend bower) {
synchronized(this) {
System.out.format("%s: %s" + " has bowed to me!%n", this.name, bower.getName());
}
bower.bowBack(this);
}

我可以使用其他方法来解决这个死锁问题吗?

特别是,我想知道 Thread.sleep() 是否可以作为死锁的解决方案以及如何使用它。

你能告诉我 Thread.sleep() 和其他方法的可能性吗?

非常感谢

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com