java之this关键字

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java之this关键字相关的知识,希望对你有一定的参考价值。

this使用范围  

1、在类的方法定义中使用的this关键字代表调用该方法对象的引用。

2、当必须指出当前使用方法的对象是谁时,要使用关键字this。

3、有时使用this可以处理方法中成员变量和参数重名的情况。

4、this可以看做是一个变量,它的值是当前对象的引用。

注:this一般出现在方法中,当方法没有被调用时。并不知道this指向那个具体的对象。

当某个对象调用有this的方法时,this就指向调用这个方法的对象。

 

public class TestThis{
    private int i;
    public TestThis(int i){
        this.i = i;
    }
    private TestThis increment(){
        i += 1;
        return this;
    }
    
    public static void main (String[] args){
        TestThis mTestThis = new TestThis(100);
        System.out.println(mTestThis.increment().increment().i);
    }
}

输出结果:102

以上是关于java之this关键字的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript 基础之this关键字

JavaScript 基础之this关键字

java基础面向对象之this关键字

Java之this关键字

java之this关键字

Java基础之this关键字