Java TreeMap size()方法
java.util.TreeMap.size() 返回TreeMap中存在的键值对的数量。
1 语法
public int size()
2 参数
无
3 返回值
返回TreeMap中存在的键值对的数量。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.TreeMap.size()方法的例子
*/
import java.util.*;
public class Demo {
public static void main(String[] args) {
// creating tree map
TreeMap treemap = new TreeMap();
// populating tree map
treemap.put(2, "two");
treemap.put(1, "one");
treemap.put(3, "three");
treemap.put(6, "six");
treemap.put(5, "five");
// getting size of the map
System.out.println("Size of the map: "+treemap.size());
}
}
输出结果为:
Size of the map: 5