//异常语句,平时一般不用 try {//y要包括起来的可能有错误的代码 int a = int.Parse(Console.ReadLine()); } catch (Exception ex)//抓取错误 { throw ex;//ex,存取的异常错误 Console .WriteLine ("出现的错误:"+ex .Message ); } finally//可以没有,只有try,catch { //不管程序有没有错,都会执行 Console.WriteLine ("hellow world"); } Console.ReadLine();
try
{}
catch(exception ex)
{}
finaly
{]
时间: 2024-11-01 13:44:01