博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java中Collections.sort()方法实现集合排序
阅读量:5052 次
发布时间:2019-06-12

本文共 1130 字,大约阅读时间需要 3 分钟。

1.Integer/String泛型的List进行排序

   List <Integer> integerlist = new ArrayList<Integer>();   //定义一个Integer泛型的List

   然后用add()方法添加一些Integer类型的数据到该List中,

   Collections.sort(integerlist);                                //因为是数值型的数据,排序即按照大小升序排序

2.自定义泛型的List进行排序

   其实Collections.sort(List)方法进行排序的前提是:List对象中的泛型类实现了Comparable接口;

   我们拿学生类来用具体的代码演示一下:

   public class Student implements Comparable<Student>{

                  int id;

                  String name;

                  ........

                  public int compareTo(Student o){               //实现接口自然要实现接口的方法

                              return  this.id.compareTo(o.id);      //规定学生对象排序的依据,这里按ID排序

                   }

   }

   然后就可以对一个由学生对象组成的List表进行Collections.sort(List)排序了(其实是按ID排序)

   Comparable接口定义的规则是默认规则。

3.Comparator接口

   这个接口可以帮助我们事先定义好各种比较规则,用的时候直接换规则,不用去改泛型对象里

   的比较方法compareTo(),

   ID排序规则(类):

          public class comparebyid implements Comparator<Student>{

                   public int compare(Student o1,Student o2){

                            return o1.id.compareTo(o2.id);

                   }

            }

   Name排序规则(类):

          public class comparebyname implements Comparator<Student>{

                   public int compare(Student o1,Student o2){

                            return o1.name.compareTo(o2.name);

                   }

            }

   规则定义好了,如何使用呢?

   先实例化一个规则对象,将对象传入Collections.sort()方法中:

   Collections.sort(studentlist,new comparebyname());

   这样就能忽略上面的默认规则,实现按照新的规则(姓名排序)排序了。

转载于:https://www.cnblogs.com/eco-just/p/7733279.html

你可能感兴趣的文章
日常报错
查看>>
list-style-type -- 定义列表样式
查看>>
Ubuntu 编译出现 ISO C++ 2011 不支持的解决办法
查看>>
Linux 常用命令——cat, tac, nl, more, less, head, tail, od
查看>>
VueJS ElementUI el-table 的 formatter 和 scope template 不能同时存在
查看>>
Halcon一日一练:图像拼接技术
查看>>
iOS设计模式 - 中介者
查看>>
centos jdk 下载
查看>>
HDU 1028 Ignatius and the Princess III(母函数)
查看>>
(转)面向对象最核心的机制——动态绑定(多态)
查看>>
token简单的使用流程。
查看>>
django创建项目流程
查看>>
Vue 框架-01- 入门篇 图文教程
查看>>
多变量微积分笔记24——空间线积分
查看>>
poi操作oracle数据库导出excel文件
查看>>
(转)Intent的基本使用方法总结
查看>>
Windows Phone开发(24):启动器与选择器之发送短信
查看>>
JS截取字符串常用方法
查看>>
Google非官方的Text To Speech和Speech Recognition的API
查看>>
stdext - A C++ STL Extensions Libary
查看>>