阅读量:11
在HashMap中遍历键值对有两种常用的方法:
- 使用entrySet()方法遍历:通过调用HashMap的entrySet()方法,可以获得一个包含键值对的Set集合,然后通过遍历这个Set集合来访问每个键值对。
HashMap<String, Integer> map = new HashMap<>(); map.put("A", 1); map.put("B", 2); map.put("C", 3); for (Map.Entry<String, Integer> entry : map.entrySet()) { String key = entry.getKey(); Integer value = entry.getValue(); System.out.println("Key: " + key + ", Value: " + value); }
- 使用keySet()方法遍历:通过调用HashMap的keySet()方法,可以获得一个包含键的Set集合,然后通过遍历这个Set集合来获取对应的值。
HashMap<String, Integer> map = new HashMap<>(); map.put("A", 1); map.put("B", 2); map.put("C", 3); for (String key : map.keySet()) { Integer value = map.get(key); System.out.println("Key: " + key + ", Value: " + value); }
以上两种方法都可以用来遍历HashMap中的键值对,选择哪种方法取决于具体的需求和场景。