Java Method Invocation
¥A Java method m is executed by sending a method call
    o.m()
¥ to an object o, called the receiver.  The method m must be a member of o.
¥The code defining the method m can refer to the receiver using the keyword this.