使用Arrays對數組進行排序(二)

一、建立一個帶有排序規則的對象類

package arraysdemo;

public class Person implements Comparable<Object> {

    private int age;
    private String name;

    @Override
    public int compareTo(Object o) {
        int result = 0;
        Person p = (Person) o;
        if (this.age > p.age) {
            result = 1;
        } else if (this.age < p.age) {
            result = -1;
        } else if (this.age == p.age) {
            result = 0;
        }
        if (result == 0) {
            return name.compareTo(p.name);
        }
        return result;
    }

    public Person(String name, int age) {
        this.age = age;
        this.name = name;
    }

    public String toString() {
        return "name" + name + ",age" + age;
    }

}

二、測試

package arraysdemo;

import java.util.Arrays;

public class CompType {

    public static void main(String[] args) {
        Person[] p = new Person[] { new Person("張三", 12), new Person("李四", 11),
                new Person("王五", 5) };
        Arrays.sort(p);
        for (int i = 0; i < p.length; i++) {
            System.out.println(p[i]);
        }
    }
}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章