Collection与Collections的区别

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值