中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

hashmap怎么去除指定元素

小億
223
2024-06-03 17:36:09
欄目: 編程語言

要從HashMap中刪除指定的元素,可以使用以下方法:

  1. 使用remove(key)方法:使用HashMap的remove(key)方法可以刪除指定鍵所對應的鍵值對。示例代碼如下:
HashMap<String, Integer> hashMap = new HashMap<>();
hashMap.put("A", 1);
hashMap.put("B", 2);

hashMap.remove("A");

System.out.println(hashMap); // 輸出:{B=2}
  1. 使用remove(key, value)方法:如果需要同時指定鍵和值來刪除元素,可以使用remove(key, value)方法。示例代碼如下:
HashMap<String, Integer> hashMap = new HashMap<>();
hashMap.put("A", 1);
hashMap.put("B", 2);

hashMap.remove("A", 1);

System.out.println(hashMap); // 輸出:{B=2}
  1. 使用Iterator遍歷并刪除:可以使用Iterator遍歷HashMap并刪除指定元素。示例代碼如下:
HashMap<String, Integer> hashMap = new HashMap<>();
hashMap.put("A", 1);
hashMap.put("B", 2);

Iterator<Map.Entry<String, Integer>> iterator = hashMap.entrySet().iterator();
while (iterator.hasNext()) {
    Map.Entry<String, Integer> entry = iterator.next();
    if (entry.getKey().equals("A")) {
        iterator.remove();
    }
}

System.out.println(hashMap); // 輸出:{B=2}

以上是幾種常見的方法來刪除HashMap中的指定元素,選擇適合自己需求的方法來實現元素的刪除。

0
都兰县| 巴东县| 石景山区| 克拉玛依市| 绥德县| 平定县| 任丘市| 盐源县| 朝阳县| 洪江市| 奎屯市| 集安市| 高要市| 泾源县| 七台河市| 景洪市| 二手房| 新田县| 永仁县| 特克斯县| 汤原县| 汶上县| 宁波市| 江陵县| 聊城市| 西平县| 淄博市| 广丰县| 衡水市| 正宁县| 合山市| 永康市| 汽车| 新化县| 二连浩特市| 大田县| 宁波市| 伽师县| 聊城市| 柯坪县| 泰宁县|