zoukankan      html  css  js  c++  java
  • Java对象比较

    注意:两者默认都是升序
    1
    、实现Comparable,重写compareTo()方法 2new Comparator,重写compare()方法

    1、案例如下

    package study.scala.base;
    
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.Comparator;
    import java.util.List;
    
    /**
     * @author yangwj
     * @version 1.0
     * @date 2020/8/8 15:26
     * @desc Scala中,排序使用的是Ordered
     */
    public class Student  implements Comparable<Student>{
        int score;
        String name;
    
        public Student(int score, String name) {
            this.score = score;
            this.name = name;
        }
    
        public int getScore() {
            return score;
        }
    
        public void setScore(int score) {
            this.score = score;
        }
    
        public String getName() {
            return name;
        }
    
        public void setName(String name) {
            this.name = name;
        }
    
        @Override
        public int compareTo(Student o) {
            return -(this.getScore() -o.getScore());
        }
    
        public static void main(String[] args) {
            Student yang = new Student(12, "yang");
            Student wen = new Student(50, "wen");
            Student jie = new Student(20, "jie");
            List<Student> list = new ArrayList<>();
            list.add(yang);
            list.add(wen);
            list.add(jie);
            //方式一:new Comparator,默认为升序
    //        Collections.sort(list, new Comparator<Student>() {
    //            @Override
    //            public int compare(Student o1, Student o2) {
    //                return -(o1.score -o2.score);
    //            }
    //        });
    
            //方式二:实现Comparable,默认为升序
            Collections.sort(list);
            list.forEach(student -> System.out.println(student.getName() +"----" +student.getScore()));
        }
    }
  • 相关阅读:
    python3-file的修改实现类似shell中sed的功能
    python3-字典的循环
    python3-file文件操作
    python3-字典的增删改查
    python3-字典中存储列表
    python3-字典中的一些常用方法
    python3-字典中包含字典
    报错调试和工具使用
    (三)、Struts第三天
    struts体系结构
  • 原文地址:https://www.cnblogs.com/ywjfx/p/13458047.html
Copyright © 2011-2022 走看看