Defining a Class...
•
Once we have decided on how the new type of data
should behave, we are ready to define a class:
class data_type_name {
public:
//operations go here
private:
//memory is reserved here
};