要清空一個Java的Map,可以使用以下兩種方法:
示例代碼:
Map<String, Integer> map = new HashMap<>();
map.put("key1", 1);
map.put("key2", 2);
map.clear(); // 清空Map
System.out.println(map); // 輸出: {}
示例代碼:
Map<String, Integer> map = new HashMap<>();
map.put("key1", 1);
map.put("key2", 2);
map = new HashMap<>(); // 清空Map
System.out.println(map); // 輸出: {}
以上兩種方法都可以清空一個Map,選擇使用哪種方法取決于具體的需求和代碼的結構。