El método java.util.TreeMap.get() de la clase TreeMap se usa para recuperar u obtener el valor asignado por una clave particular mencionada en el parámetro. Devuelve NULL cuando el mapa no contiene tal mapeo para la clave.
Sintaxis:
Tree_Map.get(Object key_element)
Parámetro: el método toma un parámetro key_element del tipo de objeto y hace referencia a la clave cuyo valor asociado se supone que debe obtenerse.
Valor devuelto: el método devuelve el valor asociado con key_element en el parámetro.
Los siguientes programas ilustran el funcionamiento del método java.util.TreeMap.get():
Programa 1: Asignación de valores de string a claves enteras.
// Java code to illustrate the get() 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("Initial Mappings are: " + tree_map); // Getting the value of 25 System.out.println("The Value is: " + tree_map.get(25)); // Getting the value of 10 System.out.println("The Value is: " + tree_map.get(10)); } }
Initial Mappings are: {10=Geeks, 15=4, 20=Geeks, 25=Welcomes, 30=You} The Value is: Welcomes The Value is: Geeks
Programa 2: Asignación de valores enteros a claves de string.
// Java code to illustrate the get() 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("Initial Mappings are: " + tree_map); // Getting the value of "Geeks" System.out.println("The Value is: " + tree_map.get("Geeks")); // Getting the value of "You" System.out.println("The Value is: " + tree_map.get("You")); } }
Initial Mappings are: {4=15, Geeks=20, Welcomes=25, You=30} The Value is: 20 The Value is: 30
Nota: La misma operación se puede realizar con cualquier tipo de Mapping con variación y combinación de diferentes tipos de datos.
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