El método putAll() de la interfaz SortedMap en Java se usa para copiar todas las asignaciones del SortedMap especificado a este SortedMap.
Sintaxis:
void putAll(Map m)
Parámetros: este método tiene el único argumento map m que contiene asignaciones de valores clave que se copiarán en un SortedMap dado.
Devoluciones: este método devuelve el valor anterior asociado con la clave si está presente, de lo contrario devuelve -1.
Nota : el método putAll() en SortedMap se hereda de la interfaz Map en Java.
Los siguientes programas ilustran la implementación del método int putAll():
Programa 1:
Java
// Java code to show the implementation of // putAll 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); SortedMap<Integer, String> mp = new TreeMap<>(); mp.put(10, "Ten"); mp.put(30, "Thirty"); mp.put(50, "Fifty"); map.putAll(mp); System.out.println(map); } }
{1=One, 3=Three, 5=Five, 7=Seven, 9=Nine} {1=One, 3=Three, 5=Five, 7=Seven, 9=Nine, 10=Ten, 30=Thirty, 50=Fifty}
Programa 2: a continuación se muestra el código para mostrar la implementación de putAll().
Java
// Java code to show the implementation of // putAll 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); SortedMap<String, String> mp = new TreeMap<>(); mp.put("10", "Ten"); mp.put("30", "Thirty"); mp.put("50", "Fifty"); map.putAll(mp); System.out.println(map); } }
{1=One, 3=Three, 5=Five, 7=Seven, 9=Nine} {1=One, 10=Ten, 3=Three, 30=Thirty, 5=Five, 50=Fifty, 7=Seven, 9=Nine}
Referencia: https://docs.oracle.com/javase/7/docs/api/java/util/Map.html#put(K, %20V)