并发设计模式系列一 同步模式之保护性暂停

保护性暂停,用在一个线程等待另一个线程的执行结果。JDK 中,join 的实现、Future 的实现,采用的就是此模式。

 

class GuardedObject{
    private final Object lock=new Object();
    private Object response;
    public Object get() throws Exception{
        synchronized (lock){
            while (response==null){
                lock.wait();
            }
            return response;
        }
    }

    public Object get(long timeout) throws Exception{
        synchronized (lock){
            long start=System.currentTimeMillis();
            long duration=0L;
            while (response==null){
                timeout=timeout-duration;
                if(timeout<=0){
                    break;
                }
                lock.wait(timeout);
                duration=System.currentTimeMillis()-start;
            }
            return response;
        }
    }

    public void complate(){
        synchronized (lock){
            if (response==null){
                response=new Object();
            }
            lock.notifyAll();
        }
    }
}

join原理

public final void join() throws InterruptedException {
    join(0);
}
public final synchronized void join(long millis)
throws InterruptedException {
    long base = System.currentTimeMillis();
    long now = 0;

    if (millis < 0) {
        throw new IllegalArgumentException("timeout value is negative");
    }

    if (millis == 0) {
        while (isAlive()) {
            wait(0);
        }
    } else {
        while (isAlive()) {
            long delay = millis - now;
            if (delay <= 0) {
                break;
            }
            wait(delay);
            now = System.currentTimeMillis() - base;
        }
    }
}

调用者轮询检查线程 alive 状态,join 体现的是保护性暂停模式。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值