티스토리 뷰

1. 자바

main-Map 4가지

패스트코드블로그 2020. 5. 24. 14:05
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.mkyong;
 
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Map.Entry;
 
public class LoopMap {
 
public static void main(String[] args) {
 
  // initial a Map
  Map<StringString> map = new HashMap<StringString>();
  map.put("1""Jan");
  map.put("2""Feb");
  map.put("3""Mar");
  map.put("4""Apr");
  map.put("5""May");
  map.put("6""Jun");
 
  // Map -> Set -> Iterator -> Map.Entry -> troublesome, not recommend!
  System.out.println("\nExample 1...");
  Iterator<Entry<String,String>> iterator = map.entrySet().iterator();
  while (iterator.hasNext()) {
      Map.Entry<String,String> entry = (Map.Entry<String,String>) iterator.next();
      System.out.println("Key : " + entry.getKey() + " Value :" + entry.getValue());
  }
 
  // more elegant way, this should be the standard way, recommend!
  System.out.println("\nExample 2...");
  for (Map.Entry<StringString> entry : map.entrySet()) {
  System.out.println("Key : " + entry.getKey() + " Value : " + entry.getValue());
  }
 
  // weired, but works anyway, not recommend!
  System.out.println("\nExample 3...");
  for (Object key : map.keySet()) {
  System.out.println("Key : " + key.toString() + " Value : " + map.get(key));
  }
 
  //Java 8 only, forEach and Lambda. recommend!
  System.out.println("\nExample 4...");
  map.forEach((k,v)->System.out.println("Key : " + k + " Value : " + v));
}
 
}
cs
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
글 보관함