Loading

随笔分类 -  Java Collection And Map

摘要:Map Source Code Hashtable public class Hashtable<K,V> extends Dictionary<K,V> implements Map<K,V>, Cloneable, java.io.Serializable { ... private trans 阅读全文
posted @ 2021-03-03 23:13 齐玉 阅读(55) 评论(0) 推荐(0)
摘要:List Source Code Vector Implemented by Object[]. Use synchronized methods to guarantee thread safe. protected transient int modCount = 0; // extends f 阅读全文
posted @ 2021-03-03 22:13 齐玉 阅读(80) 评论(0) 推荐(0)
摘要:Collection And Map Introduction Java Collections Hierarchy The Collections framework is better understood with the help of core interfaces. The collec 阅读全文
posted @ 2021-03-01 20:56 齐玉 阅读(144) 评论(0) 推荐(0)