func();
func1();
}
//1번과 2번은 동일한 처리
//1번 많이씀
static void func()throws ArrayIndexOutOfBoundsException{
int array[] = {1,2,3};
for (int i = 0; i < 4; i++) {
System.out.println(array[i]);
}
}
//2번
static void func1(){
int array[] = {1,2,3};
try {
for (int i = 0; i < 4; i++) {
System.out.println(array[i]);
}
}catch (ArrayIndexOutOfBoundsException e) {
e.printStackTrace();
}
}
'JAVA > 파일 코드' 카테고리의 다른 글
file read (0) | 2020.05.29 |
---|---|
파일 Class (0) | 2020.05.29 |
Exception 예외 종류 (0) | 2020.05.29 |
Exception 예외 개념 (0) | 2020.05.29 |
오버로드 (0) | 2020.05.29 |