8
new Thread(new Runnable() {
           public void run() {
                 .............
                 .............
                 .............
    }
}).start();

如果我将在 main 中执行此操作,它将创建一个新线程并向其提交一个任务以进行异步计算。

如果您看到 FutureTask文档,它还会显示:

可取消的异步计算。此类提供 Future 的基本实现,包括启动和取消计算、查询计算是否完成以及检索计算结果的方法。

那么它如何FutureTaskasynchronous computation内部创建线程并提交我们在实例化时给它的任务,FutureTask例如:

FutureTask f = new FutureTask(new MyCallable());

否则它不能是异步计算,请提供FutureTask 源代码 中的代码片段,它将任务提交给线程,使其成为异步计算。谢谢。


我得到了答案。它基本上是试图在与调用者相同的线程中运行任务。在给定的代码中非常明显:

当您调用futureTask.run()它时,它只是调用sync.innerRun();并且sync是内部类的实例Sync。因为它只是调用call()同一线程中的可调用对象。

void innerRun() {
        if (!compareAndSetState(READY, RUNNING))
            return;

        runner = Thread.currentThread(); //here it is getting the current thread
        if (getState() == RUNNING) { 
            V result;
            try {
                result = callable.call();//here calling call which executes in the caller thread.
            } catch (Throwable ex) {
                setException(ex);
                return;
            }
            set(result);
        } else {
            releaseShared(0); // cancel
        }
    }
4

1 回答 1

8

那么 FutureTask 如何是一个异步计算,它是否在内部创建线程并提交我们在实例化 FutureTask 时给它的任务,例如:

FutureTask不是为用户直接使用而设计的。它被设计为通过ExecutorService接口和实现它的类来使用。正是那些使用FutureTask和派生线程等的类。您可能需要阅读有关如何使用ExecutorService并发类的更多信息。

该类ThreadPoolExecutor是实际管理池中线程的主要类。通常你调用Executors.newCachedThreadPool()Executors.newFixedThreadPool(10)获取它的一个实例。

// create a thread pool with 10 workers
ExecutorService threadPool = Executors.newFixedThreadPool(10);
// define your jobs somehow
for (MyCallable job : jobsToDo) {
    // under the covers this creates a FutureTask instance
    Future future = threadPool.submit(job);
    // save the future if necessary in a collection or something
}
// once we have submitted all jobs to the thread pool, it should be shutdown
threadPool.shutdown();
// now we can go back and call `future.get()` to get the results from our jobs

从学术的角度来看,在 TPE 扩展的背后AbstractExecutorService,您可以看到FutureTask用于管理线程池中的任务的类:

public <T> Future<T> submit(Callable<T> task) {
    if (task == null) throw new NullPointerException();
    RunnableFuture<T> ftask = newTaskFor(task);
    execute(ftask);
    return ftask;
}
...
protected <T> RunnableFuture<T> newTaskFor(Callable<T> callable) {
    return new FutureTask<T>(callable);
}

TPE 内部的代码非常复杂,显示执行异步调用的“代码段”并不容易。TPE 查看是否需要向池中添加更多线程。将它提交到一个可以拒绝它或接受它的任务队列,然后线程将任务出列并在后台运行它们。

于 2013-11-04T13:20:45.957 回答