Day43--this关键字

Day43--this关键字

在Java中,this 关键字是一个引用变量,它指向当前对象。换句话说,this 关键字表示当前正在执行方法或构造函数的对象。this 关键字主要有以下用途:

区分实例变量和局部变量

当方法或构造函数的参数名称与实例变量相同时,可以使用 this 关键字来区分它们。在这种情况下,this 关键字表示实例变量,而不带 this 的变量表示局部变量。

示例:

class Person {
    private String name;

    public Person(String name) {
        this.name = name; // 使用 this 区分实例变量和构造函数参数
    }

    public void setName(String name) {
        this.name = name; // 使用 this 区分实例变量和方法参数
    }
}
posted @ 2024-12-08 10:43  1hahahahahahahaha  阅读(9)  评论(0)    收藏  举报