系统相关
首页 > 系统相关> > 调试时为什么未处理的异常不会终止进程?

调试时为什么未处理的异常不会终止进程?

作者:互联网

这是我之前几次注意到的行为,我想知道其背后的原因.如果在(Visual Studio 2008)调试器下运行以下程序,则无论您继续调试的频率如何,调试器都会在throw语句上不断中断.您必须停止调试才能到达那里.我希望调试器中断一次,然后如果您在没有调试器的情况下运行该程序,进程将终止.有人知道这种行为的充分理由吗?

using System;

namespace ExceptionTest
{
   static internal class Program
   {
      static internal void Main()
      {
         try
         {
            throw new Exception();
         }
         catch (Exception exception)
         {
            Console.WriteLine(exception.Message);

            // The debuger  will never go beyond
            // the throw statement and terminate
            // the process. Why?
            throw;
         }
      }
   }
}

解决方法:

跨过未处理的异常将终止该过程-可能只是为了阻止您在不想要的时候意外终止该过程.

如果异常是在其他地方处理的(例如在通用外部try-catch块中),则您将能够跳过该异常,调试器会将您带到处理该异常的地方.

标签:unhandled-exception,debugging,c,net,visual-studio
来源: https://codeday.me/bug/20191210/2101880.html