【Java】——详解关键字this到底是代表当前对象还是代表当前对象的引用?
程序员文章站
2022-06-28 08:03:13
1.this关键字 this表示当前对象的引用。——可以借助this来访问对象的方法和字段。2.代码:class Person{ private String name;//实例成员变量 private int age; private String sex; //默认构造函数 构造对象 public Person(){ //this调用构造函数 this("zhangsan",22,"man");//必须放在.....
1.this关键字
this表示当前对象的引用。——可以借助this来访问对象的方法和字段。
2.代码:
class Person{
private String name;//实例成员变量
private int age;
private String sex;
//默认构造函数 构造对象
public Person(){
//this调用构造函数
this("zhangsan",22,"man");//必须放在第一行进行显示
}
//这两个构造函数之间的关系为重载。
public Person(String name,int age,String sex){
this.name = name;//this 代表当前对象的引用
this.age = age;
this.sex = sex;
}
public void show(){
System.out.println("name:" + name + " age:" + age + " sex:" + sex);
}
}
public class TestDemo {
public static void main(String[] args) {
Person person = new Person();//调用不带参数的构造函数
person.show();
}
}
3.运行结果:
4.分析:
可发现在构造函数的内部,我们可以使用this关键字,构造函数是用来创建对象的,对象还没有构造好,我们就使用了this,那么此时this怎么会代表当前对象呢?
因此this代表的是当前对象的引用。
本文地址:https://blog.csdn.net/qq_45991995/article/details/111941661
上一篇: 简析如何才能把营销型网站做好
下一篇: 负面SEO是什么 常见负面SEO方法总结