El método Java.util.Vector .isEmpty() en Java se utiliza para comprobar y verificar si un vector está vacío o no. Devuelve True si el Vector está vacío; de lo contrario, devuelve False.
Sintaxis:
Vector.isEmpty()
Parámetros: Este método no toma ningún parámetro.
Valor de retorno: Esta función devuelve True si el Vector está vacío, de lo contrario, devuelve False .
Los siguientes programas ilustran el método Java.util.Vector.isEmpty():
Programa 1:
// Java code to illustrate isEmpty() 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 into the Vector vec_tor.add("Welcome"); vec_tor.add("To"); vec_tor.add("Geeks"); vec_tor.add("4"); vec_tor.add("Geeks"); // Displaying the Vector System.out.println("Vector: " + vec_tor); // Verifying if the Vector is empty or not System.out.println("Is the Vector empty? " + vec_tor.isEmpty()); // Clearing the Vector vec_tor.clear(); // Displaying the Vector System.out.println("Vector after clear(): " + vec_tor); // Verifying if the Vector is empty or not System.out.println("Is the Vector empty? " + vec_tor.isEmpty()); } }
Producción:
Vector: [Welcome, To, Geeks, 4, Geeks] Is the Vector empty? false Vector after clear(): [] Is the Vector empty? true
Programa 2:
// Java code to illustrate isEmpty() import java.util.*; public class VectorDemo { public static void main(String args[]) { // Creating an empty Vector Vector<Integer> vec_tor = new Vector<Integer>(); // Displaying the Vector System.out.println("Vector: " + vec_tor); // Verifying if the Vector is empty or not System.out.println("Is the Vector empty? " + vec_tor.isEmpty()); } }
Producción:
Vector: [] Is the Vector empty? true
Publicación traducida automáticamente
Artículo escrito por kundankumarjha y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA