Java Hashtable size()方法

java.util.Hashtable.size() 返回Hashtable中的元素个数。

1 语法

public int size()

2 参数

3 返回值

返回Hashtable中的元素个数。

4 示例 

package com.yiidian;

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

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

        // create hash table
        Hashtable htable = new Hashtable(3);

        // populate the table
        htable.put(1, "TP");
        htable.put(2, "IS");
        htable.put(3, "THE");
        htable.put(4, "BEST");
        htable.put(5, "TUTORIAL");

        System.out.println("Size of the hash table is: "+htable.size());
    }
}

输出结果为:

Size of the hash table is: 5

热门文章

优秀文章