728x90
public class Ex04 {
public static void main(String[] args) {
System.out.println(1);
System.out.println(2);
try{
System.out.println(3);
System.out.println(4);
}catch(Exception e){ //Exception이 없으므로 catch block 실행 x
System.out.println(5);
}
System.out.println(6);
}
}
728x90
'JAVA > 예제' 카테고리의 다른 글
[JAVA] ch08-06. 예외 처리 6 (0) | 2017.08.22 |
---|---|
[JAVA] ch08-05. 예외 처리 5 (0) | 2017.08.22 |
[JAVA] ch08-03. 예외 처리 3 (0) | 2017.08.22 |
[JAVA] ch08-02. 예외 처리 2 (0) | 2017.08.22 |
[JAVA] ch08-01. 예외 처리 (0) | 2017.08.22 |
댓글