自学Java第二十七课
之前我学过的ArrayList属于集合体系结构的一种,它属于Collection。
Collection包含List和Set集合,List包含ArrayList和LinkList,Set包含HashSet和TreeSet。Collection是单列集合,List可存储重复的元素,set不可以存储重复元素。
Map是双列集合,常用其HashMap。Collection、Map、List、Set均为接口。
Collection使用前需要导包:①单列集合的顶层接口,它表示一组对象,对象也称Collection元素;②JDk不提供此接口的任何直接实现,提供更具体的子接口实现。
创建Collection对象①多态的形式创建;②具体的实现类ArrayList。
Collection常用方法
boolean add(E e) | 添加元素 |
boolean remove(Object o) | 移除指定元素 |
void clear() | 清空集合中的元素(和linux系统中clear命令相似) |
boolean contains(Object o) | 判断集合是否存在指定元素 |
boolean isEmpty() | 判断集合是否为空 |
int size() | 集合长度 |
Collection集合遍历
Iterator:迭代器,集合的专用遍历方式。
①Iterator<E>iterator():返回此集合中元素的迭代器,通过集合的iterator方法得到
②迭代器是通过集合的iterator方法得到的
Iterator常用方法①E next():返回迭代的下一个元素
②boolean hasnext():迭代更多的元素,返回true
集合的使用步骤①创建集合Collection<String> a=new ArrayList<String>();②添加元素 add();③遍历集合迭代器 Iterator i=对象名.iterator;->i.hasNext()->i.next();
学生案例
明天将会学习集合体系中的List。