I'm trying to get an understanding of what the the java keyword this actually does.
I've been reading Sun's documentation but I'm still fuzzy on what this actually does.
|
1
|
|
|
|
|
|
The
Another way to think about it is that the If you were to reference objects that are intrinsically yours you would say something like this:
Think of
|
||||||||||
|
|
|
The keyword It can be used as a object reference which refers to the instance the current method was called on: It can be used as a object reference which refers to the instance the current constructor is creating, e.g. to access hidden fields:
It can be used to invoke a different constructor of a a class from within a constructor:
It can be used to access enclosing instances from within a nested class:
|
||
|
|
|
|
"this" is a reference to the current object. See details here |
||
|
|
|
|
An even better use of this
It allows you to specifically "this" object in the current context. Another example:
How else could you do these operations. |
||||||||||
|
|
|
The keyword 'this' refers to the current object's context. In many cases (as Andrew points out), you'll use an explicit this to make it clear that you're referring to the current object. Also, from 'this and super': *There are other uses for this. Sometimes, when you are writing an instance method, you need to pass the object that contains the method to a subroutine, as an actual parameter. In that case, you can use this as the actual parameter. For example, if you wanted to print out a string representation of the object, you could say "System.out.println(this);". Or you could assign the value of this to another variable in an assignment statement. In fact, you can do anything with this that you could do with any other variable, except change its value.* That site also refers to the related concept of 'super', which may prove to be helpful in understanding how these work with inheritance. |
||
|
|
|
|
Think of it in terms of english, "this object" is the object you currently have.
For example, you are currently inside a class that extends from the JFrame and you want to pass a reference to the WindowMaker object for the JFrame so it can interact with the JFrame. You can pass a reference to the JFrame, by passing its reference to the object which is called "this". |
||
|
|
|
|
It's a reference of actual instance of a class inside a method of the same class. coding
In calc() body, the software runs a method inside the object allocated currently. How it's possible that the behaviour of the object can see itself? With the this keyword, exactly. Really, the this keyword not requires a obligatory use (as super) because the JVM knows where call a method in the memory area, but in my opinion this make the code more readeable. |
||
|
|
|
|
It can be also a way to access information on the current context. For example:
|
||
|
|
|
|
The keyword
It's not used a lot unless you have code standard at your place telling you to use the
One proper use of the this keyword is to chain constructors (making constructing object consistent throughout constructors):
This keyword works the same way in e.g. C#. |
||||||||||
|
