Dereferencing happens with the . operator:
Object obj = new Object();
String text = obj.toString(); // 'obj' is dereferenced.
Dereferencing follows the memory address stored in a reference, to the place in memory where the actual object resides. When an object has been found, the requested meth...