現在、姓、名、生年月日、ssn の順にオブジェクトを並べ替えようとしています。しかし、論理的に私が思いつくことができるのは、姓と名だけです。何かヒントはありますか?
public int compareTo(Doctor o)
{
int result = this.lastName.compareTo(o.lastName());
return result == 0 ?this.firstName.compareTo(((Doctor) o).firstName()):result;
}