Friday, September 19, 2008

Friend in C++

In some circumstances, it is more convenient to grant member-level access to functions that are not members of a class or to all functions in a separate class. You can declare friend functions or friend classes to access not only public members but also protected and private class members.

The friend keyword allows a function or class to gain access to the private and protected members of a class.

No comments: