您的位置:首页 > 编程语言 > C#

C#异步编程之:(三)使用TaskScheduler.UnobservedTaskException

2012-12-19 01:33 363 查看
不多解释,抄书了:

If you don’t catch AggregateException when you call a trigger method, the .NET Framework will escalate the exceptions. By default, this means that the unhandled exceptions will be thrown again when your Task is finalized and cause your program to be terminated.
Because you don’t know when the finalizer will be called, you won’t be able to predict when this will happen. But, you can override the escalation policy and supply your own code to call when an exception is escalated. You do this by adding an event handler
to the static System.Threading.Tasks.TaskScheduler.UnobservedTaskException member.

书里面的实例根本没法用,永远不会触发Task对象的析构!所以我改写了下,而且书里面是2个方法都用了,其实任何一个方法都能处理异常!

using System;
using System.Collections;
using System.Threading.Tasks;

namespace Listing_22
{
class Listing_22
{
static void Main(string[] args)
{
TaskScheduler.UnobservedTaskException +=
(object sender, UnobservedTaskExceptionEventArgs eventArgs) =>
{
// 阻止程序崩溃的方法有2种

//第一种是:
{
eventArgs.SetObserved();
Console.WriteLine("Exception handled");
}

//第二种,返回true
if (false)
{
((AggregateException)eventArgs.Exception).Handle(ex =>
{
Console.WriteLine("Exception handled");
return true;
});
}
};

RunTask();

// 不断分配内存,强制让GC收集Task对象,从而触发UnobservedTaskException
ArrayList arr = new ArrayList();
while (true)
{
char[] array = new char[100000];
arr.Add(array);
GC.Collect();
}
}

private static void RunTask()
{
new Task(() => { throw new NullReferenceException(); }).Start();
}
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐