要清空一個 HashMap 中的所有元素,可以使用 HashMap 的 clear()
方法。
示例代碼如下:
import java.util.HashMap;
public class Main {
public static void main(String[] args) {
HashMap<String, Integer> hashMap = new HashMap<>();
// 添加元素到 HashMap
hashMap.put("A", 1);
hashMap.put("B", 2);
hashMap.put("C", 3);
System.out.println("HashMap before clearing: " + hashMap);
// 清空 HashMap
hashMap.clear();
System.out.println("HashMap after clearing: " + hashMap);
}
}
輸出結(jié)果:
HashMap before clearing: {A=1, B=2, C=3}
HashMap after clearing: {}
在示例代碼中,首先創(chuàng)建一個 HashMap,并向其中添加了三個元素。然后使用 clear()
方法清空 HashMap。最后輸出清空前后的 HashMap 元素。