class Demo
{
int div(int a,int b)throws Exception//在功能上通过throws的关键字声明了该功能有可能会出现问题。
{
int[] arr = new int[a];
System.out.println(arr[4]);
return a/b;
}
}
class Test9
{
public static void main(String[] args) //throws Exception
{
Demo d = new Demo();
try
{
int x = d.div(5,0);
System.out.println("x="+x);
}
catch(Exception e)
{
System.out.println("hahah:"+e.toString());
}
System.out.println("over");
}
}
请教一下,运行结果为什么会出现0呢?这条代码System.out.println("x="+x);不是不运行吗?
|
-
捕获.JPG
(10.07 KB, 下载次数: 3)
上面代码运行结果
|