當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Hashtable rehash()用法及代碼示例


Hashtable類rehash()方法

  • rehash() 方法可在java.util包。
  • rehash() 方法用於擴展容量,如果鍵數限製超過哈希表容量,則隱式調用它。
  • rehash() 方法是一個非靜態方法,它隻能通過類對象訪問,如果我們嘗試使用類名訪問方法,那麽我們將得到一個錯誤。
  • rehash() 方法擴容時不拋出異常。

用法:

    public void rehash();

參數:

  • 它不接受任何參數。

返回值:

該方法的返回類型是void,它什麽都不返回。

例:

// Java program to demonstrate the example 
// of void rehash() method of Hashtable 

import java.util.*;

public class RehashOfHashtable extends Hashtable {
    public static void main(String[] args) {
        //Instantiate a hashtable object  
        RehashOfHashtable ht = new RehashOfHashtable();

        // By using put() method is to
        // add the linked values in an
        // Hashtable ht
        ht.put(10, "C");
        ht.put(20, "C++");
        ht.put(30, "JAVA");
        ht.put(40, "PHP");
        ht.put(50, "SFDC");

        // Display Hashtable
        System.out.println("Hashtable:" + ht);

        // By using rehash() method is to increase
        // the capacity and re-organizes internally
        // this Hashtable

        ht.rehash();
        System.out.println("ht.size():" + ht.size());
    }
}

輸出

Hashtable:{10=C, 20=C++, 30=JAVA, 40=PHP, 50=SFDC}
ht.size():5


相關用法


注:本文由純淨天空篩選整理自Preeti Jain大神的英文原創作品 Java Hashtable rehash() Method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。