Java 베이스: 예외 캡처 순서

1205 단어

전재: jiq•흠's technical Blog

public voidtestException(){
int a[] = {1,2,3};int q = 0;
try{
for(int i=0;i<a.length;i++){a[i] /= q;}
}catch(ArithmeticException h){
System.out.print("ArithmeticException
"); // }catch(Exception e){ System.out.print("Exception
"); // , ArithmeticException /** * Exception * ( * ), ??? */ }finally{System.out.print("finally
");} } //<span style="color:#3333ff;">output</span> ArithmeticException finally

 *        
요점

:
비록
ArithmeticException
물려받다
Exception
하지만
ArithmeticException
이상
*포획할 때 실제로 발생하는 이 이상만 포획할 뿐 Exception이 그 부류이기 때문에
* Exception 캐치 자구를 실행합니다.
*요점2: 하지만 범위가 더 넓은 Exception의catch 문장을 catch 문장 앞에 놓으면
*catch 자구에 도달할 수 없는 오류"Unreachablecatch block for ArithmeticException.
 *                        Itis already handled by the catch block for Exception”
* 즉, 더 넓은 범위의 이상(부류)은 뒤에 두어야 합니다. 예를 들어 ClassNotFoundException과 같은 상속 관계가 없으면
*Arithmeticexception의catch 자구와는 선후 관계가 없습니다.

좋은 웹페이지 즐겨찾기