Java TreeMap Remove Value Example
Chapter:
Collections
Last Updated:
13-05-2016 20:05:26 UTC
Program:
/* ............... START ............... */
import java.util.TreeMap;
public class JavaTreeMapRemoveValue {
public static void main(String[] args) {
TreeMap treeMap = new TreeMap();
treeMap.put("1", "One");
treeMap.put("2", "Two");
treeMap.put("3", "Three");
Object obj = treeMap.remove("2");
System.out.println(obj + " Removed from TreeMap");
}
}
/* ............... END ............... */
Output
Tags
Collection, TreeMap Remove Value, Java