El método remove() de la interfaz SortedMap en Java se usa para eliminar el mapeo de una clave de este mapa si está presente en el mapa.
Sintaxis:
V remove(Object key)
Parámetros: este método tiene la única clave de argumento cuyo mapeo se eliminará del mapa.
Devoluciones: este método devuelve el valor al que SortedMap asoció previamente la clave, o nulo si SortedMap no contenía ninguna asignación para la clave.
Nota : El método remove() en SortedMap se hereda de la interfaz Map en Java.
Los siguientes programas ilustran la implementación del método remove():
Programa 1:
Java
// Java code to show the implementation of // remove method in SortedMap interface import java.util.*; public class GfG { // Driver code public static void main(String[] args) { // Initializing a SortedMap SortedMap<Integer, String> map = new TreeMap<>(); 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); } }
Producción:
{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}
Programa 2: a continuación se muestra el código para mostrar la implementación de remove().
Java
// Java code to show the implementation of // remove method in SortedMap interface import java.util.*; public class GfG { // Driver code public static void main(String[] args) { // Initializing a SortedMap SortedMap<String, String> map = new TreeMap<>(); 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); } }
Producción:
{1=One, 3=Three, 5=Five, 7=Seven, 9=Nine} {1=One, 5=Five, 7=Seven, 9=Nine}
Referencia: https://docs.oracle.com/javase/7/docs/api/java/util/Map.html#put(K, %20V)