int result = Integer.compare(1,2);
if(result > 0){
return -1;
}else if(result < 0){
return 1;
}else if(result == 0) {
return 0;
}
这段代码一直报缺少返回值错误,有点想不明白,int不久三种么? 等于0、大于0、小于0。还有其他情况么?
編譯器沒有人的智慧!
這樣寫:
要確保分支全,這樣編譯器才認為所有的分支都被處理了!呵呵。
因為 你沒有 else