재밌고 어려운 IT를 이해해보자~!

NoSuchElementException 본문

JAVA Error Solution

NoSuchElementException

언제나즐거운IT 2023. 12. 10. 18:11

26번쨰 라인에서 존재하지 않는것을 가져오라고 해서 생긴 에러이다.

 

for 문안에 iter.next()를 넣었더니 for문이도는동안 이미 Hashset의 값을 다가져와버렸다...

for문 밖으로 옮겨보자!

 

굿~~  :D 잘작동한다.

'JAVA Error Solution' 카테고리의 다른 글

NullPointerException  (0) 2023.12.20
NullPointerException  (0) 2023.12.12
IndexOutOfBoundsException  (0) 2023.12.10
Unresolved compilation problem  (1) 2023.12.08
예외처리 (try-catch)  (0) 2023.12.08
Comments