Using Classes to build ADTs
•
We will use the C++ class construct to build
abstract data types
•
The data (represented by a data structure)
are placed in the private section
•
The operations (what the “client” or
application can do) is in the public section