C#异常和异常处理

2019-10-15  本文已影响0人  86a262e62b0b

参考文档:
https://docs.microsoft.com/zh-cn/dotnet/csharp/programming-guide/exceptions/

一. 概念

二. 使用

三. 筛选

  1. 筛选想要处理的异常的一种方式是使用 catch 参数。 也可以使用异常筛选器进一步检查该异常以决定是否要对其进行处理(不修改堆栈)。 如果异常筛选器返回 false,则继续搜索处理程序:
catch (ArgumentException e) when (e.ParamName == "…")
{
}

四. 注意

可用于理解的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Project2
{
    class MyExceptionText
    {
        class MyCustomException : Exception
        {
            public MyCustomException(string msg)
            {

            }
        }

        private static void TestThrow()
        {
            MyCustomException ex = new MyCustomException("Custom exception in TestThrow()");
            throw ex;
        }

        static void Main()
        {
            System.Console.WriteLine("num = "+ h1());
            Console.ReadLine();

        }

        static int h1()
        {
            int num = 10;
            try
            {
                TestThrow();
                System.Console.WriteLine("try");
               // return num;
            }
            catch (MyCustomException ex)
            {
                System.Console.WriteLine("MyCustomException");
                
                return num+=20;
            }
            finally
            {
                if(num > 20)
                {
                    System.Console.WriteLine("num>20:"+num);
                }
                System.Console.WriteLine("finally");
                num = 100;//此处无效
            }
            return num;
        }
    }
}
上一篇 下一篇

猜你喜欢

热点阅读