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.