阅读量:0
在Java中,可以使用关键字this
来调用本类的方法。this
表示当前对象,可以用于获取当前对象的引用,然后通过该引用调用本类的方法。例如:
public class MyClass { public void myMethod() { System.out.println("调用了本类的方法"); } public void anotherMethod() { // 调用本类的方法 this.myMethod(); } }
在上面的例子中,anotherMethod()
方法通过this
关键字调用了本类的myMethod()
方法。