Я обнаружил, что реализация java.lang.Integer
метода compareTo
выглядит следующим образом:
public int compareTo(Integer anotherInteger) {
int thisVal = this.value;
int anotherVal = anotherInteger.value;
return (thisVal<anotherVal ? -1 : (thisVal==anotherVal ? 0 : 1));
}
Вопрос в том, почему вместо вычитания используйте сравнение:
return thisVal - anotherVal;