hashmap get value java code example
Example 1: hashmap get value java
import java.util.HashMap;
HashMap<String, String> dir = new HashMap<String, String>();
dir.put("hi", "hello");
dir.put("wow", "amazing");
System.out.println(dir.get("hi");
Example 2: hashmap get value by key java
import java.util.HashMap;
HashMap<Int, String> examplehashmap=new HashMap<>();
{
examplehashmap.put(5, "example");
};
examplehashmap.get(5);
Example 3: java hashmap get value
package com.tutorialspoint;
import java.util.*;
public class HashMapDemo {
public static void main(String args[]) {
HashMap newmap = new HashMap();
newmap.put(1, "tutorials");
newmap.put(2, "point");
newmap.put(3, "is best");
String val = (String)newmap.get(3);
System.out.println("Value for key 3 is: " + val);
}
}