HashMap是咱們使用很是多的集合之一,下面就來介紹幾種經常使用的HashMap的遍歷方式。java
HashMap<String, String> hMap = new HashMap<>(); hMap.put("姓名", "張三"); hMap.put("年齡", "20"); hMap.put("性別", "男");
for (Map.Entry<String, String> entry : hMap.entrySet()) { System.out.println(entry); }
//遍歷key for (String key : hMap.keySet()) { System.out.println("key=" + key); } //遍歷value for (String value : hMap.values()) { System.out.println("value=" + value); }
Iterator<Map.Entry<String, String>> item = hMap.entrySet().iterator(); while (item.hasNext()) { Map.Entry<String, String> entry = item.next(); System.out.println(entry); }
姓名=張三 年齡=20 性別=男 =============================== key=姓名 key=年齡 key=性別 value=張三 value=20 value=男 ================================ 姓名=張三 年齡=20 性別=男