Java Callable接口的call方法啥时候被调用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java Callable接口的call方法啥时候被调用相关的知识,希望对你有一定的参考价值。

线程提交执行的时候就会被调用,就像run方法一样,只不过这里在未来可以得到call执行的结果

import java.util.ArrayList;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;

class TaskWithResult implements Callable<String>
private int id;
private static int count =10;
private final int time =count--;
public TaskWithResult(int id)
this.id = id;


@Override
public String call() throws Exception 
TimeUnit.MILLISECONDS.sleep(100);
return "Result of TaskWithResult : "+ id+", Time= "+time;



public class CallableDemo 

public static void main(String[] args) throws InterruptedException, ExecutionException 
 ExecutorService exec = Executors.newCachedThreadPool();
 ArrayList<Future<String>> results =new ArrayList<Future<String>>();
 for(int i=0;i<10;i++)
 results.add(exec.submit(new TaskWithResult(i)));
 
 
 for(Future<String> fs : results)
 System.out.println(fs.get());
 


参考技术A Runnable和Callable的区别:
(1)Runnable是自从java1.1就有了,而Callable是1.5之后才加上去的
(2)Callable规定的方法是call(),Runnable规定的方法是run()
(3)Callable的任务执行后可返回值,而Runnable的任务是不能返回值(是void)
(4)call方法可以抛出异常,run方法不可以
(5)运行Callable任务可以拿到一个Future对象,表示异步计算的结果。它提供了检查计算是否完成的方法,以等待计算的完成,并检索计算的结果。通过Future对象可以了解任务执行情况,可取消任务的执行,还可获取执行结果。
(6)加入线程池运行,Runnable使用ExecutorService的execute方法,Callable使用submit方法。
Callable接口也是位于java.util.concurrent包中。Callable接口的定义为:

Java代码
public interface Callable<V>

V call() throws Exception;

以上是关于Java Callable接口的call方法啥时候被调用的主要内容,如果未能解决你的问题,请参考以下文章

Java总结——通过Callable接口实现多线程,生产者消费者问题,多线下载(复制)文件

6.2Java多线程Callable接口

java基础——实现Callable接口创建线程

Java并发多线程编程——Callable和Runnable接口的区别

java 多线程-实现Callable接口

创建线程之三:实现Callable接口