collection,list,set,map
程序员文章站
2024-03-22 10:07:40
...
Collection/Map 接口 成员重复性 元素存放顺序(Ordered/Sorted) 元素中被调用的方法 基于那中数据结构来实现的
HashSet Set Unique elements No order equals() hashCode() Hash 表
LinkedHashSet Set Unique elements Insertion order equals() hashCode() Hash表和双向链表
TreeSet SortedSet Unique elements Sorted equals()
compareTo() 平衡树(Balanced tree)
ArrayList List Allowed Insertion order equals() 数组
LinkedList List Allowed Insertion order equals() 链表
Vector List Allowed Insertion order equals() 数组
HashMap Map Unique keys No order equals()
hashCode() Hash 表
LinkedHashMap Map Unique keys Key insertion order/Access order of entries equals()
hashCode() Hash 表和双向链表
Hashtable Map Unique keys No order equals()
hashCode() Hash 表
TreeMap SortedMap Unique keys Sorted in key order equals()
compareTo() 平衡树(Balanced tree)
HashSet Set Unique elements No order equals() hashCode() Hash 表
LinkedHashSet Set Unique elements Insertion order equals() hashCode() Hash表和双向链表
TreeSet SortedSet Unique elements Sorted equals()
compareTo() 平衡树(Balanced tree)
ArrayList List Allowed Insertion order equals() 数组
LinkedList List Allowed Insertion order equals() 链表
Vector List Allowed Insertion order equals() 数组
HashMap Map Unique keys No order equals()
hashCode() Hash 表
LinkedHashMap Map Unique keys Key insertion order/Access order of entries equals()
hashCode() Hash 表和双向链表
Hashtable Map Unique keys No order equals()
hashCode() Hash 表
TreeMap SortedMap Unique keys Sorted in key order equals()
compareTo() 平衡树(Balanced tree)
推荐阅读
-
collection,list,set,map
-
map 与 set 简单用法
-
springmvc接受map/list/object对象(控制层接收参数写法和postman传参写法)
-
MyBatis传入参数为list、数组、map写法 博客分类: Mybatis
-
ErLang Map 函数的尾递归形式 / Final List 博客分类: Design Erlang
-
把json字符串转换成map对象或list对象
-
map中的list获取不到 博客分类: base base
-
Java总结05 Java集合体系.最高集合接口Collection和其迭代器/一般集合接口List和其迭代器/增强版For循环的应用
-
spring如何注入List,Set,Map对象 博客分类: iocspring iocspring注入ListSet Map
-
单列集合Collection-------------List和Set