Método SortedMap clear() en Java con ejemplos

El método clear() en SortedMap Java se usa para borrar y eliminar todos los elementos o asignaciones de una colección de SortedMap específica.

Sintaxis:

void clear()

Parámetros: El método no acepta ningún parámetro.

Valor devuelto: el método no devuelve ningún valor.

Nota : El método clear() en SortedMap se hereda de la interfaz Map en Java.

Los siguientes programas se utilizan para ilustrar el funcionamiento del método clear():

Programa 1: Asignación de valores de string a claves enteras.

// Java code to illustrate the clear() method
  
import java.util.*;
  
public class Map_Demo {
    public static void main(String[] args)
    {
  
        // Creating an empty SortedMap
        SortedMap<Integer, String> map
            = new TreeMap<Integer, String>();
  
        // Mapping string values to int keys
        map.put(10, "Geeks");
        map.put(15, "4");
        map.put(20, "Geeks");
        map.put(25, "Welcomes");
        map.put(30, "You");
  
        // Displaying the Map
        System.out.println(
            "Initial Mappings are: "
            + map);
  
        // Clearing the sorted map using clear()
        map.clear();
  
        // Displaying the final SortedMap
        System.out.println(
            "Finally the maps"
            + " look like this: "
            + map);
    }
}
Producción:

Initial Mappings are:
 {10=Geeks, 15=4, 20=Geeks, 25=Welcomes, 30=You}
Finally the maps look like this: {}

Programa 2: Asignación de valores enteros a claves de string.

// Java code to illustrate the clear() method
  
import java.util.*;
  
public class Map_Demo {
    public static void main(String[] args)
    {
        // Creating an empty SortedMap
        SortedMap<String, Integer> map
            = new TreeMap<String, Integer>();
  
        // Mapping int values to string keys
        map.put("Geeks", 10);
        map.put("4", 15);
        map.put("Geeks", 20);
        map.put("Welcomes", 25);
        map.put("You", 30);
  
        // Displaying the SortedMap
        System.out.println(
            "Initial Mappings are: "
            + map);
  
        // Clearing the SortedMap using clear()
        map.clear();
  
        // Displaying the final Map
        System.out.println(
            "Finally the maps "
            + "look like this: "
            + map);
    }
}
Producción:

Initial Mappings are:
 {4=15, Geeks=20, Welcomes=25, You=30}
Finally the maps look like this: {}

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

Referencia : https://docs.oracle.com/javase/7/docs/api/java/util/Map.html#clear()

Publicación traducida automáticamente

Artículo escrito por gopaldave 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 *