首页 > 其他 > 详细

2020年9月12日 生产者与消费者问题

时间:2020-09-12 16:54:55      阅读:48      评论:0      收藏:0      [点我收藏+]
package com.guigu.test14;

public class Test14 {
    public static void main(String[] args) {
        FoodTable f = new FoodTable();
        Cook c = new Cook("厨子",f);
        Waiter w = new Waiter("服务员", f);
        
        c.start();
        w.start();
    }
}
class FoodTable{
    private static final int MAX = 3;
    private int count;
    
    public synchronized void put(){
        if(count>=MAX){
            try {
                wait();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
        count++;
        System.out.println(Thread.currentThread().getName()+"放了一盘菜,剩余:" + count);
        this.notify();    
    }
    public synchronized void take(){
        if(count<=0){
            try {
                wait();
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
        count--;
        System.out.println(Thread.currentThread().getName()+"取走一盘菜,剩余:" + count);
        this.notify();
    }
    
}
class Cook extends Thread{
    private FoodTable f;
    
    public Cook(String name, FoodTable f) {
        super(name);
        this.f = f;
    }

    @Override
    public void run() {
        while(true){
            f.put();
            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
    
}
class Waiter extends Thread{
    private FoodTable f;
    
    public Waiter(String name, FoodTable f) {
        super(name);
        this.f = f;
    }

    @Override
    public void run() {
        while(true){
            f.take();
            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
    
}

 

2020年9月12日 生产者与消费者问题

原文:https://www.cnblogs.com/douyunpeng/p/13657365.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!