2 常用API
public boolean add(E e)把给定的对象添加到当前集合中
public void clear()清空集合中所有的元素
boolean remove(E e)把给定的对象在当前集合中删除
boolean contains(E e)判断当前集合中是否包含给定的对象
public boolean isEmpty()判断当前集合是否为空
public int size()返回集合中元素的个数
public Object[] toArray()把集合中的元素,存储到数组中
3 使用 public class Test { public static void main(String[] args) {
Collection<String> coll = new ArrayList<String>();
coll.add("one");
coll.add("two");
coll.add("three");
System.out.println(coll);