Answers

Question and Answer:

  Home  C++ Friend

⟩ List the advantages of using friend classes?

There are situations when private data members need to be accessed and used by 2 classes simultaneously. In these kind of situations we can introduce friend functions which have an access to the private data members of both the classes. Friend functions need to be declared as 'friend' in both the classes. They need not be members of either of these classes.

 188 views

More Questions for you: