this关键字方法中使用方法

//this在private关键字后标准代码该怎么写?
/*this代表对象得引用,那个对象调用this所在得方法,this就代表那个对象
 this作用:this可以掘金局部变量隐藏成员变量得问题*/
class phone {
    String name;
    int age;

    public void setName(String name) {
        this.name = name;
    }

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

    public String getName() {
        return name;
    }

    public int getAge() {
        return age;
    }
}
posted @ 2024-06-25 15:31  公子Learningcarer  阅读(3)  评论(0编辑  收藏  举报