JavaSE 基础 第62节 生产者消费者模型

2016-07-02

package com.java1995;

import java.util.List;

/**
 * 生产者
 * 
 * @author Administrator
 *
 */
public class Producer extends Thread {

    private List<Integer> list;
    private int max;

    // 构造方法
    public Producer(String name, int max, List<Integer> list) {
        super(name);
        this.max = max;
        this.list = list;
    }

    public void run() {

        while (true) {

            synchronized (list) {
                while (list.size() == max) {
                    System.out.println("仓库已满");
                    try {
                        list.wait();// 线程挂起
                    } catch (InterruptedException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                }
                // 后面的程序
                int num = (int) (Math.random() * 100);
                list.add(num);
                System.out.println(this.getName() + "生产了:" + num);
                // 生产者通知消费者有库存,可以消费
                list.notifyAll();
            }
        }
    }

}

 

package com.java1995;

import java.util.List;

/**
 * 消费者
 * 
 * @author Administrator
 *
 */
public class Consumer extends Thread {

    private List<Integer> list;
    private int max;

    public Consumer(String name, int max, List<Integer> list) {
        super(name);
        this.max = max;
        this.list = list;
    }

    public void run() {
        while (true) {
            synchronized (list) {
                while (list.isEmpty()) {
                    System.out.println("仓库空了");
                    try {
                        list.wait();
                    } catch (InterruptedException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                }
                System.out.println(this.getName() + "正在消费:" + list.get(list.size() - 1));
                list.remove(list.size() - 1);
                // 消费者通知生产者,仓库已空
                list.notifyAll();
                ;
            }
        }
    }

}

 

package com.java1995;

import java.util.ArrayList;
import java.util.List;

/**
 * 测试类
 * 
 * @author Administrator
 *
 */
public class Test {

    public static void main(String[] args) {
        List<Integer> list = new ArrayList<Integer>();
        int max = 100;

        Producer p = new Producer("生产者", max, list);
        Consumer c = new Consumer("消费者", max, list);

        p.start();
        c.start();
    }

}

 

【参考资料】

[1] Java轻松入门经典教程【完整版】

转载于:https://www.cnblogs.com/cenliang/p/5635771.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值