El método Java.util.Vector.removeAllElements() se usa para eliminar todos los componentes de este Vector y establece su tamaño en cero.
Sintaxis:
Vector.removeAllElements()
Parámetros: El método no toma ningún parámetro.
Valor devuelto: la función no devuelve ningún valor.
Los siguientes programas ilustran el método Java.util.Vector.removeAllElements().
Ejemplo 1:
// Java code to illustrate removeAllElements() import java.util.*; public class GFG { public static void main(String args[]) { // Creating an empty Vector Vector<String> vector = new Vector<String>(); // Use add() method to add elements into the Vector vector.add("Welcome"); vector.add("To"); vector.add("Geeks"); vector.add("4"); vector.add("Geeks"); // Displaying the Vector System.out.println("Vector: " + vector); // removeAllElementsing the Vector // using removeAllElements() method vector.removeAllElements(); // Displaying the final Vector after removeAllElement System.out.println("The final Vector: " + vector); } }
Producción:
Vector: [Welcome, To, Geeks, 4, Geeks] The final Vector: []
Ejemplo 2:
// Java code to illustrate removeAllElements() import java.util.*; public class GFG { public static void main(String args[]) { // Creating an empty Vector Vector<Integer> vector = new Vector<Integer>(); // Use add() method to add elements into the Queue vector.add(10); vector.add(15); vector.add(30); vector.add(20); vector.add(5); // Displaying the Vector System.out.println("Vector: " + vector); // removeAllElementsing the Vector // using removeAllElements() method vector.removeAllElements(); // Displaying the final Vector after removeAllElement System.out.println("The final Vector: " + vector); } }
Producción:
Vector: [10, 15, 30, 20, 5] The final Vector: []
Publicación traducida automáticamente
Artículo escrito por ankit15697 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA