一.集合(Collection) 1.简介 Collection是一个接口,其定义了集合的相关功能方法.Collection继承了Iterable接口,而Iterable接口有一个方法Iterator<T> iterator(); 其中Iterator也是一个接口,里面定义了3个方法boolean hasNext();E next(); void remove(); 2.Collection派生接口List和Set List:可重复集,顾名思义,该集合中是允许存放重复元素的,那么何为重复元素?…