Remove all values from TreeMap in Java
Description
The following code shows how to remove all values from TreeMap.
Example
/*w ww. j av a 2s .c o m*/
import java.util.TreeMap;
public class Main {
public static void main(String[] args) {
TreeMap<String,String> treeMap = new TreeMap<String,String>();
treeMap.put("1", "One");
treeMap.put("2", "Two");
treeMap.put("3", "Three");
treeMap.clear();
System.out.println(treeMap.size());
}
}
The code above generates the following result.