📜  在Java中使用示例映射 remove() 方法

📅  最后修改于: 2022-05-13 01:55:01.335000             🧑  作者: Mango

在Java中使用示例映射 remove() 方法

如果映射中存在键,则此方法用于从该映射中删除该键的映射。

句法:

V remove(Object key)

参数:此方法具有唯一的参数键,其映射将从映射中删除。
返回:此方法返回此映射先前与键关联的值,如果映射不包含键的映射,则返回 null。
下面的程序显示了 int remove() 方法的实现。
方案一:

Java
// Java code to show the implementation of
// remove method in Map interface
import java.util.*;
public class GfG {
 
    // Driver code
    public static void main(String[] args)
    {
 
        // Initializing a Map of type HashMap
        Map map = new HashMap<>();
        map.put(1, "One");
        map.put(3, "Three");
        map.put(5, "Five");
        map.put(7, "Seven");
        map.put(9, "Nine");
        System.out.println(map);
 
        map.remove(3);
 
        System.out.println(map);
 
        // If it doesn't exists, returns
        // null and does not affects the map
        map.remove(2);
 
        System.out.println(map);
    }
}


Java
// Java code to show the implementation of
// remove method in Map interface
import java.util.*;
public class GfG {
 
    // Driver code
    public static void main(String[] args)
    {
 
        // Initializing a Map of type HashMap
        Map map = new HashMap<>();
        map.put("1", "One");
        map.put("3", "Three");
        map.put("5", "Five");
        map.put("7", "Seven");
        map.put("9", "Nine");
        System.out.println(map);
 
        map.remove("3");
 
        System.out.println(map);
    }
}


输出:
{1=One, 3=Three, 5=Five, 7=Seven, 9=Nine}
{1=One, 5=Five, 7=Seven, 9=Nine}
{1=One, 5=Five, 7=Seven, 9=Nine}

程序 2:下面是显示 put() 实现的代码。

Java

// Java code to show the implementation of
// remove method in Map interface
import java.util.*;
public class GfG {
 
    // Driver code
    public static void main(String[] args)
    {
 
        // Initializing a Map of type HashMap
        Map map = new HashMap<>();
        map.put("1", "One");
        map.put("3", "Three");
        map.put("5", "Five");
        map.put("7", "Seven");
        map.put("9", "Nine");
        System.out.println(map);
 
        map.remove("3");
 
        System.out.println(map);
    }
}
输出:
{1=One, 3=Three, 5=Five, 7=Seven, 9=Nine}
{1=One, 5=Five, 7=Seven, 9=Nine}

参考:
甲骨文文档