也许我的回答过于关注实现细节。您的问题是是否有更优雅的方法?我说不。您基本上必须将具有 3 个整数的对象映射到一个可以稍后进行比较的单个整数。
如果您的类中有更多的属性,您必须在将来的比较中包含这些属性,我建议您可以制作一些更通用的代码版本,其中每个属性都由一个属性和相应的权重组成。通过这种方式,您可以创建一种更通用的 compareTo 方法。但不要过早优化。
我建议像这样实现Comparable接口:
public Human(int eyeColor, int hairColor, int height) {
this.eyeColor = eyeColor;
this.hairColor = hairColor;
this.height = height;
}
public static void main(String[] args) {
List<Human> humans = new ArrayList<Human>();
humans.add(new Human(20, 10, 5));
humans.add(new Human(50, 50, 2));
Collections.sort(humans);
for(Human human : humans) {
System.out.println(human);
}
}
@Override
public int compareTo(Human o) {
int thisRank = 10000 * eyeColor;
thisRank += 1000 * height;
thisRank += 100 * hairColor;
int otherRank = 10000 * o.eyeColor;
otherRank += 1000 * o.height;
otherRank += 100 * o.hairColor;
return thisRank - otherRank;
}