java多线程 生产者消费者模式

package de.bvb;

/**
 * 生产者消费者模式
 * 通过  wait() 和 notify() 通信方法实现
 *
 */
public class Test1 {
    public static void main(String[] args) {
        Godown godown = new Godown(50);
        for (int i = 0; i < 5; i++) {
            new ProducerThread(i * 10, godown).start();
            new ConsumerThread(i * 10, godown).start();
        }
    }
}

/** 仓库 */
class Godown {
    public static final int max_size = 100; // 最大库存量
    public int currentSize; // 当前库存

    public Godown(int currentSize) {
        this.currentSize = currentSize;
    }

    // 生产指定数量的产品
    public synchronized void produce(int size) {
        try {
            while (currentSize + size > max_size) { // 不满足生产的条件
                System.out.println("要生产的产品数量" + size + "超过剩余库容量"
                        + (max_size - currentSize) + ",暂时不能执行生产任务!");
                // 当前的生产线程等待
                wait();
            }
            // 满足生产条件,则进行生产,这里简单的更改当前库存量
            currentSize += size;
            System.out.println("生产前仓储量为:" + (currentSize - size) + ";生产了"
                    + size + "个产品,现仓储量为" + currentSize);
            // 唤醒在此对象监视器上等待的所有线程
            notifyAll();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    // 消费指定数量的产品
    public synchronized void consume(int size) {
        try {
            while (currentSize < size) { // 不满足消费的条件
                System.out.println("要消费的产品数量" + size + "超过剩余库存量"
                        + (currentSize) + ",暂时不能执行消费任务!");
                // 当前的生产线程等待
                wait();
            }
            // 满足生产条件,则进行生产,这里简单的更改当前库存量
            currentSize -= size;
            System.out.println("消费前的仓储量为" + (currentSize + size) + ";已经消费了"
                    + size + "个产品,现仓储量为" + currentSize);
            // 唤醒在此对象监视器上等待的所有线程
            notifyAll();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

/** 生产者线程 */
class ProducerThread extends Thread {
    private int size;
    private Godown godown;

    public ProducerThread(int size, Godown godown) {
        super();
        this.size = size;
        this.godown = godown;
    }

    @Override
    public void run() {
        godown.produce(size);
    }
}

class ConsumerThread extends Thread {
    private int size;
    private Godown godown;

    public ConsumerThread(int size, Godown godown) {
        super();
        this.size = size;
        this.godown = godown;
    }

    @Override
    public void run() {
        godown.consume(size);
    }
}
时间: 2024-10-04 16:13:08

java多线程 生产者消费者模式的相关文章

java 多线程-生产者消费者模式-管程法

生产者消费者模式管程法通过容器中介,将数据放入和取出 wait()导致当前线程等待,直到另一个线程调用该对象的notify()或notyfyAll()方法notify()唤醒正在等待对象监视器的单个线程,notifyAll()唤醒正在等待对象监视器的所有线程 public class tuble { public static void main(String[]args) { SynContainer container=new SynContainer(); new Productor(co

Java多线程-生产者/消费者模式实现

单生产者与单消费者 示例: public class ProduceConsume { public static void main(String[] args) { String lock = new String(""); Produce produce = new Produce(lock); Consume consume = new Consume(lock); new Thread(() -> { while (true) { produce.setValue();

关于java中生产者消费者模式的理解

在说生产者消费者模式之前,我觉得有必要理解一下 Obj.wait(),与Obj.notify()方法.wait()方法是指在持有对象锁的线程调用此方法时,会释放对象锁,同时休眠本线程.notify()方法是持有相同的对象锁来唤醒休眠的线程,使其具有抢占cpu的资格.可以理解同步方法,同步方法的对象锁就是谁调用这个方法,这个对象就是对象锁. 根据李兴华老师的视频讲解,建立一个生产者类,一个消费者类,还有一个Info类,贴上代码: 1.生产者类 package com.company; /** *

多线程生产者消费者模式

闲着没事,写了个生产者消费者模式玩玩,顺便熟悉下notify的用法. package sync; public class Test { public static void main(String[] args) { Test test = new Test(); Producer producer = test.new Producer(); producer.start(); Consumer consumer = test.new Consumer(); consumer.setName

多线程生产者/消费者模式实现

参考书籍<java多线程编程核心技术> 都是基于wait/notify实现的 一个生产者和一个消费者:操作值 1 package com.qf.test10.pojo; 2 3 /** 4 * @author qf 5 * @create 2018-09-18 15:59 6 */ 7 public class Entity { 8 public static String value = ""; 9 } 1 package com.qf.test10; 2 3 impor

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 + "--" + cou

java多线程 生产者消费者案例-虚假唤醒

package com.java.juc; public class TestProductAndConsumer { public static void main(String[] args) { Clerk clerk = new Clerk(); Produce produce = new Produce(clerk); Consumer consumer = new Consumer(clerk); new Thread(produce, "线程A").start(); ne

java——利用生产者消费者模式思想实现简易版handler机制

参考教程:http://www.sohu.com/a/237792762_659256 首先介绍每一个类: 1.Message: 这个类的作用是存储一个生产者生产出来的具体的消息,就类似链表队列中的一个节点,自行定义需要存储的内容. code:消息要执行的具体动作代码 msg:消息内容 target:用来关联hadler,根本目的时为了使这几个类共享一个MessageQueue,这个很重要 2.MessageQueue: 这个类就是生产者和消费者线程需要共享的一个存储消息的队列,生产者将消息放入

[JAVA 多线程] 生产者消费者实例

正好有人问,就直接将代码记录下来. 背景:有一个仓库存储货物,存在着生产者和消费者,设计一个可以并发的实现. 设计思路:设计一个仓库类,类中保存最大的容量限制和当前的count,类中包含生产和消费的方法,并且都是synchronized. 具体代码: package com.test.tiny; public class Store { private final int MAX_SIZE; //最大 private int count; // 当前 public Store(int n) {