Future与FutureTask区别

本文探讨了Java中的Future接口与FutureTask类的区别。Future是一个接口,而FutureTask不仅实现了Future接口,还继承了Runnable接口,允许它作为线程执行的任务。文章通过实例解释了如何使用FutureTask进行异步计算。
摘要由CSDN通过智能技术生成

Shift+Ctrl+Alt+u 生成

Future是一个接口

 boolean cancel(boolean mayInterruptIfRunning);
 boolean isCancelled();
 boolean isDone();
 get() throws InterruptedException, ExecutionException;
 get(long timeout, TimeUnit unit);
 throws InterruptedException, ExecutionException, TimeoutException;

RunnableFuture 接口 继承了Runnable, Future 接口
FutureTask 实现了RunnableFuture接口

	public FutureTask(Callable<V> callable) {
   
        if (callable == null)
            throw new NullPointerException();
        this.callable = callable;
        this.state = NEW;       // ensure visibility of callable
    }
 	public boolean cancel(boolean mayInterruptIfRunning) {
   
        if (!(state == NEW &&
              UNSAFE.compareAndSwapInt(this, stateOffset, NEW,
                  mayInterruptIfRunning ? INTERRUPTING : CANCELLED)))
            return false;
        try {
       // in case call to interrupt throws exception
            if (mayInterruptIfRunning) {
   
                try {
   
                    Thread t = runner;
                    if (t != null)
                        t.interrupt()
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值