VOOZH about

URL: https://www.geeksforgeeks.org/java/navigablemap-polllastentry-method-in-java/

⇱ NavigableMap pollLastEntry() method in Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

NavigableMap pollLastEntry() method in Java

Last Updated : 11 Jul, 2025
The pollLastEntry() method of NavigableMap interface in Java is used to remove and return a key-value mapping associated with the greatest key in this map, or null if the map is empty. Syntax:
Map.Entry< K, V > pollLastEntry()
Where, K is the type of key maintained by this map and V is the type of values mapped to the keys. Parameters: This function does not accepts any parameter. Return Value: It returns a key-value mapping associated with the greatest key in this map, or null if the map is empty. Below programs illustrate the pollLastEntry() method in Java: Program 1: When the key is integer.
Output:
Removed key-value associated with greatest key : 7=seven
Program 2: When the key is string.
Output:
Removed key-value associated with greatest the key : two=three
Reference: https://docs.oracle.com/javase/10/docs/api/java/util/NavigableMap.html#pollLastEntry()
Comment