El método firstEntry() de la interfaz NavigableMap en Java se usa para 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 > firstEntry()
Donde, K es el tipo de clave mantenida por este mapa y V es el tipo de valores asignados a las claves.
Parámetros : No acepta ningún parámetro.
Valor de retorno : Devuelve un mapeo clave-valor asociado con la menor clave en este mapa, o nulo si el mapa está vacío.
Los siguientes programas ilustran el método firstEntry() en Java:
Programa 1 : Cuando la clave es entera.
// Java code to demonstrate the working of // firstEntry() 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("The mapping with least key is : " + nmmp.firstEntry()); } }
Producción:
The mapping with least key is : 2=two
Programa 2 : Cuando la clave es una string.
// Java code to demonstrate the working of // firstEntry() 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("The mapping associated with least key is : " + tmmp.firstEntry()); } }
Producción:
The mapping associated with least key is : one=two
Referencia : https://docs.oracle.com/javase/10/docs/api/java/util/NavigableMap.html#firstEntry()