java集合
Posted 尧啊尧
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java集合相关的知识,希望对你有一定的参考价值。
一,集合
- 概念:对象的容器
- 核心:对数据结构和算法的OOP体现
- 接口层:
(1)Collection
- List:有序不唯一 值可以为null
ArrayList 数组结构
LinkedList 链表结构
- Set:无序且唯一 值最多只有一个null
(2)Map
- 键唯一 最多只有一个null
- 值不唯一 值可以为null
- jdk<=1.7 数组+链表
- jdk>=1.8 数组+链表+红黑树
新增Entry >=2 >=8
删除Entry <=1 <=6
(3)Serializable:序列化接口
(4)Iterable<T>:迭代接口 =依赖=>Iterator<T>
Class Xxx implement Iterable<T>{
Iterator<T>iterator(){
.....
}
}
Xxx<T>xxx = new Xxx(...)
//迭代器遍历模型
Iterator<T>it = new Xxx(...).iterator();
While(it.hasNext()){
T t = it.next();
.....
}
增强型for循环遍历:底层是迭代器
for(T t : xxx){
t...
}
以上是关于java集合的主要内容,如果未能解决你的问题,请参考以下文章