El método first() de java.util.concurrent.ConcurrentSkipListSet es una función integrada en Java que devuelve el primer elemento (el más bajo) actualmente en este conjunto.
Sintaxis:
ConcurrentSkipListSet.first()
Valor devuelto: la función devuelve el primer elemento (más bajo) actualmente en este conjunto.
Excepción: la función arroja NoSuchElementException si este conjunto está vacío.
Los siguientes programas ilustran el método ConcurrentSkipListSet.first():
Programa 1:
// Java Program Demonstrate first() // method of ConcurrentSkipListSet import java.util.concurrent.ConcurrentSkipListSet; class ConcurrentSkipListSetFirstExample1 { public static void main(String[] args) { // Initializing the set ConcurrentSkipListSet<Integer> set = new ConcurrentSkipListSet<Integer>(); // Adding elements to first set set.add(10); set.add(35); set.add(20); set.add(25); System.out.println("The lowest element in the set: " + set.first()); } }
The lowest element in the set: 10
Programa 2: Programa para mostrar NoSuchElementException en first().
// Java Program Demonstrate first() // method of ConcurrentSkipListSet import java.util.concurrent.ConcurrentSkipListSet; class ConcurrentSkipListSetFirstExample2 { public static void main(String[] args) throws InterruptedException { // Initializing the set ConcurrentSkipListSet<Integer> set = new ConcurrentSkipListSet<Integer>(); try { System.out.println("The lowest element in the set: " + set.first()); } catch (Exception e) { System.out.println("Exception :" + e); } } }
Exception :java.util.NoSuchElementException
Referencia: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentSkipListSet.html#first–
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