要遍歷map,可以使用不同的方法,以下是一些常見的方法:
1、使用for-each循環和entrySet()方法,這種方法可以遍歷Map中的所有鍵值對,包括重復的鍵值對,示例代碼如下:
Map<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()) { System.out.println("Key: " + entry.getKey() + ", Value: " + entry.getValue()); }
2、使用for-each循環和keySet()方法,這種方法只能遍歷Map中的鍵,不能遍歷值,示例代碼如下:
Map<String, Integer> map = new HashMap<>(); map.put("a", 1); map.put("b", 2); map.put("c", 3); for (String key : map.keySet()) { System.out.println("Key: " + key); }
3、使用for-each循環和values()方法,這種方法可以遍歷Map中的值,但不能遍歷鍵,示例代碼如下:
Map<String, Integer> map = new HashMap<>(); map.put("a", 1); map.put("b", 2); map.put("c", 3); for (Integer value : map.values()) { System.out.println("Value: " + value); }
發表評論
2024-11-03 21:39:46回復