728x90
public class Ex05 {
public static void main(String[] args){
System.out.println(1);
System.out.println(2);
try{
System.out.println(3);
System.out.println(0/0); //Exception 발생.
System.out.println(4);
}catch(ArithmeticException e){
System.out.println(5);
}
System.out.println(6);
}
}
728x90
'JAVA > 예제' 카테고리의 다른 글
[JAVA] ch08-07. 예외 처리 7 (0) | 2017.08.22 |
---|---|
[JAVA] ch08-06. 예외 처리 6 (0) | 2017.08.22 |
[JAVA] ch08-04. 예외 처리 4 (0) | 2017.08.22 |
[JAVA] ch08-03. 예외 처리 3 (0) | 2017.08.22 |
[JAVA] ch08-02. 예외 처리 2 (0) | 2017.08.22 |
댓글