1、java.util.Collection 是一个集合接口(集合类的一个顶级接口)。
它提供了对集合对象进行基本操作的通用接口方法。Collection接口在Java 类库中有很多具体的实现。Collection接口又有3种子类型,List、Set 和 Queue,Collection接口的意义是为各种具体的集合提供了最大化的统一操作方式,其直接继承接口有List与Set。
2、Collections则是集合类的一个工具类/帮助类,其中提供了一系列静态方法,用于对集合中元素进行排序、搜索以及线程安全等各种操作。
使用sort方法可以根据元素的自然顺序 对指定列表按升序进行排序。列表中的所有元素都必须实现 Comparable 接口。此列表内的所有元素都必须是使用指定比较器可相互比较的
列 ( 升序排序 Collection.sort() ) :
public static void main(String[] args) {
List<Integer> list = new ArrayList<Integer>();
int arrayz[] = {12,65,11,10,29,38};
for (int i=0;i<arrayz.length;i++){
list.add(arrayz[i]);
}
Collections.sort(list);
for (int is=0;is<arrayz.length;is++){
if (is+1==arrayz.length){
System.out.print(list.get(is));
}else {
System.out.print(list.get(is) + ",");
}
}
}
输出结果为:10,11,12,29,38,65
列 ( 根据元素的自然顺序对指定的列表按降序进行排序 Collection.reverse() ) :
public static void main(String[] args) {
List<Integer> list = new ArrayList<Integer>();
int arrayz[] = {12,65,11,10,29,38};
for (int i=0;i<arrayz.length;i++){
list.add(arrayz[i]);
}
Collections.reverse(list);
for (int is=0;is<arrayz.length;is++){
if (is+1==arrayz.length){
System.out.print(list.get(is));
}else {
System.out.print(list.get(is) + ",");
}
}
}
输出结果为:38,29,10,11,65,12