*ANSWERED* Simple C++ question: friends and inheritance

Started by
1 comment, last by Andorien 16 years, 10 months ago
Suppose I have 3 classes: A, B, and C. B is publicly derived from A, and C says A is a friend class. So far, everything looks like so:
class A
{
};

class B : public A
{
};

class C
{
   private:
      friend class A;
};



My question is: can class B access the private members in class C? [Edited by - Andorien on June 23, 2007 9:08:06 PM]
Advertisement
No.

friend declaration applies only to specific class - it doesn't apply to inheritance.
Good to know, thank you.

This topic is closed to new replies.

Advertisement