在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()方法。