728x90
[Java][에러 메세지]
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: Index 0 out of bounds for length 0
[원인]
array(배열)의 범위 밖이거나 값이 없을 경우 나는 에러
범위 밖일 경우
ex) int[] arr = {0, 1, 2, 3};
arr[5] = 5
에러발생
[해결]
범위 밖이라면 범위 밖에 있는 부분을 찾아 수정해주고,
값이 없다면 넣어줄 것!
728x90
반응형
'JAVA > error messages' 카테고리의 다른 글
[Java][에러 메세지] java.sql.SQLException: ORA-12899 (0) | 2022.05.01 |
---|---|
[Java][에러 메세지] No enclosing instance of type is accessible (0) | 2022.02.02 |
[Java][에러 메세지] Type mismatch: cannot convert from int to byte (0) | 2021.12.19 |
[Java] [에러 메세지] java.lang.module.InvalidModuleDescriptorException: (0) | 2021.12.18 |
[Java] [에러 메세지] Hello.java:3: error: unmappable character for encoding MS949 (0) | 2021.12.18 |