本帖最后由 zclove898 于 2011-12-12 22:49 编辑
看一下这个程序:
class Demo
{
int div(int a,int b)throws Exception
{
return a/b;
}
}
class Exception
{
public static void main(String[] args)throws Exception
{
Demo d=new Demo();
int x=d.div(4,0);
Systim.out.println("x="+x);
Systm.out.println("over)";
}
}
这个程序中,主函数main(String[] agrs)后加上throws Exception与不加运行结果是一样的,问:加上throw Exception有什么作用 |