Java中的几种比较器,对象比较,二维数组排序
Posted tacit-lxs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java中的几种比较器,对象比较,二维数组排序相关的知识,希望对你有一定的参考价值。
Java中的几种比较器
一般涉及到对象数组的排序时,我们需要比较数组中的对象进行我们想要的排序。
情况一
对象简单,仅仅只是比较两个引用指向同一个对象,对象的地址是否相同。用“==”即可实现
情况二
如果对象复杂,比如包含不同的属性等
- 对于不适用内置排序方法,可通过覆写equals()方法去实现
对于调用内置排序方法。
-
让自己编写的类继承Comparable接口,并实现compareTo()方法, 就可以直接调用Arrays.sort()进行想要的排序。
import java.util.Arrays; class BookCook implements Comparable<BookCook> private String title; private double price; public BookCook(String title,double price) this.title = title; this.price = price; @Override public String toString() return "书名:"+this.title+",价格:"+this.price; @Override public int compareTo(BookCook o) if(this.price > o.price) return 1; else if(this.price < o.price) return -1; else return 0;
如果要在已经开发好的代码的基础上完善对象的比较功能时,又不想更改之前的代码。
-
定义一个对象比较器,继承Comparator接口,并实现compare()方法
class Student private String name; private double score; public Student(String name,double score) this.name = name; this.score = score; public double getScore() return this.score; @Override public String toString() return "姓名:"+this.name+",分数:"+this.score; class StudentComparator implements Comparator<Student> @Override public int compare(Student o1,Student o2) if(o1.getScore() > o2.getScore()) return 1; else if(o1.getScore() < o2.getScore()) return -1; else return 0; public class TestComparator public static void main(String[] args) Student[] sts = new Student[] new Student("小戴",60), new Student("小王",90), new Student("老王",80), new Student("小萱",95) ; java.util.Arrays.sort(sts, new StudentComparator()); System.out.println(java.util.Arrays.toString(sts));
简写
假如要比较people数组【身高,年龄】-》【【3,2】【4,4】【4,3】】
Arrays.sort(people, new Comparator<int[]>()
public int compare(int[] person1, int[] person2)
if (person1[0] != person2[0])
//按身高降序
return person2[0] - person1[0];
else
//按年龄升序
return person1[1] - person2[1];
);
#【【4,3】【4,4】【3,2】】
以上是关于Java中的几种比较器,对象比较,二维数组排序的主要内容,如果未能解决你的问题,请参考以下文章