我正在研究 OpenJDK 的源代码。
我的注意力被这些方法所吸引,Byte.compare()
并且Integer.compare()
:
public static int Byte.compare(byte x, byte y) {
return x-y;
}
public static int Integer.compare(int x, int y) {
return (x < y) ? -1 : ((x == y) ? 0 : 1);
}
为什么这些方法Byte.compare()
和Integer.compare()
有不同的实现?