最佳答案
我发现 compareTo
方法的 java.lang.Integer
实现如下:
public int compareTo(Integer anotherInteger) {
int thisVal = this.value;
int anotherVal = anotherInteger.value;
return (thisVal<anotherVal ? -1 : (thisVal==anotherVal ? 0 : 1));
}
问题是为什么要用比较而不是减法:
return thisVal - anotherVal;