240 发简信
IP属地:浙江
  • TreeSet

    [TOC] 一、顶部注释分析 1.1 从注释中得到的结论 A NavigableSet implementation based on a Tr...

  • LinkedHashSet

    [TOC] 一、顶部注释分析 1.1 从注释中得到的结论 Hash table and linked list implementation o...

  • HashSet

    [TOC] 一、顶部注释分析 1.1 从注释中得到的结论 This class implements the Set interface, ba...

  • LinkedHashMap

    [TOC] 一、顶部注释分析 1.1 数据结构 1.2 从注释中得到的结论 LinkedHashMap 是 Map 接口的哈希表和链表的实现,具...

  • ConCurrentHashMap

    [TOC] 一、顶部注释分析 1.1 数据结构 1.1.1 JDK1.7实现 在 JDK1.7中,ConcurrentHashMap 通过“锁分...

  • TreeMap

    [TOC] 一、顶部注释分析 1.1 首句分析 A Red-Black tree based NavigableMap implementati...

  • Resize,w 360,h 240
    HashMap

    [TOC] 一、顶部注释分析 1.1 数据结构 HashMap的数据结构是 数组+链表+红黑树 (JDK1.8) 数组中的每一个节点可称为是桶。...

  • Vector

    [TOC] 一、顶部注释分析 Vector是一个 growable 的数组,它的大小可以根据需要增加或减少 Vector is synchron...

  • LinkedList

    [TOC] 一、顶部注释分析 1.1 首句定义 Doubly-linked list implementation of the List an...