在Java中,可以通過this關(guān)鍵字來調(diào)用當前對象的方法。this關(guān)鍵字代表當前對象的引用,可以在類的方法中使用它來調(diào)用當前對象的其他方法。例如:
public class MyClass {
public void method1() {
System.out.println("method1 is called");
}
public void method2() {
System.out.println("method2 is called");
// 調(diào)用當前對象的method1方法
this.method1();
}
public static void main(String[] args) {
MyClass myObject = new MyClass();
myObject.method2();
}
}
在上面的例子中,method2方法中使用this關(guān)鍵字調(diào)用了當前對象的method1方法。當main方法中調(diào)用myObject.method2()時,輸出結(jié)果為:
method2 is called
method1 is called