我是靠谱客的博主 不安航空,最近开发中收集的这篇文章主要介绍比较器的使用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

原创作品,允许转载,转载时请务必以超链接形式标明文章  原始出处 、作者信息和本声明。否则将追究法律责任。 http://haiyuanxi.blog.51cto.com/4230602/931163
class Student  implements Comparable<Student> { // 指定类型为Student 
   private String name; 
   private  int age; 
   private  float score; 

   public Student(String name,  int age,  float score) { 
     super(); 
     this.name = name; 
     this.age = age; 
     this.score = score; 
  } 

  @Override 
   public  int compareTo(Student student) { 
     // 覆写compareTo()方法,实现排序规则的应用 
     // 先按成绩排 
     if ( this.score > student.score) { 
       // 成绩大 
       return -1; //改变1和-1的值就可以改变排序的顺序 
    }  else  if ( this.score < student.score) { 
       // 成绩小 
       return 1; 
    }  else { 
       // 成绩相等再按年龄排序 
       if ( this.age > student.age) { 
         // 年龄大 
         return 1; 
      }  else  if ( this.age < student.age) { 
         // 年龄小 
         return -1; 
      }  else { 
         return 0; 
      } 
    } 
  } 

  @Override 
   public String toString() { 
     // TODO Auto-generated method stub 
     return name +  "tt" +  this.age +  "tt" +  this.score; 
  } 


public  class ComparableDemo { 

   /** 
    * @param args 
    */
 
   public  static  void main(String[] args) { 
     // TODO Auto-generated method stub 
    Student stu[] = {  new Student( "yanjun1", 20, 38), 
         new Student( "yanjun2", 23, 44),  new Student( "yanjun3", 24, 44), 
         new Student( "yanjun4", 20, 45) }; 
    java.util.Arrays.sort(stu); //直接通过java.util.Arrays.sort(stu);排序 
     //按成绩排序 
    System.out.println( "按成绩排序"); 
     for ( int i = 0; i < stu.length; i++) { 
        
      System.out.println(stu[i]); 
    } 
     
  } 

最后

以上就是不安航空为你收集整理的比较器的使用的全部内容,希望文章能够帮你解决比较器的使用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(46)

评论列表共有 0 条评论

立即
投稿
返回
顶部