Method definition
A method is the executable code rendered in the class and executed inthe context of an object instance. It defines how to perform an operationin the object instance. It is made up of a message pattern that is usedto match against incoming messages, temporary variables, and a sequenceof instructions. A method execution is triggered when message is receivedthat matches the methods' message pattern.