throw关键字
作用:
可以使用throw关键字在指定的方法中抛出指定的异常
使用格式:
throw new xxxException(“异常产生的原因”)
例如:
getElement();
……
public static int getElement(int[] arr,int index) {
if(index<0 || index>arr.length-1){
throw new ArrayIndexOutOfBoundsException("数组索引越界异常")
}
}
注意:
-
throw关键字必须写在方法的内部
-
throw关键字后边new的对象必须是Exception或Exception的子类对象
-
throw关键字抛出指定的异常对象,我们就必须处理这个异常对象
throw关键字后边创建是RuntimeException或RuntimeException的子类对象,我们可以不处理,默认交给JVM处理(打印异常对象,中断程序)
throw关键字后边创建的是编译异常(写代码的时候报错),我们就必须处理这个异常,要么throws,要么try…catch