Classes Verses Structures
Classes are very similar to structures
The primary difference is that a class allows functions to be part of the collection
Such functions are called member functions and in chapter 5 we learned how to call them using the dot operator
(In fact structs can be used in exactly the same way as classes in C++ but this blurs the conceptual distinction between the notion of a class and structure)