类分层结构
- java.lang.Object
- java.util.AbstractMap<K,V> (implements java.util.Map<K,V>)
- java.util.concurrent.ConcurrentHashMap<K,V> (implements java.util.concurrent.ConcurrentMap<K,V>, java.io.Serializable)
- java.util.HashMap<K,V> (implements java.lang.Cloneable, java.util.Map<K,V>, java.io.Serializable)
- cn.featherfly.common.structure.HashChainMap<K,V> (implements cn.featherfly.common.structure.ChainMap<K,V>)
- java.util.LinkedHashMap<K,V> (implements java.util.Map<K,V>)
- java.util.TreeMap<K,V> (implements java.lang.Cloneable, java.util.NavigableMap<K,V>, java.io.Serializable)
- cn.featherfly.common.structure.TreeChianMap<K,V> (implements cn.featherfly.common.structure.ChainMap<K,V>)
- cn.featherfly.common.structure.ChainMapImpl<K,V> (implements cn.featherfly.common.structure.ChainMap<K,V>)
- cn.featherfly.common.structure.Groupable<K,V>
- cn.featherfly.common.structure.LimitQueue<E> (implements java.util.Queue<E>)
- java.lang.ThreadLocal<T>
接口分层结构
- java.util.Map<K,V>
- cn.featherfly.common.structure.ChainMap<K,V>