반응형 ArrayIndexOutOfBoundsException1 [자바(java)] ArrayIndexOutOfBoundsException ArrayIndexOutOfBoundsException 에러 분석 ArrayIndexOutOfBoundsException 에러는 자바를 개발하는 데에서 자주 발생하는 에러 중 하나입니다. 이 에러는 배열로 저장된 데이터를 참조하는 데 잘못된 인덱스를 사용할 경우 발생합니다. ArrayIndexOutOfBoundsException 에러의 예 ArrayIndexOutOfBoundsException 에러의 예를 보겠습니다. 다음 코드는 배열 인덱스를 초과하여 데이터에 접근하려고 시도합니다. int[] array = new int[10]; System.out.println(array[11]); 이 코드는 배열을 선언하고 그 배열의 11번째 인덱스에 접근하려 합니다. 그러나 11번째 인덱스는 존재하지 않으므로 이.. 2023. 2. 11. 이전 1 다음 반응형