当该异常发生时,希望程序停止。因为在运行时,出现了无法继续运算的情况,希望停止程序后,对代码进行修正。
自定义异常时,如果该异常的发生,无法再继续进行运算,
就让自定义异常继承RuntimeException.
对于异常分两种:
1,在编译时被检测的异常。
函数内容抛,函数上抛,调用者要么抛 要么捕获。
2,编译时不被检测到的异常(运行时异常。RuntimeException以及其子类)
函数内容抛就可以了
class FushuException extends RuntimeException
{
FushuException(String msg)
{
super(msg);
}
}
class Demo
{
int div(int a,int,b)
if(b<0)
throw new FushuException("出现了除数为负数了");
}
class ExceptionDemo4
{
public static void main(String[] args)
{
Demo d = new Demo();
int x=div(4,-1);
System.out.println("x="+x);
System.out.println("over");
}
}