zoukankan      html  css  js  c++  java
  • C#学习笔记六异常

    异常

     

    using System;

    using System.Collections.Generic;

    using System.Linq;

    using System.Text;

     

    namespace 异常

    {

        class Program

        {

            static void Main(string[] args)

            {

                try

                {

                    int i = Convert.ToInt32("abc");

                }

                catch (Exception e)

                {

                    Console.WriteLine("发生错误:" + e.Message + "\n异常堆栈:" + e.StackTrace);//这样就可以直接打印出发生异常的原因和位置

                }

                Console.ReadKey();

            }

        }

    }

     

     

     

    namespace 抛出自己的异常

    {

        class Program

        {

            static void Main(string[] args)

            {

                try

                {

                    string desc = AgeDescribe(300);

                }

                catch(Exception e)

                {

                    Console.WriteLine(e.Message);

                }

            }

            static string AgeDescribe(int age)

            {

                if (age >= 0 && age < 3)

                {

                    return "婴儿";

                }

                else if (age >= 3 && age < 18)

                {

                    return "青少年";

                }

                else if (age >= 18 && age < 150)

                {

                    return "成年人";

                }

                else if (age >= 150)

                {

                    throw new Exception("你是神仙吧!");

                }

                else if (age < 0)

                {

                    throw new Exception("你来自反物质吧!");

                }

                return "0";

            }

           

        }

    }

  • 相关阅读:
    vbox增加磁盘
    PMP第五版第一次考试相关提醒
    PMP学习系列7:PMBOK(5th)第五章:项目范围管理
    PMP学习系列6:PMBOK(5th)第四章-项目整合管理
    Readlist & AIM1
    如何高校管理你的时间
    PMP学习系列5:PMBOK(5th)第三章-项目管理过程
    PMP学习系列4:PMBOK(5th)第二章-组织影响和项目生命周期
    沃顿商学院最受欢迎的谈判课
    PMP学习系列3:PMBOK(5th)第一章-引言
  • 原文地址:https://www.cnblogs.com/tangzhengyue/p/2152396.html
Copyright © 2011-2022 走看看