A constructor for a class looks like a member function except:
- It has no return type (it isn't called; it is used with new)
- The name of the constructor must be the same as the class name.
A constructor can have 0 or more parameters as needed.
A class can have multiple parameters