码迷,mamicode.com
首页 > 编程语言 > 详细

解决Java的wait(long mills)方法不能区分其返回是由于超时还是被唤醒的问题

时间:2020-07-26 19:24:08      阅读:88      评论:0      收藏:0      [点我收藏+]

标签:div   OLE   iter   返回值   thread   begin   ati   wait   amp   

wait(long mills) 没有返回值,所以区分不了其返回是由于超时还是被唤醒,因此需要引入一个布尔变量,来表示它的返回类型。

class WaitTimeOut {
    private volatile boolean ready = false; // 如果是true,则表示是被唤醒

    public synchronized void notify0() {
        ready = true;
        notify();
    }

    public synchronized void wait0(long mills) throws InterruptedException {
        long begin = System.currentTimeMillis();
        long rest = mills;
        if (rest == 0L) {
            wait(0);
        } else {
            while (!ready && rest > 0) { // 如果被唤醒(ready为true),或超时(rest <= 0)则结束循环
                wait(rest);
                rest = mills - (System.currentTimeMillis() - begin); // 计算剩余时间
            }
            if (ready) {
                System.out.println("被唤醒");
            } else {
                System.out.println("超时退出");
            }
        }
    }

    public static void main(String[] args) {
        ExecutorService pool = Executors.newFixedThreadPool(2);
        WaitTimeOut waiter = new WaitTimeOut();
        pool.execute(() -> {
            try {
                waiter.wait0(10000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        });
        pool.execute(waiter::notify0);
    }
}

  

解决Java的wait(long mills)方法不能区分其返回是由于超时还是被唤醒的问题

标签:div   OLE   iter   返回值   thread   begin   ati   wait   amp   

原文地址:https://www.cnblogs.com/yuanyb/p/13380065.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!