我有兩種方法的警告消息,如下圖所示:方法重載 - 在Eclipse
第一種方法:
public int function(int i) {
//some calculation
return i;
}
方法二:
private String function(String s) {
//some calculation
return s;
}
這兩個方法都從來沒有在任何地方使用(因爲編碼還沒有完成)。但對於第二種方法,我得到在eclipse以下警告:
The method function(String) from the type Test is never used locally
爲什麼這個警告是不顯示的第一種方法也?
因爲你沒有調用這個方法在你的代碼的任何部分,它是「私人」,日食警告你使用它在當地上課或做點什麼 – Reddy