El método java.util.vector.contains() se usa para verificar si un elemento específico está presente en el Vector o no. Básicamente, se usa para verificar si un vector contiene algún elemento en particular o no.
Sintaxis:
Vector.contains(Object element)
Parámetros: este método toma un elemento de parámetro obligatorio que es del tipo de vector. Este es el elemento que debe probarse si está presente en el vector o no.
Valor de retorno: este método devuelve True si el elemento está presente en el vector; de lo contrario, devuelve False .
Los siguientes programas ilustran el método Java.util.Vector.contains():
Programa 1:
// Java code to illustrate contains() 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); // Check for "Geeks" in the Vector System.out.println("Does the vector contains 'Geeks'? " + vec_tor.contains("Geeks")); // Check for "4" in the Vector System.out.println("Does the Vector contains '4'? " + vec_tor.contains("4")); // Check if the Queue contains "No" System.out.println("Does the Queue contains 'No'? " + vec_tor.contains("No")); } }
Vector: [Welcome, To, Geeks, 4, Geeks] Does the vector contains 'Geeks'? true Does the Vector contains '4'? true Does the Queue contains 'No'? false
Programa 2:
// Java code to illustrate contains() 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 into the Vector vec_tor.add(10); vec_tor.add(15); vec_tor.add(30); vec_tor.add(20); vec_tor.add(5); // Displaying the Vector System.out.println("Vector: " + vec_tor); // Check for "Geeks" in the Vector System.out.println("Does the vector contains 'Geeks'? " + vec_tor.contains("Geeks")); // Check for "4" in the Vector System.out.println("Does the Vector contains '4'? " + vec_tor.contains("4")); // Check if the vector contains "No" System.out.println("Does the Vector contains 'No'? " + vec_tor.contains("No")); } }
Vector: [10, 15, 30, 20, 5] Does the vector contains 'Geeks'? false Does the Vector contains '4'? false Does the Vector contains 'No'? false
Publicación traducida automáticamente
Artículo escrito por kundankumarjha y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA