gustavo
0
Q:

java get keys from hashmap

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"
7
//returns as set
hashmap.keySet()
0

New to Communities?

Join the community