“class” Terminology
We have seen the use of structures in a more
simple context,
as we examined with the video struct.
It had three members (data members)
called title, category, and quantity.
They are “public” by default,
so all functions that have objects of type video can
directly access members by:
video object;
object.title    object.category   object.quantity