C++ Friend Question:
Download Job Interview Questions and Answers PDF
Explain advantages of using friend classes?
Answer:
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 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.
Download C++ Friend Interview Questions And Answers
PDF
Previous Question | Next Question |
What are friend classes? | Explain the characteristics of friend functions? |