java 多线程生产者消费者

2020-03-31 16:09:11来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

java 多线程生产者消费者

 

class Res {
    private String name;
    private int count = 1;
    private boolean flag;

    public synchronized void set(String name) {
        while (flag) {
            try {
                this.wait();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
        this.name = name + "--" + count++;
        System.out.println(Thread.currentThread().getName() + "...生产者..." + this.name);
        flag = true;
        this.notifyAll();
    }

    public synchronized void print() {
        while (flag) {
            System.out.println(Thread.currentThread().getName() + "......消费者......" + this.name);
            flag = false;
            this.notifyAll();
        }
    }
}

class Producer implements Runnable {
    private Res r;

    public Producer(Res r) {
        this.r = r;
    }

    @Override
    public void run() {
        while (true) {
            r.set("商品");
        }
    }
}

class Consumer implements Runnable {
    private Res r;

    public Consumer(Res r) {
        this.r = r;
    }

    @Override
    public void run() {
        while (true) {
            r.print();
        }
    }
}

public class ProducerConsumerDemo {
    public static void main(String[] args) {
        Res r = new Res();
        new Thread(new Producer(r)).start();
        new Thread(new Producer(r)).start();
        new Thread(new Consumer(r)).start();
        new Thread(new Consumer(r)).start();

    }
}
出现多个生产者消费者要用while重新判断一次标记,并使用notifyAll()唤醒所有,notify可能出现只唤醒本方线程的情况,导致所有线程都等待。

原文链接:https://www.cnblogs.com/hongxiao2020/p/12608866.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:干货系列之java注解

下一篇:java 线程间通信