- 数组
- 集合
Java 的集合类很多,主要分为两大类
- 单列集合
- 双列集合
Collection 接口实现类的特点
Collection 接口遍历元素方式 1-使用Iterator(迭代器)
迭代器的使用案例
Collection 接口遍历对象方式 2-for 循环增强
- 练习
List 接口基本介绍
List 接口的常用方法
List 接口练习
List 的三种遍历方式 [ArrayList, linkedList,Vector]
实现类的练习 2
ArrayList 的注意事项
ArrayList 的底层操作机制源码分析(重点,难点.)
- Vector 的基本介绍
Vector 和ArrayList 的比较
linkedList 的全面说明
linkedList 的底层操作机制
Set 接口基本介绍
Set 接口的常用方法
- 和 List 接口一样, Set 接口也是 Collection 的子接口,因此,常用方法和 Collection 接口一样.
Set 接口的遍历方式
Set 接口的常用方法举例
HashSet 的全面说明
HashSet 案例说明
HashSet 底层机制说明
HashSet 练习
linkedHashSet 的全面说明
linkedHashSet 练习
Map 接口实现类的特点 [很实用]
Map 接口常用方法
Map 接口遍历方法