在Java中,可以使用關(guān)鍵字this
來調(diào)用本類的方法。this
表示當(dāng)前對象,可以用于獲取當(dāng)前對象的引用,然后通過該引用調(diào)用本類的方法。例如:
public class MyClass {
public void myMethod() {
System.out.println("調(diào)用了本類的方法");
}
public void anotherMethod() {
// 調(diào)用本類的方法
this.myMethod();
}
}
在上面的例子中,anotherMethod()
方法通過this
關(guān)鍵字調(diào)用了本類的myMethod()
方法。