码迷,mamicode.com
首页 > Windows程序 > 详细

C#异常语句

时间:2014-12-14 19:54:42      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:style   io   ar   color   sp   on   bs   代码   ad   

try: 用于检查发生的异常,并帮助发送任何可能的异常。
catch: 以控制权更大的方式处理错误,可以有多个catch子句。
finally :无论是否引发了异常,finally的代码块都将被执行。

 

                int i;
                try
                {
                    string s = Console.ReadLine();
                    i = int.Parse(s);                
                    Console.WriteLine(i);
                }
                catch (Exception a)
                {
                    Console.WriteLine(a.Message);
                }
                finally//不管前面代码有没有错都会执行finally的内容
                {
                    Console.WriteLine("啦啦啦");
                }

C#异常语句

标签:style   io   ar   color   sp   on   bs   代码   ad   

原文地址:http://www.cnblogs.com/2041388565m/p/4162877.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!