Definitions for "Member function"
(1) In C++, an operator or function that is declared as a member of a class. A member function has access to the private and protected data members and member functions of objects of its class. (2) A function that performs operations on a class. See nonmember function.
Any function declared to be part of a class.
a class specific function which is declared, or defined, in the body of the class definition, and it is always associated with a certain object, i