在Java中,可以使用關鍵字"this"來調用當前類的方法。例如:
public class MyClass {
public void myMethod() {
System.out.println("This is my method.");
}
public void anotherMethod() {
this.myMethod(); // 調用當前類的myMethod()方法
}
public static void main(String[] args) {
MyClass obj = new MyClass();
obj.anotherMethod();
}
}
在上面的例子中,通過使用"this"關鍵字來調用當前類的myMethod()方法。