El método Java.util.HashSet.contains() se usa para verificar si un elemento específico está presente en el HashSet o no. Entonces, básicamente, se usa para verificar si un Conjunto contiene algún elemento en particular.
Sintaxis:
Hash_Set.contains(Object element)
Parámetros: El elemento de parámetro es del tipo de HashSet. Este es el elemento que debe probarse si está presente en el conjunto o no.
Valor devuelto: el método devuelve verdadero si el elemento está presente en el conjunto; de lo contrario, devuelve falso.
El siguiente programa ilustra el método Java.util.HashSet.contains():
// Java code to illustrate HashSet.contains() method import java.io.*; import java.util.HashSet; public class HashSetDemo { public static void main(String args[]) { // Creating an empty HashSet HashSet<String> set = new HashSet<String>(); // Using add() method to add elements into the Set set.add("Welcome"); set.add("To"); set.add("Geeks"); set.add("4"); set.add("Geeks"); // Displaying the HashSet System.out.println("HashSet: " + set); // Check for "Geeks" in the set System.out.println("Does the Set contains 'Geeks'? " + set.contains("Geeks")); // Check for "4" in the set System.out.println("Does the Set contains '4'? " + set.contains("4")); // Check if the Set contains "No" System.out.println("Does the Set contains 'No'? " + set.contains("No")); } }
Producción:
HashSet: [4, Geeks, Welcome, To] Does the Set contains 'Geeks'? true Does the Set contains '4'? true Does the Set contains 'No'? false
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