gpt4 book ai didi

c# - WaitAll 与 WaitAny

转载 作者:太空狗 更新时间:2023-10-30 00:38:17 28 4
gpt4 key购买 nike

我对 WaitAllWaitAny 有点困惑。我试图获得异常,但是当我执行 WaitAll 时它返回异常但是当使用 WaitAny 时什么都不返回。必要的是,如果任何任务完成工作完成。他们的任何替换 WaitAny()WaitAllWhenAll 是不同的,因为我不想让所有任务都完成。喜欢

try
{
int i = 0;
Task t1 = Task.Factory.StartNew(() =>
{
i = 2 * 4;
});

Task<int> t2 = Task.Factory.StartNew(() =>
{
int a = 0;
int b = 100 / a;
return 0;
});

Task[] tasks = new Task[] { t1, t2 };
Task.WaitAny(tasks);
//Task.WaitAll(tasks);// Working

}
catch (AggregateException ae)
{
var message = ae.InnerException.Message;
Console.WriteLine(message);
}
Console.ReadLine();

最佳答案

这叫做 Unobserved Exception ,这基本上意味着 Task Parallel Library 中新创建的线程中的异常(TPL) ThreadPool,未被其他线程捕获或如上述链接所述:

While unobserved exceptions will still cause the UnobservedTaskException event to be raised (not doing so would be a breaking change), the process will not crash by default. Rather, the exception will end up getting eaten after the event is raised, regardless of whether an event handler observes the exception.

这意味着当使用 WaitAny() 时,如果其中一个任务完成且没有任何异常,则不会捕获其他任务中的异常。

关于c# - WaitAll 与 WaitAny,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42833400/

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