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