本帖最后由 --_.Is’攸稀 于 2013-11-2 16:26 编辑
class Demo{ int div(int a,int b)
{
return a/b;
}
}
class ExceptionDemo{
public static void main(String[] args) {
Demo d =new Demo();
try{
int x=d.div(4, 0);
System.out.print("x="+x);
}
catch(Exception e)
{
System.out.println("除0啦");
}
System.out.println("over");
}
}
//有这个try{}catch(){}跟没有的区别是有的话可以自己处理这个异常,然//后继续执行,没有的话就程序出错误提示后就直接停了这样嘛吗?
//还有就是try里面的范围是怎么定的?
|