java.util.Hashtable.size()方法实例
size() 方法是用来获取此哈希表中的键的数量。
声明
以下是java.util.Hashtable.size()方法的声明。
public int size()
参数
-
NA
返回值
方法调用返回此哈希表中的键的数量。
异常
-
NA
例子
下面的例子显示java.util.Hashtable.size()方法的使用
package com.yiibai; import java.util.*; public class HashTableDemo { 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