1、常用类
- Object
- hashcode()
- toString()
- clone()
- getClass()
- notify()
- wait()
- equals()
- Math
- 常见的数学运算
- Random
- 生成随机数 UUID
- File
- 创建文件
- 查看文件
- 修改文件
- 删除文件
- 包装
- 自动装箱和拆箱
- Date
- Date
- SimpleDateFormat yyyy-MM-dd HH:mm:ss
- Calendar
- String
- 不可变性 final
- StringBuffer
-
2、集合框架
Collection
- list 有序可重复
- ArrayList 常用
- add
- remove
- contains
- size
- LinkedList 常用
- getFirst()
- ArrayList 常用
- set 无序不可重复
- HashSet 常用
- TreeSet
- Vector
- Stack
- list 有序可重复
Map