集合
collection:
Collection 层次结构中的根接口;
Collection的功能概述:
* 1:添加功能
* boolean add(Object obj):添加一个元素
* boolean addAll(Collection c):添加一个集合的元素
* 2:删除功能
* void clear():移除所有元素
* boolean remove(Object o):移除一个元素
* 3:判断功能
* boolean contains(Object o):判断集合中是否包含指定的元素
* boolean isEmpty():判断集合是否为空
* 4:获取功能
* Iterator<E> iterator() 返回一个iterator对象,用于遍历集合里的元素。
* 5:长度功能
* int size():元素的个数
{
思考题:数组有没有length()方法呢?字符串有没有length()方法呢?集合有没有length()方法呢?
ans:数组获取长度是:array.length
字符串:length()
集合:size()
}
* 6:把集合转换为数组
* Object[] toArray()