class Test
{
public static void main(String[] args)
{
int[] arrayDemo = new int[]{3,4,5}; //Runtime 运行时异常是比较特殊的异常,不需要声明即可使用,
//该类异常不需要调用者去处理,一般也处理不了,最好程序停下来,查看
//错误,便于程序员调试。
try{
System.out.println(arrayDemo[3]);
}catch(ArrayIndexOutOfBoundsException e){ //ArrayIndexOutOfBoundsException 角标越界异常是RuntimeException
//的子类,Runtime异常也可以使用 catch 捕捉。
System.out.println("角标越界");
}
}
}
|