El método pollFirstEntry() de la interfaz NavigableMap en Java se usa para eliminar y devolver un mapeo de clave-valor asociado con la clave mínima en este mapa, o nulo si el mapa está vacío.
Sintaxis :
Map.Entry< K, V > pollFirstEntry()
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 mínima después de eliminarlo de este mapa, o nulo si el mapa está vacío.
Los siguientes programas ilustran el método pollFirstEntry() en Java:
Programa 1 : Cuando la clave es entera.
// Java code to demonstrate the working of // pollFirstEntry() 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("First removed key-value from the map : " + nmmp.pollFirstEntry()); } }
Producción:
First removed key-value from the map : 2=two
Programa 2 : Cuando la clave es una string.
// Java code to demonstrate the working of // pollFirstEntry() 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("First removed key-value from the map : " + tmmp.pollFirstEntry()); } }
Producción:
First removed key-value from the map : one=two
Referencia : https://docs.oracle.com/javase/10/docs/api/java/util/NavigableMap.html#pollFirstEntry()