El método addAll ( Colección C ) de Java AbstractCollection se usa para agregar todos los elementos de una colección mencionada a esta colección. Los elementos se añaden aleatoriamente sin seguir ningún orden específico.
Sintaxis:
boolean addAll(Collection C)
Parámetros: El parámetro C es una colección de cualquier tipo que se agregará a la colección.
Valor devuelto: el método devuelve verdadero si agrega con éxito los elementos de la colección C a la colección existente; de lo contrario, devuelve falso.
Los siguientes programas ilustran el método AbstractCollection.addAll():
Programa 1:
// Java code to illustrate addAll() // method of AbstractCollection import java.util.*; import java.util.AbstractCollection; public class AbstractCollectionDemo { public static void main(String args[]) { // Creating an empty collection AbstractCollection<String> abs1 = new TreeSet<String>(); // Use add() method to add // elements into the Collection abs1.add("Welcome"); abs1.add("To"); abs1.add("Geeks"); abs1.add("4"); abs1.add("Geeks"); abs1.add("TreeSet"); // Displaying the Collection System.out.println("AbstractCollection 1: " + abs1); // Creating anothe Collection AbstractCollection<String> abs2 = new TreeSet<String>(); // Displaying the Collection System.out.println("AbstractCollection 2: " + abs2); // Using addAll() method to Append abs2.addAll(abs1); // Displaying the Collection System.out.println("AbstractCollection 2: " + abs2); } }
Producción:
AbstractCollection 1: [4, Geeks, To, TreeSet, Welcome] AbstractCollection 2: [] AbstractCollection 2: [4, Geeks, To, TreeSet, Welcome]
Programa 2:
// Java code to illustrate addAll() // method of AbstractCollection import java.util.*; import java.util.AbstractCollection; public class AbstractCollectionDemo { public static void main(String args[]) { // Creating an empty collection AbstractCollection<Integer> abs1 = new TreeSet<Integer>(); // Use add() method to add // elements into the Collection abs1.add(10); abs1.add(20); abs1.add(30); abs1.add(40); abs1.add(50); // Displaying the Collection System.out.println("AbstractCollection 1: " + abs1); // Creating anothe Collection AbstractCollection<Integer> abs2 = new TreeSet<Integer>(); // Displaying the Collection System.out.println("AbstractCollection 2: " + abs2); // Using addAll() method to Append abs2.addAll(abs1); // Displaying the Collection System.out.println("AbstractCollection 2: " + abs2); } }
Producción:
AbstractCollection 1: [10, 20, 30, 40, 50] AbstractCollection 2: [] AbstractCollection 2: [10, 20, 30, 40, 50]
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