我有两种方法,如下所示:
第一种方法:
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
为什么第一种方法也没有显示此警告?