个性化阅读
专注于IT技术分析

C#用户定义的异常

C#允许我们创建用户定义的或自定义的异常。它用于产生有意义的异常。为此,我们需要继承Exception类。

C#用户定义的异常示例

using System;
public class InvalidAgeException : Exception
{
    public InvalidAgeException(String message)
        : base(message)
    {

    }
}
public class TestUserDefinedException
{
    static void validate(int age)
    {
        if (age < 18)
        {
            throw new InvalidAgeException("Sorry, Age must be greater than 18");
        }
    }
    public static void Main(string[] args)
    {
        try
        {
            validate(12);
        }
        catch (InvalidAgeException e) { Console.WriteLine(e); }
        Console.WriteLine("Rest of the code");
    }
}

输出:

InvalidAgeException: Sorry, Age must be greater than 18
Rest of the code
赞(0)
未经允许不得转载:srcmini » C#用户定义的异常

评论 抢沙发

评论前必须登录!