Java 代码中的死锁,使用 Semaphore 和 acquire(int)
2022-09-04 22:36:11
我有以下Java代码:
import java.util.concurrent.*;
class Foo{
static Semaphore s = new Semaphore(1);
public void fun(final char c, final int r){
new Thread(new Runnable(){
public void run(){
try{
s.acquire(r);
System.out.println(c+"_"+r);
s.release(r+1);
} catch(Exception e){ e.printStackTrace(); }
}
}).start();
}
}
class ths{
public static void main(String[]args) throws Exception{
Foo f = new Foo();
f.fun('B',2);
f.fun('F',6);
f.fun('A',1);
f.fun('C',3);
f.fun('D',4);
f.fun('E',5);
}
}
理想情况下,这应该按顺序F_6打印A_1并退出,但由于某种原因,这种情况不会发生。它通常会打印A_1和B_2然后卡住。
我找不到我的代码有任何明显的错误。有什么建议吗?