Explain the functioning of “this” Keyword and the

2019-09-03 10:04发布

I have been learning Java from Java 2: Complete Reference, 5th Edition. I couldn't understand the exact of purpose this keyword and the concept of instance variable hiding. please explain me with example.

标签: java keyword
1条回答
欢心
2楼-- · 2019-09-03 11:00

The exact purpose of this is to remove ambiguity from local variable from your field variables.

this is an alias or a name for the current instance inside the instance. It is useful for disambiguating instance variables from locals (including parameters), but it can be used by itself to simply refer to member variables and methods, invoke other constructor overloads, or simply to refer to the instance. Some examples of applicable uses (not exhaustive):

class Foo
{
 private int bar; 

 public Foo() {
      this(42); // invoke parameterized constructor
 }

 public Foo(int bar) {
     this.bar = bar; // disambiguate 
 }

 public void frob() {
      this.baz(); // used "just because"
 }

 private void baz() {
      System.out.println("whatever");
 }

}

also read this keyword and also this link

查看更多
登录 后发表回答