zoukankan      html  css  js  c++  java
  • GUC-13 生产者和消费者案例-旧

    /*
     * 生产者和消费者案例
     */
    public class TestProductorAndConsumer {
    
        public static void main(String[] args) {
            Clerk clerk = new Clerk();
            
            Productor pro = new Productor(clerk);
            Consumer cus = new Consumer(clerk);
            
            new Thread(pro, "生产者 A").start();
            new Thread(cus, "消费者 B").start();
            
            new Thread(pro, "生产者 C").start();
            new Thread(cus, "消费者 D").start();
        }
        
    }
    
    /*//店员
    class Clerk{
        private int product = 0;
        
        //进货
        public synchronized void get(){//循环次数:0
            while(product >= 1){//为了避免虚假唤醒问题,应该总是使用在循环中
                System.out.println("产品已满!");
                
                try {
                    this.wait();
                } catch (InterruptedException e) {
                }
                
            }
            
            System.out.println(Thread.currentThread().getName() + " : " + ++product);
            this.notifyAll();
        }
        
        //卖货
        public synchronized void sale(){//product = 0; 循环次数:0
            while(product <= 0){
                System.out.println("缺货!");
                
                try {
                    this.wait();
                } catch (InterruptedException e) {
                }
            }
            
            System.out.println(Thread.currentThread().getName() + " : " + --product);
            this.notifyAll();
        }
    }
    
    //生产者
    class Productor implements Runnable{
        private Clerk clerk;
    
        public Productor(Clerk clerk) {
            this.clerk = clerk;
        }
    
        @Override
        public void run() {
            for (int i = 0; i < 20; i++) {
                try {
                    Thread.sleep(200);
                } catch (InterruptedException e) {
                }
                
                clerk.get();
            }
        }
    }
    
    //消费者
    class Consumer implements Runnable{
        private Clerk clerk;
    
        public Consumer(Clerk clerk) {
            this.clerk = clerk;
        }
    
        @Override
        public void run() {
            for (int i = 0; i < 20; i++) {
                clerk.sale();
            }
        }
    }*/
  • 相关阅读:
    Extjs的学习及MIS系统实践应用(系列文章)
    Extjs的js函数
    【VS Code】使用技巧
    【算法技巧】算法技巧记录
    【踩坑记录】vs2017 git 版本控制问题
    【IDE】解决国内下载安装vs 过慢问题
    【c#基础】.Net编译器平台
    【查看IIS站点日志】
    【项目管理】人月神话
    【c#基础】反射、元数据和动态编程
  • 原文地址:https://www.cnblogs.com/surge/p/10476337.html
Copyright © 2011-2022 走看看