//自定义异常,必须继承父类异常,如果要定义多个异常呢,还是向下面每个自定义异常都要封装吗
//还是在一个类中定义,
class FuShuException extends Exception //
{
private int value;
FuShuException()
{
super();
}
FuShuException(String msg,int value)
{
super(msg);//调用父类方法,运行的是父类方法,再抛出异常的时候。还是从父类中调用的吗?
this.value = value;
}
public int getValue()
{
return value;
}
}
class Demo
{
int div(int a,int b)throws FuShuException//这里可不可以抛出他的父类异常,解释下
{
if(b<0)//这里b=0也不好吧
throw new FuShuException("出现了除数是负数的情况------ / by fushu",b);//
return a/b;
}
}
class ExceptionDemo3
{
public static void main(String[] args)
{
Demo d = new Demo();
try
{
int x = d.div(4,-9);
System.out.println("x="+x);
}
catch (FuShuException e)
{
System.out.println(e.toString());
System.out.println("错误的负数是:"+e.getValue());
}
System.out.println("over");
}
}
|
|