刪除 Java 中 HashMap 中的所有值


要刪除 HashMap 中的所有值,請使用 clear() 方法。

首先,讓我們建立一個 HashMap。

HashMap hm = new HashMap();

向 HashMap 新增一些元素

hm.put("Wallet", new Integer(700));
hm.put("Belt", new Integer(600));
hm.put("Backpack", new Integer(1200));

現在,刪除所有元素

hm.clear();

以下是一個從 HashMap 中刪除所有值的示例。

示例

 線上演示

import java.util.*;
public class Demo {
   public static void main(String args[]) {
      // Create hash map
      HashMap hm = new HashMap();
      hm.put("Wallet", new Integer(700));
      hm.put("Belt", new Integer(600));
      hm.put("Backpack", new Integer(1200));
      System.out.println("Map = "+hm);
      hm.clear();
      System.out.println("Map after removing all the elements (blank)= "+hm);
   }
}

以下是輸出

Map = {Backpack=1200, Belt=600, Wallet=700}
Map after removing all the elements (blank)= {}

更新於:30-7-2019

4 千多人次瀏覽

開啟你的 職業生涯

完成課程即可獲得認證

開始
推廣內容