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


  • 相关阅读:
    @Autowired和@Resource的区别是什么?
    关于事务,事务的特性,spring事务的传播特性
    Java 用Freemarker完美导出word文档(带图片)
    关于 MySQL查询当天、本周,本月,上一个月的数据
    js如何使用radio
    Freemarker提供了3种加载模板目录的方法
    190707Python-MySQL
    190707Python-RabbitMQ
    190707select和selector模块
    4、kubernetes资源清单快速入门190625
  • 原文地址:https://www.cnblogs.com/puncha/p/3877013.html
Copyright © 2011-2022 走看看