什么是Java可调用?

时间:2014-07-25 07:10:26

标签: java android callable

标题几乎总结了它。

我想知道可调用的概念和想法。我在可调用和可运行之间的区别上读过question here。但没有人显示代码并详细说明可调用的内容。我不想知道它们之间的区别。我想知道,

  1. 什么是可赎回?

  2. 何时使用它们以及如何使用它们。

  3. 当他们采取行动时     机器人。

2 个答案:

答案 0 :(得分:5)

您可以查看example

在此示例中,Callable任务返回一秒钟后执行任务的线程的名称。我们使用Executor框架并行执行100个任务,并使用Future来获取提交任务的结果。

package com.journaldev.threads;

import java.util.ArrayList;
import java.util.Date;
import java.util.List;
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;

public class MyCallable implements Callable<String> {

    @Override
    public String call() throws Exception {
        Thread.sleep(1000);
        //return the thread name executing this callable task
        return Thread.currentThread().getName();
    }

    public static void main(String args[]){
        //Get ExecutorService from Executors utility class, thread pool size is 10
        ExecutorService executor = Executors.newFixedThreadPool(10);
        //create a list to hold the Future object associated with Callable
        List<Future<String>> list = new ArrayList<Future<String>>();
        //Create MyCallable instance
        Callable<String> callable = new MyCallable();
        for(int i=0; i< 100; i++){
            //submit Callable tasks to be executed by thread pool
            Future<String> future = executor.submit(callable);
            //add Future to the list, we can get return value using Future
            list.add(future);
        }
        for(Future<String> fut : list){
            try {
                //print the return value of Future, notice the output delay in console
                // because Future.get() waits for task to get completed
                System.out.println(new Date()+ "::"+fut.get());
            } catch (InterruptedException | ExecutionException e) {
                e.printStackTrace();
            }
        }
        //shut down the executor service now
        executor.shutdown();
    }

}

您还可以查看 Using Callable to Return Results From Runnables

答案 1 :(得分:2)

Callable 与Runnable类似,但它返回一个结果并可能抛出异常。 当您希望异步任务返回结果时使用它们。

异步计算的返回结果由Future表示。

您可以查看使用FutureTask(实现RunnableFuture和Future)实现的这个简单示例

public static void main(String[] args) {

    // providing an anonymous callable to FutureTask
    RunnableFuture<String> future = new FutureTask<String>(
            new Callable<String>() {
                @Override
                public String call() throws InterruptedException {
                    System.out.println("sleeping");
                    Thread.sleep(2000);
                    System.out.println("returning");
                    return "hello-world";
                }

            });

    Thread t = new Thread(future);
    t.start();

    try {
        // the get Waits if necessary for the computation to complete
        System.out.println(future.get());
    } catch (InterruptedException | ExecutionException e) {
        e.printStackTrace();
    }

}