Java HashMap size()方法

java.util.HashMap.size() 返回Map的元素个数。

1 语法

public int size()

2 参数

3 返回值

返回Map的元素个数。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.HashMap.size()方法的例子
 */
import java.util.*;

public class Demo {
    public static void main(String args[]) {

        // create hash map
        HashMap newmap = new HashMap();

        // populate hash map
        newmap.put(1, "tutorials");
        newmap.put(2, "point");
        newmap.put(3, "is best");

        System.out.println("Size of the map: "+ newmap.size());
    }
}

输出结果为:

Size of the map: 3

热门文章

优秀文章