728x90
반응형
- 에러메시지 : Exception in thread "main" java.util.NoSuchElementException at java.util.LinkedList.removeFirst(Unknown Source)
at java.util.LinkedList.remove(Unknown Source)
- 해석 : 더 이상 검색해서 가져올 수 있는 요소가 없다.
[remove() - 요소를 가져온 뒤 제거, 없을 시 예외 발생]
String sName = (String) q1.remove();
System.out.println(sName); // 청하
sName = (String) q1.remove();
System.out.println(sName); // 이병헌
sName = (String) q1.remove();
System.out.println(sName); // 전지현
sName = (String) q1.remove();
System.out.println(sName); // java.util.NoSuchElementException
728x90
반응형
'Trouble Shooting(Error)' 카테고리의 다른 글
[Java_Error] 자바 파일 쓰기 액세스 거부(FileNotFoundException) (0) | 2022.03.28 |
---|---|
[Java_Error] Syntax error, insert "Dimensions" to complete ReferenceType (0) | 2022.03.24 |
[Java_Error] NullPointerException (0) | 2022.03.10 |
[Java_Error] Implicit super constructor (class 이름) is undefined. Must explicitly invoke another constructor (0) | 2022.01.18 |
[Java_Error] java.io.FileNotFoundException (0) | 2022.01.15 |