January 2014
Intermediate to advanced
736 pages
70h 43m
English
Every object can access a reference to itself with keyword this (sometimes called the this reference). When a non-static method is called for a particular object, the method’s body implicitly uses keyword this to refer to the object’s instance variables and other methods. This enables the class’s code to know which object should be manipulated. As you’ll see in Fig. F.4, you can also use keyword this explicitly in a non-static method’s body. Section F.5 shows another interesting use of keyword this. Section F.10 explains why keyword this cannot be used in a static method.
We now demonstrate implicit and explicit use of the this reference (Fig. F.4). This example is the first ...
Read now
Unlock full access