gpt4 book ai didi

c# - Task.WaitAll() 的行为如何?

转载 作者:行者123 更新时间:2023-11-30 13:45:02 32 4
gpt4 key购买 nike

我创建了一个 Task 列表,如下所示:

public void A()
{

}

public void B()
{

}

public void C()
{

}

public void Ex()
{
Task.WaitAll(Task.Factory.StartNew(A), Task.Factory.StartNew(B), Task.Factory.StartNew(C));
var p=true;
}

现在我的问题是。列表中的所有任务是一个一个执行还是并行执行。

p=true

“p”是在所有任务完成时设置还是在完成之前设置?

最佳答案

第一个问题:

Will those tasks execute one by one or asynchronously.

(在这里,我想你的意思是并发,这不完全一样)

使用 StartNew 将在当前 TaskScheduler 中运行您的任务。默认情况下,这意味着它将使用 ThreadPool,并且如果线程池中有任何可用插槽,它将并行运行。如果任务池中的所有槽都被占用,它可能会限制任务的执行以避免 CPU 不堪重负,并且任务可能不会同时执行:没有保证。

这是一个简化的解释,关于调度策略的更完整和详细的解释是explained on the TaskScheduler documentation .

作为旁注。 documentation for StartTask提到了 StartNew(Action)Run(Action) 之间的细微差别。与其他答案中所述不同,它们并不完全等同。

Starting with the .NET Framework 4.5, you can use the Task.Run(Action) method as a quick way to call StartNew(Action) with default parameters. Note, however, that there is a difference in behavior between the two methods regarding : Task.Run(Action) by default does not allow child tasks started with the TaskCreationOptions.AttachedToParent option to attach to the current Task instance, whereas StartNew(Action) does.

对于第二个问题

"p" is set when all tasks are done or before they are done?

简短的回答是肯定的。

但是,您应该考虑使用另一种方法,因为这种方法会阻塞您的线程并空闲等待。另一种方法是,如果可以的话,将控制权交还给调用者,这样线程就会被释放并可供 CPU 使用。如果运行此代码的线程是 ThreadPool 的一部分,则尤其如此。

因此,您应该更喜欢using WhenAll() .它返回一个任务,可以等待或可以调用 ContinueWith

例子:

var tasks = new Task[] {Task.Factory.StartNew(A), Task.Factory.StartNew(B), Task.Factory.StartNew(C)}; 
await Task.WhenAll(tasks);

关于c# - Task.WaitAll() 的行为如何?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32919487/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com