Answers for "map get value by key"

0

get particular key and value from Map

if (map.containsKey(key)) {
   Object value = map.get(key);
 System.out.println("Key : " + key +" value :"+ value);
 }
Posted by: Guest on June-12-2021
2

hashmap get value by key java

import java.util.HashMap;
//Within a class
//You can do new HashMap<Key Type, Value Type>();, but you don't need to
HashMap<Int, String> examplehashmap=new HashMap<>();
{
//put in values
 examplehashmap.put(5, "example");
};
//get value
examplehashmap.get(5);
//returns "example"
Posted by: Guest on May-04-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language