Método WeakHashMap remove() en Java

java.util.WeakHashMap.remove() es un método incorporado de la clase WeakHashMap y se usa para eliminar la asignación de cualquier clave particular del mapa. Básicamente elimina los valores de cualquier clave en particular en el Mapa.

Sintaxis:

Weak_Hash_Map.remove(Object key)

Parámetros: El método toma una clave de parámetro cuya asignación se eliminará del Mapa.

Valor devuelto: el método devuelve el valor que se asignó previamente a la clave especificada si la clave existe; de ​​lo contrario, el método devuelve NULL.

Los siguientes programas ilustran el funcionamiento del método java.util.WeakHashMap.remove():
Programa 1: Al pasar una clave existente.

// Java code to illustrate the remove() method
import java.util.*;
  
public class Weak_Hash_Map_Demo {
    public static void main(String[] args)
    {
  
        // Creating an empty WeakHashMap
        Map<Integer, String> weak_hash = new 
                       WeakHashMap<Integer, String>();
    
        // Mapping string values to int keys
        weak_hash.put(10, "Geeks");
        weak_hash.put(15, "4");
        weak_hash.put(20, "Geeks");
        weak_hash.put(25, "Welcomes");
        weak_hash.put(30, "You");
  
        // Displaying the WeakHashMap
        System.out.println("Initial Mappings are: " + 
                                           weak_hash);
  
        // Removing the existing key mapping
        String returned_value = 
                         (String)weak_hash.remove(20);
  
        // Verifying the returned value
        System.out.println("Returned value is: " + 
                                      returned_value);
  
        // Displayin the new map
        System.out.println("New map is: " + weak_hash);
    }
}
Producción:

Initial Mappings are: {30=You, 15=4, 10=Geeks, 25=Welcomes, 20=Geeks}
Returned value is: Geeks
New map is: {30=You, 15=4, 10=Geeks, 25=Welcomes}

Programa 2: Al pasar una nueva clave.

// Java code to illustrate the remove() method
import java.util.*;
  
public class Weak_Hash_Map_Demo {
    public static void main(String[] args)
    {
  
        // Creating an empty WeakHashMap
        Map<Integer, String> weak_hash = 
                   new WeakHashMap<Integer, String>();
  
        // Mapping string values to int keys
        weak_hash.put(10, "Geeks");
        weak_hash.put(15, "4");
        weak_hash.put(20, "Geeks");
        weak_hash.put(25, "Welcomes");
        weak_hash.put(30, "You");
  
        // Displaying the WeakHashMap
        System.out.println("Initial Mappings are: " + 
                                          weak_hash);
  
        // Removing the new key mapping
        String returned_value = 
                        (String)weak_hash.remove(50);
  
        // Verifying the returned value
        System.out.println("Returned value is: " + 
                                    returned_value);
  
        // Displayin the new map
        System.out.println("New map is: "+weak_hash);
    }
}
Producción:

Initial Mappings are: {30=You, 15=4, 10=Geeks, 25=Welcomes, 20=Geeks}
Returned value is: null
New map is: {30=You, 15=4, 10=Geeks, 25=Welcomes, 20=Geeks}

Nota: La misma operación se puede realizar con cualquier tipo de Mapping con variación y combinación de diferentes tipos de datos.

Publicación traducida automáticamente

Artículo escrito por Chinmoy Lenka y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *