5월 4일 내용정리
예외처리는 보험을 들듯이 프로그램을 실행하다가 에러가 나면
프로그램이 죽기 때문에 그걸 방지하기 위해 프로그램의 흐름을 우회하여 완료하게끔 하는것
try{예외가 발경될 소지가 있는 문장}
catch(예외처리클래스 참조변수){예외발생시 처리할 사항}
Exception 은 모든 에러를 잡을수 있는 예외의 최고조상
ArrayIndexOutOfBoundsException 는 여러 예외중 한가지
예)catch(Exception e){예외발생시 내보낼 문장}
finally{예외가 있든없든 꼭 실행하는 문장}
package study_0504;
public class exceptTest {
public static void main(String[] args) {
int x = 20;
int y = 0;
System.out.println("x + y = " + (x+y));
System.out.println("x - y = " + (x-y));
System.out.println("x * y = " + (x*y));
try {
System.out.println("x / y =" + (x/y));
}catch(Exception e) {
System.out.println("0으로 나눌 수 없음");
System.out.println(e.getMessage());
// e.printStackTrace();
}
int[] array = {1, 2, 3};
// for(int i=0;i<array.length; i++) {
// System.out.println("array[ " + i + " ] = " + array[i]);
// }
try {
for(int i=0;i<=array.length; i++) {
System.out.println("array[ " + i + " ] = " + array[i]);
}
}catch(ArrayIndexOutOfBoundsException e) {
System.out.println("배열 공간 부족");
System.out.println(e.getMessage());
}
}
}