VOOZH about

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

⇱ NavigableSet pollLast() method in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

NavigableSet pollLast() method in Java

Last Updated : 11 Jul, 2025
The pollLast() method of NavigableSet interface in Java is used to retrieve and remove the last (highest) element, or returns null if this set is empty. Syntax:
E pollLast()
Where, E is the type of elements maintained by this Set container. Parameters: This function does not accepts any parameter. Return Value: It returns the last (highest) element, or returns null if this set is empty. Below programs illustrate the pollLast() method in Java: Program 1: NavigableSet with integer elements.
Output:
Greatest(last) element removed is : 6
Program 2: NavigableSet with string elements.
Output:
Greatest(last) element removed is : G
Reference: https://docs.oracle.com/javase/10/docs/api/java/util/NavigableSet.html#pollLast(E)
Comment