El método contains() de Java AbstractSet se usa para verificar si un elemento está presente en un conjunto o no. Toma el elemento como parámetro y devuelve True si el elemento está presente en el conjunto.
Sintaxis:
public boolean contains(Object element)
Parámetros: El elemento de parámetro es de tipo set. Este parámetro se refiere al elemento cuya ocurrencia se necesita verificar en el conjunto.
Valor devuelto: el método devuelve un valor booleano . Devuelve True si el elemento está presente en el conjunto; de lo contrario, devuelve False.
Los siguientes programas ilustran el método AbstractSet.contains():
Programa 1:
// Java code to illustrate // AbstractSet.contains() import java.util.*; public class GFG { public static void main(String args[]) { // Creating an empty set AbstractSet<String> abs = new TreeSet<String>(); // Use add() method to add // elements in the set abs.add("Geeks"); abs.add("for"); abs.add("Geeks"); abs.add("10"); abs.add("20"); // Displaying the set System.out.println("AbstractSet: " + abs); // Check if the set contains "Hello" System.out.println("\nDoes the set" + " contains 'Hello': " + abs.contains("Hello")); // Check if the set contains "20" System.out.println("Does the set" + " contains '20': " + abs.contains("20")); // Check if the set contains "Geeks" System.out.println("Does the set" + " contains 'Geeks': " + abs.contains("Geeks")); } }
Producción:
AbstractSet: [10, 20, Geeks, for] Does the set contains 'Hello': false Does the set contains '20': true Does the set contains 'Geeks': true
Programa 2:
// Java code to illustrate // AbstractSet.contains() import java.util.*; public class GFG { public static void main(String args[]) { // Creating an empty set AbstractSet<Integer> abs = new TreeSet<Integer>(); // Use add() method to add // elements in the set abs.add(10); abs.add(20); abs.add(30); abs.add(40); abs.add(50); // Displaying the set System.out.println("AbstractSet:" + abs); // Check if the set contains 10 System.out.println("\nDoes the set " + "contains '10': " + abs.contains(10)); // Check if the set contains 50 System.out.println("\nDoes the set" + " contains '50': " + abs.contains(50)); // Check if the set contains 100 System.out.println("Does the set" + " contains '100': " + abs.contains(100)); } }
Producción:
AbstractSet:[10, 20, 30, 40, 50] Does the set contains '10': true Does the set contains '50': true Does the set contains '100': false