El java.util.TreeMap.lastKey() se usa para recuperar la última o la clave más alta presente en el mapa.
Sintaxis:
tree_map.lastKey()
Parámetros: El método no toma ningún parámetro.
Valor devuelto: El método devuelve la última clave presente en el mapa.
Excepción: el método arroja NoSuchElementException si el mapa está vacío.
Los siguientes programas ilustran el funcionamiento del método java.util.TreeMap.lastKey():
Programa 1:
// Java code to illustrate the lastKey() method import java.util.*; public class Tree_Map_Demo { 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(10, "Geeks"); tree_map.put(15, "4"); tree_map.put(20, "Geeks"); tree_map.put(25, "Welcomes"); tree_map.put(30, "You"); // Displaying the TreeMap System.out.println("The Mappings are: " + tree_map); // Displaying the lastKey of the map System.out.println("The last key is " + tree_map.lastKey()); } }
Producción:
The Mappings are: {10=Geeks, 15=4, 20=Geeks, 25=Welcomes, 30=You} The last key is 30
Programa 2:
// Java code to illustrate the lastKey() method import java.util.*; public class Tree_Map_Demo { public static void main(String[] args) { // Creating an empty TreeMap TreeMap<String, Integer> tree_map = new TreeMap<String, Integer>(); // Mapping int values to string keys tree_map.put("Geeks", 10); tree_map.put("4", 15); tree_map.put("Geeks", 20); tree_map.put("Welcomes", 25); tree_map.put("You", 30); // Displaying the TreeMap System.out.println("The Mappings are: " + tree_map); // Displaying the lastKey of the map System.out.println("The last key is " + tree_map.lastKey()); } }
Producción:
The Mappings are: {4=15, Geeks=20, Welcomes=25, You=30} The last key is You
Publicación traducida automáticamente
Artículo escrito por Chinmoy Lenka y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA