More
Class Concepts
The
this pointer- this is a pointer to the current object
- this is most often used to return by reference
Static
Data Members- A static data member is a class member that is shared among all class objects
- It is stored in static memory, not with the rest of the class objects
- It must be defined outside of the class, in the global workspace area
Static
Member Functions- Static member functions are used to access static data members
- Static member functions are defined outside of the class without the keyword, static
- Static member functions do not have access to the this pointer
Friends- Friends are non-class member functions that have access to private members of a class
Function Overloading, conversions
What is operator overloading?
|