Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 inherited as well?

Thank you

share|improve this question
Yet another question that should have been answered easily using a COMPILER. – shoosh Feb 28 '09 at 11:39
6  
@shoosh: compilers do not necessarily conform to standards. Such a question should be answered by the standard, not compilers. – Hosam Aly Mar 1 '09 at 7:58

3 Answers

up vote 18 down vote accepted

In principle, a derived class inherits every member of a base class except:

* its constructor and its destructor
* its operator=() members
* its friends

So, no. Friends are not inherited.

share|improve this answer
4  
It's interesting that you chose the exact wording to say that as this website: cplusplus.com/doc/tutorial/inheritance – dicroce Apr 24 '09 at 20:48

No it isn't.

Edit: To quote from the C++ Standard, section 11.4/8

Friendship is neither inherited nor transitive.

share|improve this answer

No it isn't, as documented here: http://www.parashift.com/c++-faq-lite/friends.html#faq-14.4

share|improve this answer
The example in the link shows the opposite case to the OP's question. I'd like to add that SomeOtherClass will have access to the Base fields and methods inherited in objects of AnotherClass. – Hosam Aly Feb 28 '09 at 11:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.