revised 10/09/98; 09/04/99; 01/20/00
An object contains both variables and methods. Often when you use an object's method, you need to supply it with some information. For example:
Point pt = new Point(); pt.move( 14, 22 ); // move pt to x=14, y=22
The move() method
takes two parameters that give the x and y value
of the new location.