栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

【多线程练习】写一个生产者-消费者模式的多线程例子。

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

【多线程练习】写一个生产者-消费者模式的多线程例子。

 写一个生产者-消费者模式的多线程例子。

(生产和消费的资源保持一个平衡)

public class Test {
    private int count;//要求count保持在10
    public synchronized void add(){
        //生产者线程 ,当count>10,让生产者线程等待,唤醒消费者线程
        while (count>10){
            try {
                this.wait();//等待,被唤醒是才能执行下面的代码
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
        count++;
        this.notifyAll();
        System.out.println("生产了一件商品,库存剩余:"+count);
    }
    public synchronized void sub(){
        //消费线程 ,当count<10,让消费者线程等待,唤醒生产者线程
        while (count<10){
            try {
                this.wait();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
        count--;
        this.notifyAll();
        System.out.println("卖出了一件商品,库存剩余:"+count);
    }

    public static void main(String[] args) {
        Test t=new Test();
        ProductRunnable pr=new ProductRunnable(t);
        ConsummerRunnable cr=new ConsummerRunnable(t);
        new Thread(pr).start();
        new Thread(pr).start();
        new Thread(pr).start();
        new Thread(pr).start();
        new Thread(cr).start();
        new Thread(cr).start();
        new Thread(cr).start();
        new Thread(cr).start();
        new Thread(cr).start();
        new Thread(cr).start();

    }

    private static class ProductRunnable implements Runnable{
        private Test t;
        public ProductRunnable(Test t){
            this.t = t;
        }
        public void run(){//线程方法
            while(true){
                t.add();//往仓库加货物
                try {
                    Thread.sleep(1000);//设置线程休息1s
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        }

    }

    private static class ConsummerRunnable implements Runnable{
        private Test t;
        public ConsummerRunnable(Test t){
            this.t = t;
        }
        public void run(){
            while(true){
                t.sub();
                try {
                    Thread.sleep(1000);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        }
    }
}

运行结果:

 

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/736644.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号