Java 怎么用compareTo接口实现排序

我有一个Book类,代码如下:publicclassBook{privateStringauthorfirstname;privateStringtitle;privat... 我有一个Book类,代码如下:
public class Book
{
private String authorfirstname;
private String title;
private String borrowedperson;
private boolean loan;
private String authorsurname;
public Book(String title,String authorfirstname, String authorsurname, String borrowedperson, boolean loan)
{
this.title = title;
this.authorfirstname = authorfirstname;
this.authorsurname = authorsurname;
this.borrowedperson = borrowedperson;
this.loan = loan;
}
public String getauthorfirstname()
{
return authorfirstname;
}
public String gettitle()
{
return title;
}
public String getborrowedperson()
{
return this.borrowedperson;
}
public boolean getloan()
{
return loan;
}
然后再另一个类中定义了一个数组a,储存了好多Book类型的元素。
现在要求用compareTo接口对Book类中的authorsurname进行升序排序,求大神告知如何排啊
展开
 我来答
ZJG161514
推荐于2017-09-29 · TA获得超过328个赞
知道答主
回答量:82
采纳率:50%
帮助的人:12.9万
展开全部
package test;

public class Field implements Comparable<Field> {

    private String name;
    private int age;

    public Field() {
    }
    public Field(String name, int age) {
        this.name = name;
        this.age = age;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public int getAge() {
        return age;
    }
    public void setAge(int age) {
        this.age = age;
    }

    @Override
    public int compareTo(Field o) {
        // 先按age排序
        if (this.age > o.getAge()) {
            return (this.age - o.getAge());
        }
        if (this.age < o.getAge()) {
            return (this.age - o.getAge());
        }
        // 按name排序
        if (this.name.compareTo(o.getName()) > 0) {
            return 1;
        }
        if (this.name.compareTo(o.getName()) < 0) {
            return -1;
        }
        return 0;
    }
}
优质内容提供者andy
2014-12-09 · TA获得超过1561个赞
知道大有可为答主
回答量:2551
采纳率:72%
帮助的人:766万
展开全部
public class Book implements Comparable
{
private String authorfirstname;
private String title;
private String borrowedperson;
private boolean loan;
private String authorsurname;
public Book(String title,String authorfirstname, String authorsurname, String borrowedperson, boolean loan)
{
this.title = title;
this.authorfirstname = authorfirstname;
this.authorsurname = authorsurname;
this.borrowedperson = borrowedperson;
this.loan = loan;
}
public String getauthorfirstname()
{
return authorfirstname;
}
public String gettitle()
{
return title;
}
public String getborrowedperson()
{
return this.borrowedperson;
}
public boolean getloan()
{
return loan;
}
@Override
public int compareTo(Object o)
{
// 自己写条件
return 0;
}
}
希望采纳
追问
条件怎么写,我刚开始学不太会,这个类我只要求对authorsurname一个量进行排序
追答
那就判断这个条件啊
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
CM娱新世界
2014-12-09 · TA获得超过308个赞
知道小有建树答主
回答量:337
采纳率:100%
帮助的人:142万
展开全部
Collections.sort(list, new Comparator() {
public int compare(Object a, Object b) {
int one = ((Book)a).getBookId ();
int two = ((Book)b).getBookId ();
return one- two ;
}
});
追问
看不懂,你这是写在Book这个类里吗
追答

API:

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式