关于 HashTable

Posted roman kickCode

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于 HashTable相关的知识,希望对你有一定的参考价值。

hashTable 的一些认识:

  1.   底层使用散列表,存贮键值对,键值非null
  2.        使用synchronize 保证线程安全

 

构造函数

  /**
     * Constructs a new, empty hashtable with a default initial capacity (11)
     * and load factor (0.75).
     */
    public Hashtable() { 
        this(11, 0.75f);
    }

/**
* Constructs a new, empty hashtable with the specified initial capacity
* and default load factor (0.75).
*
* @param initialCapacity the initial capacity of the hashtable.
* @exception IllegalArgumentException if the initial capacity is less
* than zero.
*/
public Hashtable(int initialCapacity) {
this(initialCapacity, 0.75f);
}
 

 

以上是关于关于 HashTable的主要内容,如果未能解决你的问题,请参考以下文章

PHP源代码分析:Zend HashTable详解

关于代码片段的时间复杂度

关于 HashTable

AJPFX关于hashmap和hashtable 的区别

关于HashTable,HashMap和TreeMap的几点心得

关于片段生命周期