java.util.Hashtable.remove() es un método incorporado de la clase Hashtable y se usa para eliminar la asignación de cualquier clave en particular de la tabla. Básicamente elimina los valores de cualquier clave en particular en la tabla.
Sintaxis:
Hash_Table.remove(Object key)
Parámetros: el método toma una clave de parámetro cuya asignación se eliminará de la tabla.
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.Hashtable.remove():
Programa 1: Al pasar una clave existente.
Java
// Java code to illustrate the remove() method import java.util.*; public class Hash_Table_Demo { public static void main(String[] args) { // Creating an empty Hashtable Hashtable<Integer, String> hash_table = new Hashtable<Integer, String>(); // Inserting elements into the table hash_table.put(10, "Geeks"); hash_table.put(15, "4"); hash_table.put(20, "Geeks"); hash_table.put(25, "Welcomes"); hash_table.put(30, "You"); // Displaying the Hashtable System.out.println("Initial Table is: " + hash_table); // Removing the existing key mapping String returned_value = (String)hash_table.remove(20); // Verifying the returned value System.out.println("Returned value is: " + returned_value); // Displaying the new table System.out.println("New table is: " + hash_table); } }
Initial Table is: {10=Geeks, 20=Geeks, 30=You, 15=4, 25=Welcomes} Returned value is: Geeks New table is: {10=Geeks, 30=You, 15=4, 25=Welcomes}
Programa 2: Al pasar una nueva clave.
Java
// Java code to illustrate the remove() method import java.util.*; public class Hash_Table_Demo { public static void main(String[] args) { // Creating an empty Hashtable Hashtable<Integer, String> hash_table = new Hashtable<Integer, String>(); // Inserting mappings into the table hash_table.put(10, "Geeks"); hash_table.put(15, "4"); hash_table.put(20, "Geeks"); hash_table.put(25, "Welcomes"); hash_table.put(30, "You"); // Displaying the Hashtable System.out.println("Initial table is: " + hash_table); // Removing the new key mapping String returned_value = (String)hash_table.remove(50); // Verifying the returned value System.out.println("Returned value is: " + returned_value); // Displaying the new table System.out.println("New table is: " + hash_table); } }
Initial table is: {10=Geeks, 20=Geeks, 30=You, 15=4, 25=Welcomes} Returned value is: null New table is: {10=Geeks, 20=Geeks, 30=You, 15=4, 25=Welcomes}
Nota: La misma operación se puede realizar con cualquier tipo de 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