1 //异常语句:try...catch...finally 2 //try:尝试里面是否有错误 3 //catch:发现try里边有错误,就立即执行 4 //finally:不管前面有没有错,都会执行 5 Console.Write("请输入一个整数:"); 6 try 7 { 8 int a = int.Parse(Console.ReadLine()); 9 Console.WriteLine("程序无问题"); 10 } 11 catch 12 { 13 14 Console.WriteLine("程序出错"); 15 } 16 finally 17 { 18 Console.WriteLine("感谢您的使用"); 19 } 20 Console.ReadLine();
时间: 2024-10-09 17:26:39