CS202   2- ‹#›
Constructors
nLuckily, with a constructor we can write a function to initialize our data members
äand have it implicitly be invoked whenever a client creates an object of the class
nThe constructor is a strange function, as it has the same name as the class, and no return type (at all...not even void).
n