El método last() de java.util.concurrent.ConcurrentSkipListSet es una función integrada en Java que devuelve el último elemento (más alto) actualmente en este conjunto.
Sintaxis:
public E last()
Valor devuelto: la función devuelve el último elemento (más alto) actualmente en este conjunto.
Excepción: la función lanza NoSuchElementException si este conjunto está vacío.
Los siguientes programas ilustran el método ConcurrentSkipListSet.last():
Programa 1:
// Java program to demonstrate last() // method of ConcurrentSkipListSet import java.util.concurrent.ConcurrentSkipListSet; class ConcurrentSkipListSetLastExample1 { public static void main(String[] args) { // Initializing the set ConcurrentSkipListSet<Integer> set = new ConcurrentSkipListSet<Integer>(); // Adding elements to this set set.add(78); set.add(64); set.add(12); set.add(45); set.add(8); // Printing the highest element of the set System.out.println("The highest element of the set: " + set.last()); } }
The highest element of the set: 78
Programa 2: Programa para mostrar NoSuchElementException en last().
// Java program to demonstrate last() // method of ConcurrentSkipListSet import java.util.concurrent.ConcurrentSkipListSet; class ConcurrentSkipListSetLastExample1 { public static void main(String[] args) { // Initializing the set ConcurrentSkipListSet<Integer> set = new ConcurrentSkipListSet<Integer>(); try { // Printing the highest element of the set System.out.println("The highest element of the set: " + set.last()); } 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#last–
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