c# 异常处理 try catch finally语句处理
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Test04
{
class Program
{
static void Main(string[] args)
{
string str = “用一生下载你”; //声明一个string类型的变量str
object obj = str; //声明一个object类型的变量obj
try //使用try…catch语句
{
int i = (int)obj; //将obj强制转换成int类型
}
catch (Exception ex) //获取异常
{
Console.WriteLine(ex.Message); //输出异常信息
}
finally //finally语句
{
Console.WriteLine(“程序执行完毕…”); //输出“程序执行完毕…”
}
Console.ReadLine();
}
}
}
using System;
class MyException
{
public static void Main()
{
int x = 0;
int div = 0;
try
{
div = 100 / x;
Console.WriteLine(“此行未执行”);
}
catch (DivideByZeroException)
{
Console.WriteLine(“发生异常”);
}
Console.WriteLine(KaTeX parse error: Expected 'EOF', got '}' at position 19: …为 {div}"); }̲ } using System…“结果为 {div}”);
}
}