El método java.util.TreeMap.lastEntry( ) se usa para devolver el mapeo de clave-valor asociado con la clave mayor en este mapa, o nulo si el mapa está vacío.
Sintaxis:
tree_map.lastEntry()
Parámetros: El método no toma ningún parámetro.
Valor devuelto: el método devuelve una entrada con la clave mayor, o nulo si este mapa está vacío.
Ejemplo 1: Cuando el mapa no está vacío.
Java
// Java program to illustrate // TreeMap lastEntry() method import java.util.*; class GFG { public static void main(String args[]) { // Creating an empty TreeMap TreeMap<Integer, String> tree_map = new TreeMap<Integer, String>(); // Mapping string values to int keys tree_map.put(98, "Geeks"); tree_map.put(100, "For"); tree_map.put(103, "Geeks"); // Printing last entry of the map System.out.println("The last entry is : " + tree_map.lastEntry()); } }
Producción
The last entry is : 103=Geeks
Ejemplo 2: Cuando el mapa está vacío.
Java
// Java program to illustrate // TreeMap lastEntry() method import java.util.*; class GFG { public static void main(String args[]) { // Creating an empty TreeMap TreeMap<Integer, String> tree_map = new TreeMap<Integer, String>(); // Printing last entry of the map System.out.println("The last entry is : " + tree_map.lastEntry()); } }
Producción
The last entry is : null
Publicación traducida automáticamente
Artículo escrito por abhishekr0ut y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA