在遍歷WeakHashMap時,通常可以使用迭代器(Iterator)或者forEach方法來實現。以下是使用迭代器遍歷WeakHashMap的示例代碼:
WeakHashMap<String, Integer> map = new WeakHashMap<>();
map.put("A", 1);
map.put("B", 2);
map.put("C", 3);
Iterator<Map.Entry<String, Integer>> iterator = map.entrySet().iterator();
while (iterator.hasNext()) {
Map.Entry<String, Integer> entry = iterator.next();
System.out.println("Key: " + entry.getKey() + ", Value: " + entry.getValue());
}
另外,還可以使用forEach方法來遍歷WeakHashMap:
WeakHashMap<String, Integer> map = new WeakHashMap<>();
map.put("A", 1);
map.put("B", 2);
map.put("C", 3);
map.forEach((key, value) -> {
System.out.println("Key: " + key + ", Value: " + value);
});
無論是使用迭代器還是forEach方法,都可以很方便地遍歷WeakHashMap并輸出其中的鍵值對。需要注意的是,WeakHashMap中的鍵值對可能會在GC時被回收,因此在遍歷過程中要注意可能會出現空鍵或值的情況。