자바 이상 및 finally 인 스 턴 스 분석
코드 는 다음 과 같 습 니 다:
package test1;
public class EmbededFinally {
public static void main(String args[]) {
int result;
try {
System.out.println("in Level 1");
try {
System.out.println("in Level 2");
// result=100/0; //Level 2
try {
System.out.println("in Level 3");
result=100/0; //Level 3
}
catch (Exception e) {
System.out.println("Level 3:" + e.getClass().toString());
}
finally {
System.out.println("In Level 3 finally");
}
// result=100/0; //Level 2
}
catch (Exception e) {
System.out.println("Level 2:" + e.getClass().toString());
}
finally {
System.out.println("In Level 2 finally");
}
// result = 100 / 0; //level 1
}
catch (Exception e) {
System.out.println("Level 1:" + e.getClass().toString());
}
finally {
System.out.println("In Level 1 finally");
}
}
}
위의 그림 과 같이 실행 결과:
코드 에 대한 분석:앞의 세 줄 의 출력 결 과 는 try 에서 세 개의 정상 적 인 출력 문 구 였 고 마지막 에 by zero 오 류 를 던 졌 습 니 다.그리고 catch 문장 으로 이 문장 을 포착 하고 출력 했다.그러나 뒤에 있 는 catch 문구 가 실행 되 지 않 고 finally 문 구 를 직접 실행 한 것 을 발견 할 수 있 습 니 다.finally 문 구 는 코드 에서 출력 하 는 논 리 를 바 꾸 었 음 을 설명 합 니 다.다만 구체 적 인 원인 은 명확 하지 않다.
마지막 으로 작은 질문 을 하 겠 습 니 다.finally 문 구 는 반드시 실 행 됩 니까?
제 가 먼저 대답 하 겠 습 니 다.finally 전에 exit 를 사용 하고 프로그램 을 종료 하면 finally 문 구 는 실행 되 지 않 습 니 다.
예 를 들 어 우 리 는 다음 과 같은 테스트 코드 를 사용한다.
package test1;
public class SystemExitAndFinally {
public static void main(String[] args)
{
try{
System.out.println("in main");
throw new Exception("Exception is thrown in main");
//System.exit(0);
}
catch(Exception e)
{
System.out.println(e.getMessage());
System.exit(0);
}
finally
{
System.out.println("in finally");
}
}
}
실행 결 과 는 그림 과 같 습 니 다.finally 뒤의 문 구 는 출력 되 지 않 았 고 프로그램 을 종료 하기 전의 문 구 는 아무런 영향 을 주지 않 았 음 을 알 수 있 습 니 다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.