zoukankan      html  css  js  c++  java
  • C#异步编程之:(三)使用TaskScheduler.UnobservedTaskException

    不多解释,抄书了:

    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();
            }
        }
    }
    


  • 相关阅读:
    怎样解决Script error报错问题
    怎样监听页面加载完成事件
    怎样推迟某个函数的执行
    怎样获取网页加载到现在的时间
    怎样获取用户当前选中的文本
    怎样调出打印界面
    怎样取余或取整
    怎样让元素节点滚动到特定位置
    怎样将页面滚动至特定位置
    怎样移动浏览器窗口位置
  • 原文地址:https://www.cnblogs.com/puncha/p/3877013.html
Copyright © 2011-2022 走看看