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

Thead线程篇之-----多线程 实现 有返回值的功能

时间:2014-07-11 19:05:13      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:style   blog   java   color   art   for   

import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.FutureTask;


public class MyCallBack implements Callable<String>{
    private String threadName;
    public MyCallBack() {
    }
    public MyCallBack(String theadName) {
        this.threadName = theadName;
    }
    
    public String call() throws Exception {
        for (int i = 0; i < 100; i++) {
            System.out.println(threadName+"===>\t"+i);
        }
        return threadName+"\t is over";
    }
    public static void main(String[] args) {
        MyCallBack callBack = new MyCallBack("thread0");
        FutureTask<String> taskList = new FutureTask<String>(callBack);
        Thread t = new Thread(taskList);
        t.start();
        try {
            for (int i = 0; i < 100; i++) {
                System.out.println("thread1===>\t"+i);
            }
            while(!taskList.isDone()){
                    System.out.println(taskList.get());
            }
        } catch (InterruptedException e) {
            e.printStackTrace();
        } catch (ExecutionException e) {
            e.printStackTrace();
        }
    }
    
}

 

Thead线程篇之-----多线程 实现 有返回值的功能,布布扣,bubuko.com

Thead线程篇之-----多线程 实现 有返回值的功能

标签:style   blog   java   color   art   for   

原文地址:http://www.cnblogs.com/mrgong/p/3833603.html

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