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

十、获取异步线程返回值Callable

时间:2018-12-23 23:51:31      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:ble   tor   pool   exce   返回值   shutdown   通过   str   exe   

一、简介

异步线程的实现接口Runnable是无法获得返回结果的,而另一个接口Callable可以返回结果。并通过如Future等方式来获取异步结果。

二、代码示例

import java.util.concurrent.*;

public class CallableDemo {

    public static void main(String[] args) throws ExecutionException, InterruptedException {
        ExecutorService executorService = Executors.newFixedThreadPool(1);
        Future<String> future = executorService.submit(() -> "return value");
        System.out.println(future.get());
        executorService.shutdown();
    }
}

输出结果

return value

 

十、获取异步线程返回值Callable

标签:ble   tor   pool   exce   返回值   shutdown   通过   str   exe   

原文地址:https://www.cnblogs.com/lay2017/p/10165942.html

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