6、this关键字

来源:互联网 发布:啵嘴 知乎 编辑:程序博客网 时间:2024/06/06 03:29
一 this关键字
1.1 this关键字
  • 在类的方法定义中使用的this关键字代表使用该方法的对象的引用
  • 当必须指出当前使用方法的对象是谁时要使用this
  • 有时使用this可以处理方法中成员变量和参数重名的情况
  • this可以看作是一个变量,它的值是当前对象的引用
如下图所示

this表示对象自己



如下面一段代码

public class Leaf {
    int i = 0;
    Leaf(int i) {
        this.i = i;          this.i表示成员变量i,后面的i表示形参i
    }

    Leaf increament() {
        i++;
        return this;
    }

    void print() {
        System.out.println("i = " +i);
    }

    public static void main(String[] args) {
        Leaf leaf = new Leaf(100);
        leaf.increament().increament().print();
    }
}
其内存图如下所示,中间过程省略

原创粉丝点击