Exchange 应用1

Stella981
• 阅读 609
import java.util.concurrent.Exchanger;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;

class Cup {
    
    int waterVolume = 0;
    
    String cupName="";
    public String getCupName() {
        return cupName;
    }
    
    public void setCupName(String cupName) {
        this.cupName = cupName;
    }
    Cup(int i ,String name){
        waterVolume=i;
        cupName=name;
    }
    @Override
    public String toString() {
        // TODO Auto-generated method stub
        return cupName+"有"+waterVolume+"升水!";
    }
    public int getWaterVolume() {
        return waterVolume;
    }
    public void drinkWater(){
        waterVolume--;
    }
    public void drinkWater( int i ){
        if((waterVolume-i)>=0){
           waterVolume-=i;
        }else{
            System.out.println("没有这么多水可以喝!!!");
            return;
        }
    }
    public void addWater(){
        waterVolume++;
    }
    public void addWater(int i){
        waterVolume=i;
    }
}

class Drinker implements Runnable{
    Cup currentCup;
    Exchanger ex;
    Drinker(Exchanger ex,Cup c){
        currentCup= c;
        this.ex= ex;
    }
    @Override
    public void run() {
        //得到杯子喝水
        /*try {
            currentCup = (Cup)ex.exchange(currentCup);
        } catch (InterruptedException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }*/
        boolean flag = true;
        while(flag){
            if(currentCup.getWaterVolume() > 0){
                System.out.println("喝水者:"+currentCup);
                System.out.println("喝水者:从"+currentCup.getCupName()+"喝2升水,喝水用时1秒");
                currentCup.drinkWater(2);
                try {
                    TimeUnit.SECONDS.sleep(1);
                } catch (InterruptedException e) {
                    // TODO: handle exception
                    e.printStackTrace();
                }
            }
            if(currentCup.getWaterVolume() == 0){
                System.out.println("喝水者:"+currentCup+",水喝光了!别加了!");
                flag=false;
            }
            //服务员加完水后的杯子
            try {
                currentCup = (Cup)ex.exchange(currentCup);
            } catch (InterruptedException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
        
    }
    
}

class Waiter implements Runnable{
    Cup currentCup;
    Exchanger ex;
    Waiter(Exchanger ex,Cup c){
        currentCup= c;
        this.ex= ex;
    }
    @Override
    public void run() {
        //得到杯子加水
        /*try {
            currentCup = (Cup)ex.exchange(currentCup);
        } catch (InterruptedException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }*/
        boolean flag = true;
        while(flag){
            System.out.println("服务员:"+currentCup);
            System.out.println("服务员:倒入"+currentCup.getCupName()+"  1升水,耗时1秒");
            try {
                TimeUnit.SECONDS.sleep(1);
            } catch (InterruptedException e) {
                // TODO: handle exception
                e.printStackTrace();
            }
            currentCup.addWater();
            //得到顾客递过来的杯子
            try {
                currentCup=(Cup)ex.exchange(currentCup);
            } catch (InterruptedException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
            if(currentCup.getWaterVolume() == 0){
                System.out.println("服务员:"+currentCup+"水喝光了!!不加了!");
                flag=false;
            }
        }
        
    }
}


public class DrinkWaterDemo {
    public static void main(String[] args) {
        Cup cup1 = new Cup(3,"cup1");
        Cup cup2 = new Cup(0,"cup2");
        final Exchanger<Cup> ec = new Exchanger<Cup>();
        ExecutorService es = Executors.newFixedThreadPool(2);
        es.submit(new Waiter(ec,cup2));
        es.submit(new Drinker(ec, cup1));
        es.shutdown();
        
    }
}
点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
Wesley13 Wesley13
3年前
java将前端的json数组字符串转换为列表
记录下在前端通过ajax提交了一个json数组的字符串,在后端如何转换为列表。前端数据转化与请求varcontracts{id:'1',name:'yanggb合同1'},{id:'2',name:'yanggb合同2'},{id:'3',name:'yang
待兔 待兔
3个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Java修道之路,问鼎巅峰,我辈代码修仙法力齐天
<center<fontcolor00FF7Fsize5face"黑体"代码尽头谁为峰,一见秃头道成空。</font<center<fontcolor00FF00size5face"黑体"编程修真路破折,一步一劫渡飞升。</font众所周知,编程修真有八大境界:1.Javase练气筑基2.数据库结丹3.web前端元婴4.Jav
Souleigh ✨ Souleigh ✨
3年前
前端性能优化 - 雅虎军规
无论是在工作中,还是在面试中,web前端性能的优化都是很重要的,那么我们进行优化需要从哪些方面入手呢?可以遵循雅虎的前端优化35条军规,这样对于优化有一个比较清晰的方向.35条军规1.尽量减少HTTP请求个数——须权衡2.使用CDN(内容分发网络)3.为文件头指定Expires或CacheControl,使内容具有缓存性。4.避免空的
Stella981 Stella981
3年前
Android So动态加载 优雅实现与原理分析
背景:漫品Android客户端集成适配转换功能(基于目标识别(So库35M)和人脸识别库(5M)),导致apk体积50M左右,为优化客户端体验,决定实现So文件动态加载.!(https://oscimg.oschina.net/oscnet/00d1ff90e4b34869664fef59e3ec3fdd20b.png)点击上方“蓝字”关注我
Stella981 Stella981
3年前
CounDownLatchDemo
packagecom.my.demo;importjava.util.concurrent.CountDownLatch;importjava.util.concurrent.ExecutorService;importjava.util.concurrent.Executors;/
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
9个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这