El método pollLastEntry() de la interfaz NavigableMap en Java se usa para eliminar y devolver un mapeo de clave-valor asociado con la clave mayor en este mapa, o nulo si el mapa está vacío.
Sintaxis :
Map.Entry< K, V > pollLastEntry()
Donde, K es el tipo de clave mantenida por este mapa y V es el tipo de valores asignados a las claves.
Parámetros : Esta función no acepta ningún parámetro.
Valor devuelto : Devuelve un mapeo clave-valor asociado con la clave mayor en este mapa, o nulo si el mapa está vacío.
Los siguientes programas ilustran el método pollLastEntry() en Java:
Programa 1 : Cuando la clave es entera.
// Java code to demonstrate the working of // pollLastEntry() method import java.io.*; import java.util.*; public class GFG { public static void main(String[] args) { // Declaring the NavigableMap of Integer and String NavigableMap<Integer, String> nmmp = new TreeMap<>(); // assigning the values in the NavigableMap // using put() nmmp.put(2, "two"); nmmp.put(7, "seven"); nmmp.put(3, "three"); System.out.println("Removed key-value associated with"+ " greatest key : " + nmmp.pollLastEntry()); } }
Producción:
Removed key-value associated with greatest key : 7=seven
Programa 2 : Cuando la clave es una string.
// Java code to demonstrate the working of // pollLastEntry() method import java.io.*; import java.util.*; public class GFG { public static void main(String[] args) { // Declaring the NavigableMap of Integer and String NavigableMap<String, String> tmmp = new TreeMap<>(); // assigning the values in the NavigableMap // using put() tmmp.put("one", "two"); tmmp.put("six", "seven"); tmmp.put("two", "three"); System.out.println("Removed key-value associated with"+ " greatest the key : " + tmmp.pollLastEntry()); } }
Producción:
Removed key-value associated with greatest the key : two=three
Referencia : https://docs.oracle.com/javase/10/docs/api/java/util/NavigableMap.html#pollLastEntry()