首页 > 代码库 > 对象排序,compareTo
对象排序,compareTo
第一个例子
Java代码
- /*为了比较,让自己的类实现Comparable接口,按照自己想要的排序方式重写compareTo
- *Map只是提供了对键的排序,但是当我们需要对值排序时就的提供我们自己的比较器 这里 只是模拟了Map但是实际上并没有使用Map
- */
- import java.util.Iterator;
- import java.util.Set;
- import java.util.TreeSet;
- public class SortByValue {
- public static void main(String[] args) {
- Set<Pair> set = new TreeSet<Pair>();
- set.add(new Pair("me", "1000"));
- set.add(new Pair("and", "4000"));
- set.add(new Pair("you", "3000"));
- set.add(new Pair("food", "10000"));
- set.add(new Pair("hungry", "5000"));
- set.add(new Pair("later", "6000"));
- set.add(new Pair("myself", "1000"));
- for (Iterator<Pair> i = set.iterator(); i.hasNext();)
- // 我喜欢这个for语句
- System.out.println(i.next());
- }
- }
- class Pair implements Comparable<Object> {
- private final String name;
- private final int number;
- public Pair(String name, int number) {
- this.name = name;
- this.number = number;
- }
- public Pair(String name, String number) throws NumberFormatException {
- this.name = name;
- this.number = Integer.parseInt(number);
- }
- public int compareTo(Object o) {
- if (o instanceof Pair) {
- // int cmp = Double.compare(number, ((Pair) o).number);
- int cmp = number - ((Pair) o).number;
- if (cmp != 0) {// number是第一要比较的,相当于先比较value。如果相同再比较键
- return cmp;
- }
- return name.compareTo(((Pair) o).name);
- }
- throw new ClassCastException("Cannot compare Pair with "
- + o.getClass().getName());
- }
- public String toString() {
- return name + ‘ ‘ + number;
- }
- }
- 输出结果:
- me 1000
- myself 1000
- you 3000
- and 4000
- hungry 5000
- later 6000
- food 10000
第二个例子:
Java代码
- import java.util.*;
- public class NameSort {
- public static void main(String[] args) {
- Name[] nameArray = { new Name("John", "Lennon"),
- new Name("Karl", "Marx"), new Name("Groucho", "Marx"),
- new Name("Oscar", "Grouch") };
- Arrays.sort(nameArray); //根据元素的自然顺序对指定对象数组按升序进行排序。数组中的所有元素都必须实现
Comparable
接口。此外,数组中的所有元 //素都必须是可相互比较的(也就是说,对于数组中的任何 e1 和 e2 元素而言,e1.compareTo(e2) 不得抛出 ClassCastException)。 - for (int i = 0; i < nameArray.length; i++) {
- System.out.println(nameArray[i].toString());
- }
- }
- }
- class Name implements Comparable<Name> {
- public String firstName, lastName;
- public Name(String firstName, String lastName) {
- this.firstName = firstName;
- this.lastName = lastName;
- }
- public int compareTo(Name o) { // 实现接口
- int lastCmp = lastName.compareTo(o.lastName);
- // 首先比较姓(lastName)如果姓相同(lastCmp==0)再比较名(firstName),否则返回名的比较
- return (lastCmp == 0 ? firstName.compareTo(o.firstName) : lastCmp);
- }
- public String toString() { // 便于输出测试
- return firstName + " " + lastName;
- }
- }
- 输出结果:
- Oscar Grouch
- John Lennon
- Groucho Marx
- Karl Marx
Java代码
- //看看这个三目运算符的漂亮应用哦!
- public int compareTo(Pair o) {
- int cmp = number - o.number;
- return (cmp == 0 ? name.compareTo(o.name) : cmp);
- }
- ----------------------
- public int compareTo(Name o) { // 实现接口
- int lastCmp = lastName.compareTo(o.lastName);
- // 首先比较姓(lastName)如果姓相同(lastCmp==0)再比较名(firstName),否则返回名的比较
- return (lastCmp == 0 ? firstName.compareTo(o.firstName) : lastCmp);
- }
本文转载至:http://ocaicai.iteye.com/blog/794438
- }
对象排序,compareTo
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。