The friend function is a ‘non member function’ of a class. It can access non public members of the class. A friend function is external to the class definition.
A friend function has the following advantages:
- Provides additional functionality which is kept outside the class.
- Provides functions that need data which is not normally used by the class.
- Allows sharing private class information by a non member function.
- Provides functions that need data which is not normally used by the class.
- Allows sharing private class information by a non member function.

0 Comments:
Post a Comment