运行以下 C# 控制台应用程序
class Program
{ static void Main(string[] args)
{ Tst();
Console.ReadLine();
}
async static Task Tst()
{
try
{
await Task.Factory.StartNew
(() =>
{
Task.Factory.StartNew
(() =>
{ throw new NullReferenceException(); }
, TaskCreationOptions.AttachedToParent
);
Task.Factory.StartNew
( () =>
{ throw new ArgumentException(); }
,TaskCreationOptions.AttachedToParent
);
}
);
}
catch (AggregateException ex)
{
// this catch will never be target
Console.WriteLine("** {0} **", ex.GetType().Name);
//****** Update1 - Start of Added code
foreach (var exc in ex.Flatten().InnerExceptions)
{
Console.WriteLine(exc.GetType().Name);
}
//****** Update1 - End of Added code
}
catch (Exception ex)
{
Console.WriteLine("## {0} ##", ex.GetType().Name);
}
}
产生输出:
** AggregateException **
不过,上面的代码复制了 “异步 - 处理多个异常”博客文章中的第一个片段,其中讲述了它:
以下代码将捕获单个 NullReferenceException 或 ArgumentException 异常(AggregateException 将被忽略)
问题出在哪里:
- 文章错了吗?
哪些代码/语句以及如何更改以正确理解它? - 我在复制文章的第一个代码片段时出错了?
- 这是由于 .NET 4.0/VS2010 Async CTP 扩展中的一个错误,我正在使用?
Update1 (响应svick 的回答)
添加代码后
//****** Update1 - Start of Added code
foreach (var exc in ex.Flatten().InnerExceptions)
{
Console.WriteLine(exc.GetType().Name);
}
//****** Update1 - End of Added code
产生的输出是:
** AggregateException **
NullReferenceException
因此,正如Matt Smith 所评论的那样:
被
AggregateException
捕获的,仅包含抛出的异常之一(NullReferenceException
取决于ArgumentException
子任务的执行顺序)
很可能,这篇文章仍然是正确的,或者至少,非常有用。我只需要了解如何更好地阅读/理解/使用它
Update2(响应svick 的回答)
执行 svick 的代码:
internal class Program
{
private static void Main(string[] args)
{
Tst();
Console.ReadLine();
}
private static async Task Tst()
{
try
{
await TaskEx.WhenAll
(
Task.Factory.StartNew
(() =>
{ throw new NullReferenceException(); }
//, TaskCreationOptions.AttachedToParent
),
Task.Factory.StartNew
(() =>
{ throw new ArgumentException(); }
//,TaskCreationOptions.AttachedToParent
)
);
}
catch (AggregateException ex)
{
// this catch will never be target
Console.WriteLine("** {0} **", ex.GetType().Name);
//****** Update1 - Start of Added code
foreach (var exc in ex.Flatten().InnerExceptions)
{
Console.WriteLine("==="+exc.GetType().Name);
}
//****** Update1 - End of Added code
}
catch (Exception ex)
{
Console.WriteLine("## {0} ##", ex.GetType().Name);
}
}
}
产生:
## NullReferenceException ##
输出。
为什么不AggregateException
生产或捕获?