java.util.Hashtable.rehash()方法實例
rehash() 方法是用來增加容量和內部對其進行重組這個哈希表。這樣做是為了容納並更有效地訪問其條目。當在哈希表中的鍵的數量超過這個哈希表的容量此方法被自動調用。
聲明
以下是java.util.Hashtable.rehash()方法的聲明。
protected void rehash()
參數
-
NA
返回值
NA
異常
-
NA
例子
NA
This is a protected method and called automatically when the number of keys in the hashtable exceeds this hashtable's capacity.So the stand alone application can not be used to test the method.
現在編譯和運行上麵的代碼示例,將產生以下結果。
NA