El método contains() de java.util.concurrent.ConcurrentSkipListSet es una función integrada en Java que devuelve un valor booleano verdadero si el elemento especificado está presente en este conjunto; de lo contrario, devuelve falso.
Sintaxis:
ConcurrentSkipListSet.contains(Object o)
Parámetros: La función acepta un solo parámetro o , por ejemplo, para verificar su presencia en este conjunto.
Valor devuelto: la función devuelve un valor booleano. Devuelve True si el elemento especificado está presente en este conjunto; de lo contrario, devuelve False.
Los siguientes programas ilustran el método ConcurrentSkipListSet.contains():
Programa 1:
// Java Program Demonstrate contains() // method of ConcurrentSkipListSet import java.util.concurrent.*; class ConcurrentSkipListSetContainsExample1 { public static void main(String[] args) { // Initializing the set ConcurrentSkipListSet<Integer> set = new ConcurrentSkipListSet<Integer>(); // Adding elements to this set for (int i = 10; i <= 15; i++) set.add(i); // Checks if 9 is present in the set if (set.contains(9)) System.out.println("9 is present in the set."); else System.out.println("9 is not present in the set."); } }
9 is not present in the set.
Programa 2:
// Java Program Demonstrate contains() // method of ConcurrentSkipListSet */ import java.util.concurrent.*; class ConcurrentSkipListSetContainsExample2 { public static void main(String[] args) { // Initializing the set ConcurrentSkipListSet<String> set = new ConcurrentSkipListSet<String>(); // Adding elements to this set set.add("Gfg"); set.add("is"); set.add("fun"); // Checks if Gfg is present in the set if (set.contains("Gfg")) System.out.println("Gfg is present in the set."); else System.out.println("Gfg is not present in the set."); } }
Gfg is present in the set.
Referencia : https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentSkipListSet.html#contains-java.lang.Object-
Publicación traducida automáticamente
Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA