|
Every method call has an implicit first argument: this, the object upon which the method is called. In other words, a reference to the object itself. (Note that I don't have my book in front of me.)
When you invoke an object's method, that method might manipulate the state of the object instance. Which instance? The object upon which the method is called. And how do we set the object pointer, this, which points to the base address of the object in memory.
|