如何编写比较对象的 compareTo 方法?
我正在学习数组,基本上我有一个收集姓氏,名字和分数的数组。
我需要编写一个方法,该方法将比较姓氏和名字,以便列表可以按姓氏的字母顺序排序,然后如果两个人具有相同的姓氏,那么它将对名字进行排序。compareTo
我很困惑,因为我书中的所有信息都是比较数字,而不是对象和字符串。
以下是我到目前为止编码的内容。我知道这是错误的,但它至少解释了我认为我在做什么:
public int compare(Object obj) // creating a method to compare
{
Student s = (Student) obj; // creating a student object
// I guess here I'm telling it to compare the last names?
int studentCompare = this.lastName.compareTo(s.getLastName());
if (studentCompare != 0)
return studentCompare;
else
{
if (this.getLastName() < s.getLastName())
return - 1;
if (this.getLastName() > s.getLastName())
return 1;
}
return 0;
}
我知道 和 符号 是错误的,但就像我说的,我的书只告诉你如何使用 .<
>
compareTo