你的位置:首页 > 信息动态 > 新闻中心
信息动态
联系我们

this关键字的使用

2021/12/31 2:18:17

this关键字的使用

当方法的局部变量和成员变量重名的时候,根据“就近原则”,优先使用局部变量。
如果需要访问本类当中的成员变量;需要使用this.成员变量名 的格式来访问

通过谁调用的方法,谁就是this。
this主要用来在重名的情况下区分名称

public class Person {

    String name;
    //打招呼,who是对方的名字,name是自己的名字
    public void sayHello(String name){
        System.out.println(name + ",你好,我是" + this.name);
    }
}
//

public class Demo01Person {
    public static void main(String[] args) {
        Person person = new Person();
        person.name = "cjy";
        person.sayHello("ccc");
    }
}