码迷,mamicode.com
首页 > 其他好文 > 详细

带有返回值的 Callable 使用

时间:2014-10-09 20:44:17      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:java   jdk   多线程   线程   thread   

工作中很多涉及到多线程的地方都implemnets Runable 接口 或者是 extends Thread 抽象类,但是这样子的话得不到返回值。
如果以下场景:
     在多线程中计算值,线程结束后需要携带返回值。
这时就需要Callable接口,实现改接口后需要实现方法 call 。改接口需要ExecutorService的submit方法执行,执行结果包装在 Future<?>泛型类中。
通过Future类的get()方法取得返回值,get()是阻塞的,在线程执行前调用get()方法会一直阻塞着。
可以通过isDone()判断线程是否执行完成。


package com.afengzi.training.comcurrency;

import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.*;

/**
* Created with IntelliJ IDEA.
* User: afengzi
* Date: 14-10-9
* Time: 下午5:06
* 实现有返回值的Callable接口
*/
public class Acallable{

    public static void main(String args[]){

        ExecutorService service = Executors.newCachedThreadPool() ;
        List<Future<String>> futures = new ArrayList<Future<String>>() ;
        for (int i = 0 ; i< 5 ; i++){
            Future<String> future = service.submit(new $Call(100)) ;
            futures.add(future) ;
        }
        service.shutdown();
        System.out.println("main -- "+Thread.currentThread().getName());
        for (Future<String> future : futures){
            if (future.isDone()){
                try {
                    System.out.println(future.get());
                } catch (InterruptedException e) {
                    e.printStackTrace();
                } catch (ExecutionException e) {
                    e.printStackTrace();
                }
            }
        }
    }

    public static class $Call implements Callable<String>{
        private int index ;

        public $Call(int index){
            this.index = index ;
        }
        @Override
        public String call() throws Exception {
            int first = 1 ;
            int second = 1 ;
            int third = 0 ;
            while (true){
                third = first+second ;
                if (third > index){
                    break;
                }
                first = second ;
                second = third ;
            }
            System.out.println("sub -- "+Thread.currentThread().getName());
            return third+"" ;
        }
    }


}

带有返回值的 Callable 使用

标签:java   jdk   多线程   线程   thread   

原文地址:http://blog.csdn.net/a_fengzi_code_110/article/details/39935469

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