El método addAll() de la clase java.util.Collections se usa para agregar todos los elementos especificados a la colección especificada. Los elementos que se agregarán se pueden especificar individualmente o como una array. El comportamiento de este método de conveniencia es idéntico al de c.addAll(Arrays.asList(elements)), pero es probable que este método se ejecute significativamente más rápido en la mayoría de las implementaciones.
Sintaxis:
public static boolean addAll(Collection c, T... elements)
Parámetros: este método toma el siguiente argumento como parámetro
- c- la colección en la que se van a insertar los elementos
- elementos- los elementos para insertar en c
Valor devuelto: este método devuelve verdadero si la colección cambió como resultado de la llamada.
Excepción: este método arroja NullPointerException si los elementos contienen uno o más valores nulos y c no permite elementos nulos, o si c o elementos son nulos
A continuación se muestran los ejemplos para ilustrar el método addAll()
Ejemplo 1:
// Java program to demonstrate // addAll() method import java.util.*; public class GFG1 { public static void main(String[] argv) throws Exception { try { // creating object of List<String> List<String> arrlist = new ArrayList<String>(); // Adding element to arrlist arrlist.add("A"); arrlist.add("B"); arrlist.add("C"); arrlist.add("Tajmahal"); // printing the arrlist before operation System.out.println("arrlist before operation : " + arrlist); // add the specified element to specified Collections // using addAll() method boolean b = Collections.addAll(arrlist, "1", "2", "3"); // printing the arrlist after operation System.out.println("result : " + b); // printing the arrlist after operation System.out.println("arrlist after operation : " + arrlist); } catch (NullPointerException e) { System.out.println("Exception thrown : " + e); } catch (IllegalArgumentException e) { System.out.println("Exception thrown : " + e); } } }
arrlist before operation : [A, B, C, Tajmahal] result : true arrlist after operation : [A, B, C, Tajmahal, 1, 2, 3]
Producción:
arrlist before operation : [A, B, C, Tajmahal] result : true arrlist after operation : [A, B, C, Tajmahal, 1, 2, 3]
Ejemplo 2: para NullPointerException
// Java program to demonstrate // addAll() method import java.util.*; public class GFG1 { public static void main(String[] argv) throws Exception { try { // creating object of List<String> List<String> arrlist = new ArrayList<String>(); // Adding element to arrlist arrlist.add("A"); arrlist.add("B"); arrlist.add("C"); arrlist.add("Tajmahal"); // printing the arrlist before operation System.out.println("arrlist before operation : " + arrlist); // add the specified element to specified Collections // using addAll() method System.out.println("\nTrying to add the null value with arrlist"); boolean b = Collections.addAll(null, arrlist); // printing the arrlist after operation System.out.println("result : " + b); // printing the arrlist after operation System.out.println("arrlist after operation : " + arrlist); } catch (NullPointerException e) { System.out.println("Exception thrown : " + e); } catch (IllegalArgumentException e) { System.out.println("Exception thrown : " + e); } } }
arrlist before operation : [A, B, C, Tajmahal] Trying to add the null value with arrlist Exception thrown : java.lang.NullPointerException
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA