El método get() de java.util.concurrent.ConcurrentHashMap es una función integrada en Java que acepta una clave como parámetro y devuelve el valor asignado. Devuelve nulo si no existe una asignación para la clave pasada como parámetro.
Sintaxis:
Concurrent.get(Object key_element)
Parámetros: El método acepta un solo parámetro key_element de tipo objeto que hace referencia a la clave cuyo valor asociado se supone que debe devolverse.
Valor devuelto: el método devuelve el valor asociado con key_element en el parámetro.
Excepción: la función genera NullPointerException cuando el elemento_clave especificado es nulo.
Los siguientes programas ilustran el uso del método java.util.concurrent.ConcurrentHashMap.get() :
Programa 1: este programa implica la asignación de valores de string a claves enteras.
// Java Program Demonstrate get() // method of ConcurrentHashMap import java.util.concurrent.*; class GFG { public static void main(String[] args) { ConcurrentHashMap<Integer, String> chm = new ConcurrentHashMap<Integer, String>(); chm.put(100, "Geeks"); chm.put(101, "for"); chm.put(102, "Geeks"); chm.put(103, "Contribute"); // Displaying the HashMap System.out.println("The Mappings are: "); System.out.println(chm); // Display the value of 100 System.out.println("The Value associated to " + "100 is : " + chm.get(100)); // Getting the value of 103 System.out.println("The Value associated to " + "103 is : " + chm.get(103)); } }
The Mappings are: {100=Geeks, 101=for, 102=Geeks, 103=Contribute} The Value associated to 100 is : Geeks The Value associated to 103 is : Contribute
Programa 2: este programa involucra la asignación de valores enteros a claves de string.
// Java Program Demonstrate get() // method of ConcurrentHashMap import java.util.concurrent.*; class GFG { public static void main(String[] args) { ConcurrentHashMap<String, Integer> chm = new ConcurrentHashMap<String, Integer>(); chm.put("Geeks", 100); chm.put("GFG", 10); chm.put("GeeksforGeeks", 25); chm.put("Contribute", 102); // Displaying the HashMap System.out.println("The Mappings are: "); System.out.println(chm); // Display the value of Geeks System.out.println("The Value associated to " + "Geeks is : " + chm.get("Geeks")); // Getting the value of Contribute System.out.println("The Value associated to " + "Contribute is : " + chm.get("Contribute")); } }
The Mappings are: {GeeksforGeeks=25, Geeks=100, GFG=10, Contribute=102} The Value associated to Geeks is : 100 The Value associated to Contribute is : 102
Referencia: https://docs.oracle.com/javase/7/docs/api/java/util/concurrent/ConcurrentHashMap.html#get()
Publicación traducida automáticamente
Artículo escrito por RICHIK BHATTACHARJEE y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA