Member Functions

A member function is a C++ Functions that is a member of a class.

Typically these are public functions so that the user can call them as methods of the class instances. There are however private member functions that do some work in the background that the user doesn't even know exist.


Children
  1. Inline Member Function
  2. Member Access Operator
  3. Mutators Accessors and Private Helpers
  4. Scope Resolution Operator