[강의 정리] Java 예외 - 예외의 처리

Jeong Woosi·2022년 1월 7일
0

생활코딩 JAVA 예외

목록 보기
1/7
public class ExceptionApp {

	public static void main(String[] args) {
		System.out.println(1);
		int[] scores = {10,20,30};
		try {
			System.out.println(2);
			System.out.println(scores[3]); // -> 예외 발생으로 밑에 코드는 실행 X
			System.out.println(3);
			System.out.println(2/0);
			System.out.println(4);
		} catch(ArithmeticException e) {
			System.out.println("잘못된 계산이네요.");
		}catch(ArrayIndexOutOfBoundsException e) {
			System.out.println("없는 값을 찾고 계시네요 ^^");
		}
		System.out.println(5);

	}

}
profile
Let's start to Coding

0개의 댓글