El método pollLast() de Java.util.concurrent.TreeSet es una función integrada en Java que devuelve, recupera y elimina el último elemento (el más alto), o devuelve un valor nulo si este conjunto está vacío.
Sintaxis:
public E pollLast()
Valor devuelto: la función devuelve recupera y elimina el último elemento (el más alto), o devuelve un valor nulo si este conjunto está vacío.
Los siguientes programas ilustran el método TreeSet.pollLast():
Programa 1:
// Java program to demonstrate pollLast() // method of TreeSet import java.util.*; class TreeSetpollLastExample1 { public static void main(String[] args) { // Creating a set object TreeSet<Integer> set = new TreeSet<Integer>(); // Adding elements to this set for (int i = 10; i <= 50; i += 10) set.add(i); // Printing the content of the set System.out.println("Contents of the set: " + set); // Retrieving and removing Last element of the set System.out.println("The Last element of the set: " + set.pollLast()); // Printing the content of the set after pollLast() System.out.println("Contents of the set after pollLast: " + set); } }
Producción:
Contents of the set: [10, 20, 30, 40, 50] The Last element of the set: 50 Contents of the set after pollLast: [10, 20, 30, 40]
Programa 2:
// Java program to demonstrate pollLast() // method of TreeSet import java.util.*; class TreeSetpollLastExample2 { public static void main(String[] args) { // Creating a set object TreeSet<Integer> set = new TreeSet<Integer>(); // Printing the content of the set System.out.println("Contents of the set: " + set); // Retrieving and removing Last element of the set System.out.println("The Last element of the set: " + set.pollLast()); } }
Producción:
Contents of the set: [] The Last element of the set: null
Publicación traducida automáticamente
Artículo escrito por VatsalChoudhary y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA