欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

c#異常處理示例分享

 更新時(shí)間:2014年04月02日 10:03:19   作者:  
這篇文章主要介紹了c#異常處理示例,需要的朋友可以參考下
復(fù)制代碼 代碼如下:

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("輸入錯(cuò)誤:"+ex.Message+"異常堆棧:"+ex.StackTrace);
            }

            try
            {
                Console.WriteLine("請(qǐng)輸入你的年齡:");
                int s = Convert.ToInt32(Console.ReadLine());
                string desc = GetAgeDesc(s);
                Console.WriteLine(desc);
            }
            catch (Exception ex)
            {
                Console.WriteLine("數(shù)據(jù)錯(cuò)誤,"+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("自己創(chuàng)建的ex.Message");
            }
        }
    }
}

相關(guān)文章

最新評(píng)論