码迷,mamicode.com
首页 > 其他好文 > 详细

关于 HashTable

时间:2017-07-28 17:13:35      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:span   exce   capacity   except   pac   illegal   city   线程安全   ble   

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

标签:span   exce   capacity   except   pac   illegal   city   线程安全   ble   

原文地址:http://www.cnblogs.com/romanjoy/p/7251203.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!