Introduction To Classes

A class defines a new data type.
Every time an instance of a class is created, an object is created.
The object contains its own copy of each instance variable defined by the class.
A dot operator ( . ) is used to access these variables.
The dot operator links the name of the object with the name of an instance variable.