- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
new Thread(new Runnable() {
public void run() {
.............
.............
.............
}
}).start();
如果我在 main 中执行此操作,它将创建一个新线程并向其提交任务以进行异步计算。
如果您看到 FutureTask documentation它还说:
A cancellable asynchronous computation. This class provides a base implementation of Future, with methods to start and cancel a computation, query to see if the computation is complete, and retrieve the result of the computation.
那么 FutureTask
是一个异步计算
是如何在内部创建线程并提交我们在实例化时给它的任务 FutureTask
喜欢:
FutureTask f = new FutureTask(new MyCallable());
否则不可能是异步计算,请提供FutureTask
中的代码片段source code它将任务提交给线程,使其成为异步计算。谢谢。
我得到了答案。它基本上是尝试在与调用者相同的线程中运行任务。这在给定的代码中非常明显:
当您调用 futureTask.run()
时,它只会调用 sync.innerRun();
而 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
}
}
最佳答案
So how FutureTask is an asynchronous computation does it create thread internally and submit the task that we give it at the time of instantiating FutureTask like:
FutureTask
并非设计为供用户直接使用。它旨在通过 ExecutorService
接口(interface)和实现它的类来使用。它是那些使用 FutureTask
和 fork 线程等的类。您可能需要阅读有关 how to use the ExecutorService
concurrency classes 的更多信息。 .
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 查看是否需要向池中添加更多线程。将它提交到一个任务队列,该队列可以拒绝它或接受它,然后线程使任务出队并在后台运行它们。
关于java - FutureTask 是如何进行异步计算的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19768540/
基本上我有以下代码片段, (let [task (FutureTask. fn) thr (Thread. task)] (.start thr) ;;wait for signa
我正在尝试将请求发送到服务器...直到请求没有响应我想执行一个打印整数的循环..问题是我的循环一直持续下去,如果我执行它直到 100 它会打印 100 个值并且如果直到 1000,它就会打印 1000
我正在创建一个 Java 应用程序。启动时,我的应用程序将下载所有必需的文件。我的应用程序将解析 XML 文件并从 XML 文件的 URL 下载文件。我希望我的应用程序“一步一步”下载文件,所以我使用
在 FutureTask.get 的 CancellationException 异常之后访问底层 Callable 的首选方法是什么? 我有以下代码- public class Ping imple
假设我用 Java 做了一些事情,比如: RemoteResponse response = null; try { FutureTask task new FutureTask(....);
我正在制作一些虚拟程序来了解这个 Java 类。我的定时任务调用了一个什么也不做的任务,在中断它之前给它 3 秒的时间。这是代码: FutureTask task = new FutureTask<>
new Thread(new Runnable() { public void run() { .............
这是一个非常简单的代码: FutureTask task = new FutureTask<>(new Callable(){ @Overrid
我创建了以下 FutureTask 方法来异步运行方法。 public FutureTask SendAggregateEventAsync(final com.Company.Pro
我已经实现了并发实践中描述的自定义取消逻辑。 Encapsulating nonstandard cancellation in a task with newTaskFor . 这很好用,我可以调用
我检查了 Oracle Java API,它提供了一些信息 FutureTask.isDone() 但我需要检查任务是否已完成或因任何错误而终止。isDone() 方法即使完成/终止也会返回。但我需要
我目前正试图了解如何 FutureTask.cancel(true)正在工作,这是官方文档的相关部分 If the task has already started, then the mayInte
我尝试实现一个内部方法,以便在新线程中执行以下代码 MyPojo result = null; final MyPojo result2 = result; FutureTask runnableTa
下面的代码无法编译(JDK 1.8.0_40),我无法理解为什么。 public abstract class BackgroundThread { private final Executo
我已经在网上搜索了一个星期了,但没有像这样的帖子 How do I get FutureTask to return after TimeoutException?似乎回答了我的问题。我从我的代码中提
我想为昂贵的路径查找任务设置一个 FutureTask。所以我创建了这个 Callable 类。 public class GetPath implements Callable> { pri
考虑在 Callable 实例中进行长时间运行的计算。 并且考虑到这个计算的结果可以有一定的精度取决于计算时间,即:如果任务将被取消,那么它应该返回取消之前到目前为止计算的内容(例如,我们有一个计算无
我遇到了这个令人沮丧的问题:我试图查看下面的代码中是否抛出 TimeoutException,但这种情况从未发生过。它总是打印当前时间 5 次并完成。 class MyTask1 implements
在我的可调用代码中,我使用信号通知向另一个线程通知多个结束行为。 Callable 对象与 Executor 中的 FutureTasks 一起排队。排队后也可能被取消。 现在,我的问题是,我至少依赖
我有一个应用程序,它定期提交要在专用线程中执行的任务。这些任务是 FutureTask并且线程只不过是一个无限循环,它在作业进入队列时执行作业,如果为空则进入 hibernate 状态。 有时我需要等
我是一名优秀的程序员,十分优秀!