• 异常实例


    using System;

    using System.Collections.Generic;

    using System.Linq; using System.Text;

    //2014.3.14

    namespace _6.异常

    {

        class Program

        {

            static void Main(string[] args)

            {

                try

                {

                    Console.WriteLine("Convert之前");

                    int a = Convert.ToInt32(Console.ReadLine());

                    Console.WriteLine("Convert之后");

                }

                catch (Exception ex)

                {

                    Console.WriteLine("输入错误:"+ex.Message+"异常堆栈:"+ex.StackTrace);

                }

               

                try

                {

                    Console.WriteLine("请输入你的年龄:");

                    int s = Convert.ToInt32(Console.ReadLine());

                    string desc = GetAgeDesc(s);

                    Console.WriteLine(desc);

                }

                catch (Exception ex)

                {

                    Console.WriteLine("数据错误,"+ex.Message);

                }

                 Console.ReadKey();

            }

            static string GetAgeDesc(int age)

            {

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

                {

                    return "婴幼儿";

                }

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

                {

                    return "青少年";

                }

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

                {

                    return "成年人";

                }

                else if (age >= 60 && age < 100)

                {

                    return "老年人";

                }

                else

                {

                    throw new Exception("自己创建的ex.Message");

                }

            }

        }

    }

  • 相关阅读:
    浅析人脸检测之Haar分类器方法
    python调用网络摄像机
    jvm常用优化方案和方法
    jvm优化-垃圾收集器的类型
    jvm调优-垃圾回收算法
    JVM调优-java虚拟机内存模型及参数设置
    java NIO-Buffer
    java NIO-Channel
    java权限设置文件-java.policy
    java安全-安全管理器
  • 原文地址:https://www.cnblogs.com/gyt-xtt/p/3639037.html
Copyright © 2020-2023  润新知