我有一个静态信号量实例。
Semaphore semaphore = new Semaphore(1);
现在我有两个线程(发送线程和接收线程)
发送线程:
public class SendingThread implements Runnable {
private Semaphore semaphore;
public SendingThread(Semaphore semaphore){
this.semaphore = semaphore;
}
@Override
public void run() {
try {
System.out.println("1");
Thread.sleep(4000);
this.semaphore.acquire();
} catch (InterruptedException e) {
Thread.currentThread().interrupt();
e.printStackTrace();
}
}
}
和接收线程:
public class RecievingThread implements Runnable {
private Semaphore semaphore;
public RecievingThread(Semaphore semaphore){
this.semaphore = semaphore;
}
@Override
public void run() {
System.out.println("2");
this.semaphore.release();
System.out.println("3");
}
}
当我根据我的理解启动这两个线程时,接收线程将等待4 秒,直到发送线程通知 它接收线程可以继续。这意味着 System.out.println("3");
将延迟 4 秒打印,但是当我运行此代码时,所有三个值都会立即打印。为什么?
我错过了什么吗?