El método java.util.vector .removeAll(Collection col) se utiliza para eliminar todos los elementos del vector, presentes en la colección especificada.
Sintaxis:
Vector.removeAll(Collection col)
Parámetros: este método acepta un parámetro obligatorio col que es la colección cuyos elementos se eliminarán del vector.
Valor de retorno: este método devuelve verdadero si el vector se altera debido a la operación, de lo contrario, es falso .
Excepción: el método lanza NullPointerException si la colección especificada es nula.
Los siguientes programas ilustran el método Java.util.Vector.removeAll(Collection col):
Programa 1:
// Java code to illustrate removeAll() import java.util.*; public class VectorDemo { public static void main(String args[]) { // Creating an empty Vector Vector<String> vec_tor = new Vector<String>(); // Use add() method to add elements in the Vector vec_tor.add("Geeks"); vec_tor.add("for"); vec_tor.add("Geeks"); vec_tor.add("10"); vec_tor.add("20"); // Output the Vector System.out.println("Vector: " + vec_tor); // Creating an empty Vector Vector<String> colvec_tor = new Vector<String>(); // Use add() method to add elements in the Vector colvec_tor.add("Geeks"); colvec_tor.add("for"); colvec_tor.add("Geeks"); // Remove the head using remove() boolean changed = vec_tor.removeAll(colvec_tor); // Print the result if (changed) System.out.println("Collection removed"); else System.out.println("Collection not removed"); // Print the final Vector System.out.println("Final Vector: " + vec_tor); } }
Vector: [Geeks, for, Geeks, 10, 20] Collection removed Final Vector: [10, 20]
Programa 2:
// Java code to illustrate removeAll() import java.util.*; public class VectorDemo { public static void main(String args[]) { // Creating an empty Vector Vector<Integer> vec_tor = new Vector<Integer>(); // Use add() method to add elements in the Vector vec_tor.add(1); vec_tor.add(2); vec_tor.add(3); vec_tor.add(10); vec_tor.add(20); // Output the Vector System.out.println("Vector: " + vec_tor); // Creating an empty Vector Vector<Integer> colvec_tor = new Vector<Integer>(); // Use add() method to add elements in the Vector colvec_tor.add(30); colvec_tor.add(40); colvec_tor.add(50); // Remove the head using remove() boolean changed = vec_tor.removeAll(colvec_tor); // Print the result if (changed) System.out.println("Collection removed"); else System.out.println("Collection not removed"); // Print the final Vector System.out.println("Final Vector: " + vec_tor); } }
Vector: [1, 2, 3, 10, 20] Collection not removed Final Vector: [1, 2, 3, 10, 20]
Publicación traducida automáticamente
Artículo escrito por kundankumarjha y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA