在Java中,可以使用迭代器或者forEach循環來遍歷HashMap。以下是兩種常用的遍歷HashMap的方法:
HashMap<String, String> map = new HashMap<>();
map.put("key1", "value1");
map.put("key2", "value2");
map.put("key3", "value3");
Iterator<Map.Entry<String, String>> iterator = map.entrySet().iterator();
while (iterator.hasNext()) {
Map.Entry<String, String> entry = iterator.next();
System.out.println("Key: " + entry.getKey() + ", Value: " + entry.getValue());
}
HashMap<String, String> map = new HashMap<>();
map.put("key1", "value1");
map.put("key2", "value2");
map.put("key3", "value3");
map.forEach((key, value) -> {
System.out.println("Key: " + key + ", Value: " + value);
});
無論使用哪種方法,都可以遍歷HashMap并輸出其中的鍵值對。請根據具體的需求選擇適合的遍歷方法。