将“this”与方法一起使用(在Java中)
在Java中使用“this”和方法怎么样?它是可选的还是在某些情况下需要强制使用它?
我遇到的唯一情况是在类中调用方法中的方法。但这是可选的。这是一个愚蠢的例子,只是为了说明我的意思:
public class Test {
String s;
private String hey() {
return s;
}
public String getS(){
String sm = this.hey();
// here I could just write hey(); without this
return sm;
}
}