VOOZH about

URL: https://www.geeksforgeeks.org/java/concurrentskiplistset-polllast-method-in-java/

⇱ ConcurrentSkipListSet pollLast() method in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

ConcurrentSkipListSet pollLast() method in Java

Last Updated : 21 Sep, 2018
The pollLast() method of java.util.concurrent.ConcurrentSkipListSet is an in-built function in Java which returns retrieves and removes the last (highest) element, or returns null if this set is empty. Syntax:
public E pollLast()
Return Value: The function returns retrieves and removes the last (highest) element, or returns null if this set is empty. Below programs illustrate the ConcurrentSkipListSet.pollLast() method: Program 1:
Output:
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]
Program 2:
Output:
Contents of the set: []
The Last element of the set: null
Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/ConcurrentSkipListSet.html#pollLast--
Comment