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.

I am an object-oriented programming enthusiast at a beginner level. I have encountered the following puzzle:

class A { 
}; 

class B { 
protected: 
    friend class A; 
};

class C { 
public: 
    friend class B; 
};

Referring to the sample code above, assuming the above classes had data members, what names of C's members could be used in declarations of members of A?

  1. Only private members

  2. Only protected members

  3. All of C's data members

  4. Only public members

  5. None of C's data members*

My choice is answer 4 as friendship is not transitive. Therefore, A is a friend of B, but A is not a friend of C (even though B is a friend of C). Is that correct thinking?

Also, my issue is that so far (in the tutorial) I've met exmaples in which friendship was declared like this:

class X { 
public: 
    friend class Y;
};

What is the difference if instead of the public specifier we use the protected one? Like that:

class X { 
protected: 
    friend class Y; 
};
share|improve this question
+1 for a well formulated question. – jrok Jan 17 at 12:29

1 Answer

up vote 7 down vote accepted
  1. You are correct. Friendship is not transitive nor is it Inherited.
  2. It does not make any difference under what access specifier you put the friend declaration.

As long as class A itself is not declared friend of class C. You cannot access any protected or private members of C in A.

share|improve this answer
Thank you for clarifying – Prz3m3k Jan 17 at 13:02

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.