+ 2
A member function is a function that is defined inside a class, so its a member of the class ("member" function).
It can be called by any object of the class (using dot operator) and has access to all the classes variables, including private ones.