El método contains() de Java AbstractCollection se utiliza para comprobar si un elemento está presente en una colección o no. Toma el elemento como parámetro y devuelve True si el elemento está presente en la colección.
Sintaxis:
AbstractCollection.contains(Object element)
Parámetros: El elemento de parámetro es de tipo Colección. Este parámetro se refiere al elemento cuya ocurrencia se necesita verificar en la colección.
Valor devuelto: el método devuelve True si el elemento está presente en la colección; de lo contrario, devuelve False.
Los siguientes programas ilustran el método Java.util.AbstractCollection.contains():
Programa 1:
Java
// Java code to illustrate boolean contains() import java.util.*; import java.util.AbstractCollection; public class AbstractCollectionDemo { public static void main(String args[]) { // Creating an empty Collection AbstractCollection<String> abs = new LinkedList<String>(); // Use add() method to add // elements in the collection abs.add("Geeks"); abs.add("for"); abs.add("Geeks"); abs.add("10"); abs.add("20"); // Displaying the collection System.out.println("Abstract Collection:" + abs); // Check if the collection contains "Hello" System.out.println("\nDoes the Collection" + " contains 'Hello': " + abs.contains("Hello")); // Check if the Collection contains "20" System.out.println("Does the collection" + " contains '20': " + abs.contains("20")); // Check if the Collection contains "Geeks" System.out.println("Does the Collection" + " contains 'Geeks': " + abs.contains("Geeks")); } }
Abstract Collection:[Geeks, for, Geeks, 10, 20] Does the Collection contains 'Hello': false Does the collection contains '20': true Does the Collection contains 'Geeks': true
Programa 2:
Java
// Java code to illustrate boolean contains() import java.util.*; import java.util.AbstractCollection; public class AbstractCollectionDemo { public static void main(String args[]) { // Creating an empty Collection AbstractCollection<String> abs = new TreeSet<String>(); // Use add() method to add // elements in the collection abs.add("Geeks"); abs.add("for"); abs.add("Geeks"); abs.add("TreeSet"); abs.add("20"); // Displaying the collection System.out.println("Abstract Collection:" + abs); // Check if the collection contains "TreeSet" System.out.println("\nDoes the Collection " + "contains 'TreeSet': " + abs.contains("TreeSet")); // Check if the collection contains "Hello" System.out.println("\nDoes the Collection" + " contains 'Hello': " + abs.contains("Hello")); // Check if the Collection contains "20" System.out.println("Does the collection" + " contains '20': " + abs.contains("20")); // Check if the Collection contains "Geeks" System.out.println("Does the Collection" + " contains 'Geeks': " + abs.contains("Geeks")); } }
Abstract Collection:[20, Geeks, TreeSet, for] Does the Collection contains 'TreeSet': true Does the Collection contains 'Hello': false Does the collection contains '20': true Does the Collection contains 'Geeks': true
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