Java TreeMap.get(Object key)
Syntax
TreeMap.get(Object key) has the following syntax.
public V get(Object key)
Example
In the following code shows how to use TreeMap.get(Object key) method.
import java.util.TreeMap;
//from w ww. ja va 2 s . c o m
public class Main {
public static void main(String[] args) {
TreeMap<Integer, String> treemap = new TreeMap<Integer, String> ();
// populating tree map
treemap.put(2, "two");
treemap.put(1, "one");
treemap.put(3, "three");
treemap.put(6, "six");
treemap.put(5, "from java2s.com");
System.out.println("Checking value for key 3");
System.out.println("Value is: "+ treemap.get(3));
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.util »
Java Tutorial »
java.util »