HashTable

来源:互联网 发布:淘宝网的美折怎么购买 编辑:程序博客网 时间:2024/05/08 07:50

HashTable继承了Dictionary,实现了Map,Cloneable, java.io.Serializable接口。
HashTable内部比较重要的方法有get(Object key),put(K key, V value),rehash(),addEntry(int hash, K key, V value, int index),remove(Object key)

HashTable内部以数组、链表的结构存放数据

    //链表结构    private static class Entry<K,V> implements Map.Entry<K,V> {        final int hash;        final K key;        V value;        Entry<K,V> next;        protected Entry(int hash, K key, V value, Entry<K,V> next) {            this.hash = hash;            this.key =  key;            this.value = value;            this.next = next;   //指向下一个元素        }        @SuppressWarnings("unchecked")        protected Object clone() {            return new Entry<>(hash, key, value,                                  (next==null ? null : (Entry<K,V>) next.clone()));        }        // Map.Entry Ops        public K getKey() {            return key;        }        public V getValue() {            return value;        }        public V setValue(V value) {            if (value == null)                throw new NullPointerException();            V oldValue = this.value;            this.value = value;            return oldValue;        }        public boolean equals(Object o) {            if (!(o instanceof Map.Entry))                return false;            Map.Entry<?,?> e = (Map.Entry<?,?>)o;            return (key==null ? e.getKey()==null : key.equals(e.getKey())) &&               (value==null ? e.getValue()==null : value.equals(e.getValue()));        }        public int hashCode() {            return hash ^ Objects.hashCode(value);        }        public String toString() {            return key.toString()+"="+value.toString();        }    }

put(K key, V value)

public synchronized V put(K key, V value) {        // 对插入的value进行检查,不允许为null        if (value == null) {            throw new NullPointerException();        }        Entry<?,?> tab[] = table;        int hash = key.hashCode();    //根据key获取hashcode,调用Object的hashCode()方法        int index = (hash & 0x7FFFFFFF) % tab.length;        @SuppressWarnings("unchecked")        Entry<K,V> entry = (Entry<K,V>)tab[index];        for(; entry != null ; entry = entry.next) {            //如果key相等,把原来的value覆盖并返回            if ((entry.hash == hash) && entry.key.equals(key)) {                V old = entry.value;                entry.value = value;                return old;            }        }        //添加元素        addEntry(hash, key, value, index);        return null;    }

addEntry(int hash, K key, V value, int index)

private void addEntry(int hash, K key, V value, int index) {        modCount++;        Entry<?,?> tab[] = table;        if (count >= threshold) {            // 扩容            rehash();            tab = table;            hash = key.hashCode();            index = (hash & 0x7FFFFFFF) % tab.length;        }        // 插入到对应链表的尾部        @SuppressWarnings("unchecked")        Entry<K,V> e = (Entry<K,V>) tab[index];        tab[index] = new Entry<>(hash, key, value, e);        count++;    }

rehash()

//HashTable初始默认数组大小为11,插入数据>当前数组的3/4就会进行扩容protected void rehash() {        int oldCapacity = table.length;        Entry<?,?>[] oldMap = table;        // 扩容当前数组长度的两倍+1        int newCapacity = (oldCapacity << 1) + 1;        if (newCapacity - MAX_ARRAY_SIZE > 0) {            if (oldCapacity == MAX_ARRAY_SIZE)                // 数组最大长度=Integer.MAX_VALUE - 8                return;            newCapacity = MAX_ARRAY_SIZE;        }        Entry<?,?>[] newMap = new Entry<?,?>[newCapacity];        modCount++;        threshold = (int)Math.min(newCapacity * loadFactor, MAX_ARRAY_SIZE + 1);        table = newMap;        //对数组进行拷贝        for (int i = oldCapacity ; i-- > 0 ;) {            for (Entry<K,V> old = (Entry<K,V>)oldMap[i] ; old != null ; ) {                Entry<K,V> e = old;                old = old.next;                int index = (e.hash & 0x7FFFFFFF) % newCapacity;                e.next = (Entry<K,V>)newMap[index];                newMap[index] = e;            }        }    }

get(Object key)

public synchronized V get(Object key) {        Entry<?,?> tab[] = table;        int hash = key.hashCode();        int index = (hash & 0x7FFFFFFF) % tab.length;        //对数组中的链表进行遍历        for (Entry<?,?> e = tab[index] ; e != null ; e = e.next) {            if ((e.hash == hash) && e.key.equals(key)) {                return (V)e.value;            }        }        return null;    }

remove(Object key)

public synchronized V remove(Object key) {        Entry<?,?> tab[] = table;        int hash = key.hashCode();        int index = (hash & 0x7FFFFFFF) % tab.length;        @SuppressWarnings("unchecked")        Entry<K,V> e = (Entry<K,V>)tab[index];        //遍历数组中的链表        for(Entry<K,V> prev = null ; e != null ; prev = e, e = e.next) {            if ((e.hash == hash) && e.key.equals(key)) {                modCount++;                if (prev != null) {                    //链表有下一个元素                    prev.next = e.next;                } else {                    //链表中只有一个元素                    tab[index] = e.next;                }                count--;                V oldValue = e.value;                e.value = null;                return oldValue;            }        }        return null;    }

总结

  1. HashTable内部以数组、链表的结构存储数据。

  2. HashTable内部方法加了锁,保证了线程安全性,但是性能下降。

  3. HashTable默认数组长度为11,但是当数据>当前数组3/4时就会进行扩容,扩容量为当前数组大小的两倍+1。

  4. HashTable不允许插入key=null和value=null的元素。
  5. HashTable内部是无序的。

JDK版本1.8.0_92

原创粉丝点击