The class Object has a method toString() which will return a string that describes the object. By default, this returns:
getClass().getName() + '@' + Integer.toHexString(hashCode())
Programmers can...