Método TreeMap putAll() en Java

java.util.TreeMap.putAll() es un método incorporado de la clase TreeMap que se utiliza para la operación de copia. El método copia todos los elementos, es decir, las asignaciones, de un mapa a otro.

Sintaxis:

new_tree_map.putAll(exist_tree_map)

Parámetros: el método toma un parámetro exist_tree_map que se refiere al mapa existente del que queremos copiar.

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

Excepción: el método arroja dos tipos de excepción:

  • NullPointerException: este tipo de excepción se lanza si el mapa especificado es nulo o contiene una clave nula y este mapa no permite ni mantiene claves nulas.
  • ClassCastException: este tipo de excepción se lanza si la clave o el valor de la clase especificada es diferente de este mapa o impide que se almacene.

Los siguientes programas ilustran el funcionamiento del método java.util.TreeMap.putAll():
Programa 1: Asignación de valores de string a claves enteras.

// Java code to illustrate the putAll() method
import java.util.*;
  
public class Tree_Map_Demo {
    public static void main(String[] args)
    {
  
        // Creating an empty TreeMap
        TreeMap<Integer, String> tree_map = 
                  new TreeMap<Integer, String>();
  
        // Mapping string values to int keys
        tree_map.put(10, "Geeks");
        tree_map.put(15, "4");
        tree_map.put(20, "Geeks");
        tree_map.put(25, "Welcomes");
        tree_map.put(30, "You");
  
        // Displaying the TreeMap
        System.out.println("Initial Mappings are: " + tree_map);
  
        // Creating a new tree map and copying
        TreeMap<Integer, String> new_tree_map = 
                        new TreeMap<Integer, String>();
        new_tree_map.putAll(tree_map);
  
        // Displaying the final TreeMap
        System.out.println("The new map looks like this: "
                                            + new_tree_map);
    }
}
Producción:

Initial Mappings are: {10=Geeks, 15=4, 20=Geeks, 25=Welcomes, 30=You}
The new map looks like this: {10=Geeks, 15=4, 20=Geeks, 25=Welcomes, 30=You}

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

// Java code to illustrate the putAll() method
import java.util.*;
  
public class Tree_Map_Demo {
    public static void main(String[] args)
    {
  
        // Creating an empty TreeMap
        TreeMap<String, Integer> tree_map = 
                    new TreeMap<String, Integer>();
  
        // Mapping int values to string keys
        tree_map.put("Geeks", 10);
        tree_map.put("4", 15);
        tree_map.put("Geeks", 20);
        tree_map.put("Welcomes", 25);
        tree_map.put("You", 30);
  
        // Displaying the TreeMap
        System.out.println("Initial Mappings are: "
                                         + tree_map);
  
        // Creating a new tree map and copying
        TreeMap<String, Integer> new_tree_map = 
                         new TreeMap<String, Integer>();
        new_tree_map.putAll(tree_map);
  
        // Displaying the final TreeMap
        System.out.println("The new map looks like this: " 
                                          + new_tree_map);
    }
}
Producción:

Initial Mappings are: {4=15, Geeks=20, Welcomes=25, You=30}
The new map looks like this: {4=15, Geeks=20, Welcomes=25, You=30}

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 *