遍歷Map的四種方法

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);
 }
}

轉自:http://www.cnblogs.com/kristain/articles/2033566.html

敬佩作者一句話:

當一個人找不到出路的時候,最好的辦法就是將當前能做好的事情做到極致,做到無人能及。感恩作者的付出!!!

爲了你媽看不起的眼光,我要努力!

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章