JDK
文章平均质量分 78
berialzhong
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
TreeMap
<br />package java.util; public class TreeMap<K,V> extends AbstractMap<K,V> implements NavigableMap<K,V>, Cloneable, java.io.Serializable{ /** * The comparator used to maintain order in this tree map, or * null if it uses the n原创 2010-08-28 22:47:00 · 301 阅读 · 0 评论 -
HashMap
package java.util; public class HashMap extends AbstractMap implements Map, Cloneable, Serializable{ /** * The DataModel */ //omit.. //数组,存放Entry链表,初始化时new Entry[capacity] transient Entry[] table;原创 2010-08-28 21:13:00 · 288 阅读 · 0 评论
分享