First page Back Continue Last page Graphics
Classes cont.
Scope syntax ::
Instantiating objects
- Class_Name Object_Name;
- Multiple objects have different data and different activations of the member functions.
- My_Class large, small, medium;
- large.GetValue();
- medium.GetValue();