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.println("x="+x);
}
catch(Exception e)
{
System.out.println("除零了");
}
System.out.println("over");
}
}
这段代码和老师视频上讲得事一样的,为什么老师的没问题,而我的却显示
E:\>javac ExceptionDemo.java
ExceptionDemo.java:19: 不兼容的类型
找到: Exception
需要: java.lang.Throwable
catch(Exception e)
^ |
|