Mapee el método putAll() en Java con ejemplos

Este método se utiliza para copiar todas las asignaciones del mapa especificado a este mapa.

Sintaxis:

void putAll(Map m)

Parámetros: este método tiene el único argumento map m, que contiene asignaciones de clave-valor que se copiarán en el mapa dado.

Devoluciones: este método devuelve el valor anterior asociado con la clave si está presente, de lo contrario devuelve -1.

Los siguientes programas muestran la implementación del método int putAll().

Programa 1:

// Java code to show the implementation of
// putAll method in Map interface
  
import java.util.*;
public class GfG {
  
    // Driver code
    public static void main(String[] args)
    {
  
        // Initializing a Map of type HashMap
        Map<Integer, String> map = new HashMap<>();
        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<Integer, String> mp = new HashMap<>();
        mp.put(10, "Ten");
        mp.put(30, "Thirty");
        mp.put(50, "Fifty");
  
        map.putAll(mp);
  
        System.out.println(map);
    }
}
Producción:

{1=One, 3=Three, 5=Five, 7=Seven, 9=Nine}
{1=One, 50=Fifty, 3=Three, 5=Five, 7=Seven, 9=Nine, 10=Ten, 30=Thirty}

Programa 2: a continuación se muestra el código para mostrar la implementación de put().

// Java code to show the implementation of
// putAll method in Map interface
import java.util.*;
public class GfG {
  
    // Driver code
    public static void main(String[] args)
    {
  
        // Initializing a Map of type HashMap
        Map<String, String> map = new HashMap<>();
        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<String, String> mp = new HashMap<>();
        mp.put("10", "Ten");
        mp.put("30", "Thirty");
        mp.put("50", "Fifty");
  
        map.putAll(mp);
  
        System.out.println(map);
    }
}
Producción:

{1=One, 3=Three, 5=Five, 7=Seven, 9=Nine}
{1=One, 3=Three, 5=Five, 7=Seven, 9=Nine, 50=Fifty, 30=Thirty, 10=Ten}

Referencia:
Documentos de Oracle

Publicación traducida automáticamente

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