Tagged Questions

In object-oriented programming to allow access to "private" or "protected" data of a class in another class, the latter class is declared as a friend class.

learn more… | top users | synonyms

9
votes
6answers
358 views

Why friend directive is missing in Java?

I was wondering why Java has been designed without the frienddirective that is available in C++ to allow finer control over which methods and instance variables are available from outside the package ...
7
votes
6answers
1k views

Using a friend class vs. adding accessors for unit testing in C++?

Is it better to add functions that return the internal state of an object for unit testing, as opposed to making the testing class a friend? - especially, when there is no use for the functions except ...
5
votes
3answers
209 views

Inheriting friendship in C++?

Since class friendship is not inherited in C++, what's the best way to "fake" it? I was thinking about exposing the friend class's private interface through protected methods in the to-be-inherited ...
4
votes
4answers
177 views

Definition of friend class and accessor sections

When defining a class as a friend class, does it matter in which accessor section the definitions is placed, and if so does that change the members the friend has access to? class aclass { private: ...
3
votes
5answers
129 views

Keeping part of public nested class visible only to the nesting class

I have a nested class in c++ which has to be public. But I need some of its methods visible to the outer world, and the rest visible only to the nesting class. That is: class set { public: class ...
1
vote
2answers
47 views

friend class doesn't do well with me?

I am trying to deal with friend class for the first time. I wrote the code below: class Kind{ private: friend class Type; int x; public: Kind(){ x=0; } void setX(int X) { x =X; } ...
1
vote
5answers
114 views

Why does friend class crash on static function call?

#include <iostream> using namespace std; class CClass { private: friend class CFriend; static void privateFunc(){std::cout << "privateFunc" << std::endl;}; }; class CFriend ...
1
vote
2answers
67 views

“Friend Classes” in javascript

I have a Factory class that creates a Widget object. The Factory object needs to callback a "private method" of the Widget object at a later time to pass it some ajax info. So far, the only ...
1
vote
3answers
132 views

how to link two template classes in many-to-many friendship?

assume that I have the following two template classes : template <class _A> class First { private: int a; }; template <class _B> class Second { private: int b; }; how can I ...