其他分享
首页 > 其他分享> > this的使用

this的使用

作者:互联网

this

/**
 * @Author 小吕
 * @Description this的使用(当前对象-同名时使用,消歧义)
 *              this.属性     this.方法
 * @Date  2021/2/10 20:29
 **/
public class ThisUse {
    public static void main(String[] args) {
        Person3 person3=new Person3(20);
//        person3.setAge(20);
//        System.out.println(person3.getAge());
    }
}
class Person3{
    private int age;
    public Person3(){
        System.out.println("无参");
    }
    public Person3(int age){
        this();//放在第一个才可,调用上一个无参构造器;
        this.age=age;
        System.out.println("有参");
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }


}

标签:person3,int,age,System,Person3,使用,public
来源: https://blog.csdn.net/weixin_45673116/article/details/113790535