手写FutureTask

感情迁移 提交于 2019-11-26 12:46:33

首先继承 Runnable  Future 接口然后实现  我们只需要 用到run() 和get()方法就可以其它不用看
 this.wait(); 调用这个方法让它阻塞,一致等到结果 然后调用notifyAll() 唤醒线程.
import java.util.concurrent.*;

public class JxdFutureTask<V> implements Runnable, Future<V> {

    Callable<V> callable;
    V result = null;

    //构造方法
    public JxdFutureTask(Callable<V> callable) {
        this.callable = callable;
    }

    @Override
    public void run() {
        try {
            result =this.callable.call();
            synchronized (this){
                this.notifyAll();//唤醒阻塞等待的线程
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    //需要实现,跑业务
    @Override
    public boolean cancel(boolean mayInterruptIfRunning) {
        return false;
    }

    @Override
    public boolean isCancelled() {
        return false;
    }

    @Override
    public boolean isDone() {
        return false;
    }

    @Override
    public V get() throws InterruptedException, ExecutionException {
        return null;
    }


    /**
     * 处理返回结果
     */
    @Override
    public V get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException {
        if (null != result) {
            return result;
        }
        //否则的话让它阻塞等待结果
        synchronized (this){
           this.wait();
        }
        //执行到这里标识被唤醒 ,被唤醒意味着有值了
        return result;
    }
}
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!