반응형
Import java.until.*;
class IteratorBasic {
Public static void main(String[] arts) {
ArrayList list = new ArrayList();
List.add("1");
List.add("2");
Iterator it = list.iterator();
while(it.hasNext()) {
Object obj = it.next();
System.out.println(obj);
}
for(int i=0; i<list.size(); i++) {
Object obj = list.get(i); // HashSet에는 get() 메소드가 없다. 그래서 컬렉션을 사용할 때는 Iterator를 사용하면 좋다.
System.out.println(obj);
}
}
}
Map map = new HashMap();
...
Iterator it = map.entrySet().iterator();
반응형
'etc. > Leetcode' 카테고리의 다른 글
Leetcode - 20. Valid Parentheses - Easy (0) | 2022.08.14 |
---|---|
Leetcode - 14. Longest Common Prefix - Easy (0) | 2022.08.11 |
Leetcode - 13. Roman to Integer - Easy (0) | 2022.08.08 |
Leetcode - 9. Palindrome Number - Easy (0) | 2022.08.06 |
미국 테크니컬 인터뷰 문제 풀이 - Reverse words in a sentence. (0) | 2022.08.03 |
Leetcode - 242. Valid Anagram : Easy (0) | 2022.07.31 |
Leetcode - 442. Find All Duplicates in an Array (0) | 2022.07.26 |
JAVA - Find duplicate letters in a String (0) | 2022.07.26 |
JAVA - String Revers Sample (0) | 2022.07.25 |
Leetcode 541. Reverse String 2 - Easy (0) | 2022.07.22 |