共计 265 个字符,预计需要花费 1 分钟才能阅读完成。
在 Java 中,可以使用关键字 this
来调用本类的方法。this
表示当前对象,可以用于获取当前对象的引用,然后通过该引用调用本类的方法。例如:
public class MyClass {public void myMethod() {System.out.println(" 调用了本类的方法 ");
}
public void anotherMethod() {// 调用本类的方法
this.myMethod();}
}
在上面的例子中,anotherMethod()
方法通过 this
关键字调用了本类的 myMethod()
方法。
丸趣 TV 网 – 提供最优质的资源集合!
正文完