註:希望與各位讀者相互交流,共同學習進步。 ...
1 /*--------------------------------- 2 使用entrySet方法取出Map集合中的元素: 3 ....該方法是將Map集合中key與value的關係存入到了Set集合中,這個關係的數據類型是Map.Entry 4 ....entrySet方法返回值類型的具體寫法為:Set< Map.Entry<KeyType , ValueType> > 5 ----------------------------------*/ 6 package pack04; 7 8 import java.util.*; 9 10 public class MapDemo { 11 public static void main(String[] args) { 12 13 Map<Integer, String> ma = new HashMap<Integer, String>(); 14 15 //給集合中存入元素 16 ma.put(1, "abc01"); //這裡將基本數據類型自動裝箱 17 ma.put(2, "abc02"); 18 ma.put(3, "abc03"); 19 ma.put(4, "abc04"); 20 21 //將Map集合當中的映射關係取出,存入到Set集合當中 22 Set< Map.Entry<Integer, String> > entryset = ma.entrySet(); 23 24 //取迭代器 25 Iterator< Map.Entry<Integer, String> > it = entryset.iterator(); 26 27 //獲取Map集合中的元素 28 while( it.hasNext() ) { 29 Map.Entry<Integer, String> en = it.next(); 30 Integer maKey = en.getKey(); 31 String maValue = en.getValue(); 32 33 System.out.println( maKey + " : " + maValue ); 34 } 35 36 } 37 }
註:希望與各位讀者相互交流,共同學習進步。