1. 程式人生 > >實現List集合排序的兩種方法(使用Collections.sort方法)

實現List集合排序的兩種方法(使用Collections.sort方法)

1:實現comparable

package core.java.collection.collections;      public class User implements Comparable<User>{              private int score;              private int age;              public User(int score, int age){           super();           this.score = score;           this.age = age;       }          public int getScore() {           return score;       }          public void setScore(int score) {           this.score = score;       }          public int getAge() {           return age;       }          public void setAge(int age) {           this.age = age;       }          @Override       public int compareTo(User o) {           int i = this.getAge() - o.getAge();//先按照年齡排序           if(i == 0){               return this.score - o.getScore();//如果年齡相等了再用分數進行排序           }           return i;       }          }     2 :直接用匿名內部類 public static void main(String[] args) {           List<User> users = new ArrayList<User>();           users.add(new User(78, 26));           users.add(new User(67, 23));           users.add(new User(34, 56));           users.add(new User(55, 23));           Collections.sort(users);           for(User user : users){               System.out.println(user.getScore() + "," + user.getAge());           }   }   

package core.java.collection.collections;      public class Students {              private int age;       private int score;              public Students(int age, int score){           super();           this.age = age;           this.score = score;       }              public int getAge() {           return age;       }       public void setAge(int age) {           this.age = age;       }       public int getScore() {           return score;       }       public void setScore(int score) {           this.score = score;       }   }   public static void main(String[] args) {           List<Students> students = new ArrayList<Students>();           students.add(new Students(23, 100));           students.add(new Students(27, 98));           students.add(new Students(29, 99));           students.add(new Students(29, 98));           students.add(new Students(22, 89));           Collections.sort(students, new Comparator<Students>() {                  @Override               public int compare(Students o1, Students o2) {                   int i = o1.getScore() - o2.getScore();                   if(i == 0){                       return o1.getAge() - o2.getAge();                   }                   return i;               }           });           for(Students stu : students){               System.out.println("score:" + stu.getScore() + ":age" + stu.getAge());           }   }