本帖最后由 Friendy89 于 2013-4-4 22:11 编辑
class FuShuException extends Exception
{
FuShuException(String msg)
{
super(msg);
}
}
class Demo2
{
int div(int a,int b)throws FuShuException
{
if(b<0)
throw new FuShuException("出现了除数是负数的情况 / by FuShu"); return a/b;
}
}
public class ExceptionDemo2
{
public static void main(String[] args)
{
Demo2 d=new Demo2();
try
{
int x=d.div(9, -3);
System.out.println("x="+x);
}
catch(FuShuException e)
{
System.out.println(e.toString());
System.out.println("除数出现负数了");
}
System.out.println("over");
}
}
这个函数中为什么不用定义父类方法Exception,子类就可以直接继承父类呢 |