자바예외처리1 (JAVA) 자바 예외/자바 에러/자바 오류 총 정리 자바 오류 총 정리 1. ArrayIndexOutOfBoundsException 배열의 범위를 벗어난 index를 접근할 시 발생 public class Ex08 { public static void main(String[] args) { System.out.println("예외처리"); try { System.out.println(args[0]); }catch(ArrayIndexOutOfBoundsException e) { System.err.println("인덱스 벗어남"); } } } //결과 예외처리 인덱스 벗어남 2. ArithmeticException 정수를 0으로 나눌경우 발생 System.out.println(“예외처리”); try { System.out.println(0/0); }catc.. 2021. 2. 4. 이전 1 다음