首頁  >  文章  >  Java  >  Map遍歷實例詳解

Map遍歷實例詳解

零下一度
零下一度原創
2017-06-25 13:43:421584瀏覽

轉自:

public static void main(String[] args) {


  Map<String, String> map = new HashMap<String, String>();
  map.put("1", "value1");
  map.put("2", "value2");
  map.put("3", "value3");  
  //第一种:普遍使用,二次取值
  System.out.println("通过Map.keySet遍历key和value:");  for (String key : map.keySet()) {
   System.out.println("key= "+ key + " and value= " + map.get(key));
  }  
  //第二种
  System.out.println("通过Map.entrySet使用iterator遍历key和value:");
  Iterator<Map.Entry<String, String>> it = map.entrySet().iterator();  while (it.hasNext()) {
   Map.Entry<String, String> entry = it.next();
   System.out.println("key= " + entry.getKey() + " and value= " + entry.getValue());
  }  
  //第三种:推荐,尤其是容量大时
  System.out.println("通过Map.entrySet遍历key和value");  for (Map.Entry<String, String> entry : map.entrySet()) {
   System.out.println("key= " + entry.getKey() + " and value= " + entry.getValue());
  }  //第四种
  System.out.println("通过Map.values()遍历所有的value,但不能遍历key");  for (String v : map.values()) {
   System.out.println("value= " + v);
  }
 }

以上是Map遍歷實例詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
上一篇:字串常用API下一篇:字串常用API