Tagged Questions
11
votes
3answers
752 views
Is friendship inherited in C++?
Suppose I have a Base class:
class Base {
friend SomeOtherClass;
};
And there is another (different) class that inherits from Base:
class AnotherClass : public Base {}
Is friendship ...
7
votes
3answers
191 views
Friendship not inherited - what are the alternatives?
This may be a futile question.
I have written/am writing a piece of physics analysis code, initially for myself, that will now hopefully be used and extended by a small group of physicists. None of ...
4
votes
5answers
467 views
When is it prudent to use friendship in OOP?
I'm currently getting through the http://www.cplusplus.com tutorial and I came across this section here: http://www.cplusplus.com/doc/tutorial/inheritance.html that deals with the subject of friend ...
3
votes
3answers
138 views
C++ Friendship and inheritance [closed]
I know that friendship is not inherited. I was asking myself: why? Why the C++ designers decided to not let friendship be inherited? Do you find that friendship inheritance would be a useful thing to ...