Consider:
class TestParent{
public int i = 100;
public void printName(){
System.err.println(this); //{TestChild@428} according to the Debugger.
System.err.println(this.i); //this.i is 100.
}
}
class TestChild extends TestParent{
public int i = 200;
}
public class ThisTest {
public static void main(String[] args) {
new TestChild().printName();
}
}
I know that similar questions have been asked, but I couldn't get a firm understanding of the 'this' variable in Java.
Let me try to explain how I understand the result of the above image.
Since it's a
new TestChild()
object that's calling theprintName()
method, thethis
variable in line 6 is set to aTestChild
object - {TestChild@428} according to the Debugger.However, since Java doesn't have a virtual field - I'm not completely sure what this means, but I conceptually understand it as being the opposite of Java methods, which support Polymorphism -
this.i
is set to 100 ofTestParent
at compile time.So no matter what
this
is,this.i
in aTestParent
method will always be thei
variable in theTestParent
class.
I'm not sure that my understanding is correct so please correct me if I'm wrong.
And also, my main question is,
How is the this
variable set to the current object that's calling the method? How is it actually implemented?
In essence, there is no difference between
and
as both are "implemented" the same way. Keep in mind that "in the end" "object orientation is only an abstraction, and in "reality" what happens is something like:
In other words: whenever you use some object reference to call a method ... in the end there isn't a call on some object. Because deep down in assembler and machine code, something like "a call on something" doesn't exist.
What really happens is a call to a function; and the first (implicit/invisible on the source code level) parameter is that object.
BTW: you can actually write that down in Java like:
and later use
And for this.fieldA, in the end: you have a reference to some location in memory; and a table that tells you on which "offset" you will find fieldA.
Edit - just for the record. If you are interested in more details about foo(Bar this) - you can turn to this question; giving the details in the Java spec behind it!
Well when a new object is created that object has an address in memory so you can think of it as if the object had a private member
this
that is set to the address when the object is created. You can also think of it like this:obj.method(param)
is just syntactic sugar formethod(obj, param);
andthis
is actually a parameter ofmethod
.Adding some more info on top of @Tom Anderson answer, which explains hiding concept nicely.
I have added one more constructor in Child (
TestChild
) which prints values of i in both parent and child.If you want get value of
i
from child (TestChild
), override the method inTestChild
.Case 1: If I comment
super.printName()
call from child, Child version ofTestChild.printName()
prints the value of i inTestChild
Output:
Case 2: TestChild.printName() calls super.printName() as the first line in printName() method. In this case, i value from both parent and child are displayed in respective methods.
Output:
To directly address what you see in the output: The call to print 'this.i' is passing as argument to 'print()' the value of the field 'i' in the current scope, which is the scope of the parent class. By contrast, the call to print 'this' is getting translated under the hood to a call to print 'this.getClass().getName()' [roughly speaking], and the 'getClass()' call gets the actual class object, which is for the child class.
What's happening here is that there are two completely different fields both called
i
; to use their full names, one isTestParent::i
and one isTestChild::i
.Because the method
printName
is defined inTestParent
, when it refers toi
, it can only seeTestParent::i
, which is set to 100.Whereas when you set
i
to 200 inTestChild
, both fields calledi
are visible, but because they have the same name,TestChild::i
hidesTestParent::i
, and you end up settingTestChild::i
and leavingTestParent::i
untouched.