java中this.对象 表示本类的对象,那this.方法 表示本类的方法吗

如题所述

答: this代表的是本对象,  this.属性 代表本对象的属性, this.方法 表示本对象的方法.

参考代码

public class Test {
private String name;
public Test(String name) {
this.name=name;// this.name = name 表示 用传入的name参数给本对象的name赋值
this.print();//表示调用本对象的print()方法
}

public void print() {
System.out.println("Hello "+name);
}


public static void main(String[] args) {
new Test("张三");//输出Hello 张三
}
}

温馨提示:内容为网友见解,仅供参考
无其他回答
相似回答
大家正在搜