特牛网址导航

Java并发:生产者与消费者模型、虚假唤醒-CSDN博客

网友收藏
文章浏览阅读96次。手写生产者与消费者模型public class Again { private int num = 0; // 生产者 public synchronized void add() throws InterruptedException { // 先判断是否可以生产,条件是num==0 if (num!=0){ // 不能生产,则等待 //System.out.println(Thread.curre