Collection的功能概述
-
添加功能
- boolean add(Object obj)添加一个元素
- boolean addAll(Collection c)添加一个集合的元素
-
删除功能
- void clear()移除所有元素
- boolean remove(Object o)移除一个元素
- boolean removeAll(Collection c)移除一个集合的元素。(是一个还是所有)
-
判断功能
- boolean contains(Object o) 判断collection 包含是否包含指定的元素,则返回 true
- boolean containsAll(Collection c)判断collection 包含指定 collection 中的所有元素,则返回 true。(是一个还是所有)
- boolean isEmpty()判断collection 不包含元素,则返回 true。
-
获取功能
- Iterator<E> iterator()重要
-
长度功能
- int size()元素的个数。
-
交集(了解)
- boolean retainAll(Collection c)两个集合都有的元素:思考元素去哪了。返回的boolean是什么意思。
-
把集合转数组(了解)
- Object[] toArray()
面试:数组有没有lenth方法?(没有 有lenth属性)字符串有没有lenth方法?(有)集合有没有lenth方法呢?(没有)
- 邮箱:ithelei@sina.cn
- 技术讨论群:687856230
- GoodLuck