java中Callable、FutureTask和Future接口的介绍

发布时间:2020-05-23 17:16:24 作者:鸽子
来源:亿速云 阅读:325

一. Callable接口与Runnable接口区别

创建java线程,我们经常使用两种方式:

但这两种方式有一个缺陷:在执行完任务之后无法直接获取执行结果。

1. 接口定义

1.1 Callable接口
public interface Callable<V> {
    V call() throws Exception;
}
1.2 Runnable接口
public interface Runnable {
    public abstract void run();
}

2. 区别

二. Future接口和FutureTask实现类

1. Future接口定义了5个方法

public interface Future<V> {
    boolean cancel(boolean mayInterruptIfRunning);
    boolean isCancelled();
    boolean isDone();
    V get() throws InterruptedException, ExecutionException;
    V get(long timeout, TimeUnit unit)
        throws InterruptedException, ExecutionException, TimeoutException;
}

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

public class FutureTask<V> implements RunnableFuture<V>
public interface RunnableFuture<V> extends Runnable, Future<V> {
    void run();
}

三. 基本用法举例

1. Runnable

Runnable runnable = new Runnable() {
    @Override
    public void run() {
        System.out.println("线程执行中...");
    }
};
Thread thread = new Thread(runnable);
thread.start();

2. Callable

2.1 FutureTask
Callable < Integer > callable = new Callable < Integer > () {
    @Override
    public Integer call() throws Exception {
        System.out.println("线程执行中...");
        return 100;
    }
};
FutureTask < Integer > futureTask = new FutureTask < Integer > (callable);
new Thread(futureTask).start();
// 等待1秒,让线程执行
TimeUnit.SECONDS.sleep(1);
if(futureTask.isDone()) {
    System.out.println("获取执行结果:" + futureTask.get());
}
2.2 Future
Callable < Integer > callable = new Callable < Integer > () {
    @Override
    public Integer call() throws Exception {
        System.out.println("线程执行中...");
        return 100;
    }
};
ExecutorService service = Executors.newCachedThreadPool();
Future < Integer > future = service.submit(callable);
// 等待1秒,让线程执行
TimeUnit.SECONDS.sleep(1);
if(futureTask.isDone()) {
    System.out.println("获取执行结果:" + future.get());
}

推荐阅读:
  1. Java多线程Callable和Future接口有什么区别
  2. 怎么在Java中利用Callable和Future创建线程

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

callable future futuretask

上一篇:docker容器使用方法

下一篇:php对象的序列化

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》