Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was going over some sample questions for an upcoming test, and this question is totally confusing me.

Consider the following code:

class GraduateStudent : public Student 
{
  ...
};

If the word "public" is omitted, GraduateStudent uses private inheritance, which means which of the following?

  1. GraduateStudent objects may not use methods of Student.

  2. GraduateStudent does not have access to private objects of Student.

  3. No method of GraduateStudent may call a method of Student.

  4. Only const methods of GraduateStudent can call methods of Student.

share|improve this question
4  
and what are your thoughts on the matter? – claptrap May 28 '10 at 14:27
4  
+1 for explicitly stating that this is homework. – Kena May 28 '10 at 14:33
I understand you not wanting to answer a homework question. I did put thought into this, and I know that in private inhritance, the public as well as private methods of the base class are private methods in the derived class. The course notes also say something about "that is, the derived class can use them, but they cannot be evoked from instances of the derived class" which I did not completely understand. – xbonez May 28 '10 at 14:37
Evil question, makes me glad I'm not at uni doing tests anymore - can't say I've ever seen private inheritance in the real world. Was glad of the other answers to actually remember what it means... – identitycrisisuk May 28 '10 at 15:51

4 Answers

up vote 22 down vote accepted

Although this is a bare homework-ish question, I'm going to answer it because it is a terrible question. I would almost consider it a trick question, and it doesn't really make for a good test of knowledge.

The answer is 2. GraduateStudent does not have access to private objects of Student., except that this has nothing at all to do with private inheritance. Point 2 would be true whether or not the public keyword were present, since derived classes never have access to the private members of their base classes, no matter how they inherit.

Private inheritance means essentially two things (as opposed to public inheritance):

  1. All public methods of Student become private methods in GraduateStudent. That means that if, for example, Student has a public method foo(), then GraduateStudent has a private method foo().

  2. The base class is "inaccessible", which means that polymorphism does not work. In layman's terms, this means that if GraduateStudent inherits privately from Student, then you cannot treat a GraduateStudent* as if it were a Student* (or a GraduateStudent& as if it were a Student&).

It's possible that the author of the question also meant for point 1 to be a correct answer, but it is ambiguously worded. What does it mean that "GraduateStudent objects may not use methods of Student"? It's possible that the intent is for this to mean that you cannot call methods inherited from Student on objects of type GraduateStudent, like I wrote in the first point above, but the GraduateStudent object itself, within its methods, can use methods of Student.

For example:

class Student {
  public: 
    void foo() {};
};

class GraduateStudent : Student {
  public: 
   void bar()
   {
     foo(); // Legal
   }
};

int main() {
  GraduateStudent g;

  g.bar(); // Legal
  g.foo(); // Illegal

  return 0;
};
share|improve this answer
1  
Right - it makes me wonder if the author of the question meant for (1) to be the correct answer but just worded it awfully. – sechastain May 28 '10 at 14:37
Well, either way (2) is definitely true, even if redundant, so the answer is either (2) or (1) and (2). – Tyler McHenry May 28 '10 at 14:38
You say "derived classes never have access to the private members of their base classes, no matter how they inherit.". If the inheritance is public, and all methods are public in the dervied class. Why, then, can't they be accessed by obects of the derived class? – xbonez May 28 '10 at 14:39
1  
+1 for the effort and the clarification of a badly worded homework question ... – neuro May 28 '10 at 14:40
1  
Actually, the access level specified for inheritance may also influence the access level of protected methods that are inherited. If Student had a protected method foo(), then an object deriving from GraduateStudent would not be able to call it. – Matthieu M. May 28 '10 at 15:24
show 3 more comments
1. GraduateStudent objects may not use methods of Student.

Not true, all GraduateStudent objects can use any public or protected members of Students (obviously private members are the exception here) internally. Also any outsider using these objects cannot access the base Student class of the object, the access to the base class must happen within the context of the GraduateStudent methods.

2. GraduateStudent does not have access to private objects of Student.

Yes

3. No method of GraduateStudent may call a method of Student.

Not true

4. Only const methods of GraduateStudent can call methods of Student.

Nope, there's no distinction made on const members having more access to the base class than non-const members would have.

share|improve this answer

The only correct answer that I see is 2, but that does not depend on whether GraduateStudent inherits from Student privately or publicly.

Private inheritance means that it is private knowledge that GraduateStudent is a Student, so only friends of GraduateStudent and GraduateStudent members can static_cast GraduateStudent& to Student& and GraduateStudent* to Student*, access public or protected member variables of Student, and call public or protected member functions of Student.

See: http://www.parashift.com/c++-faq-lite/private-inheritance.html

share|improve this answer

First: the inheritance access specifier does not modify the way Derived interacts with Base, it modifies the way the world can treat a Derived object as if it were a Base.

Consider:

struct A{};
struct B: xxxx A
{
  friend void friendly();
};
struct C: B {};

void outsider();

A very simple table: I summarize which zones of A can be accessed by the various actors.

xxxx         public      protected      private

B            pub/prot    pub/prot       pub/prot

friendly     pub/prot    pub/prot       pub/prot    *

C            pub/prot    pub/prot       --

outsider     pub         --             --

Note (*): A friend has the same rights that the object itself, no surprise there.

A simple rule of thumb is to consider that the inheritance access specifier overrides the access specifiers of the base class if they are looser.

Since nothing is looser than public, it does not change anything. protected means that the public section of the Base becomes protected, and private means that the public and protected sections become private.

share|improve this answer

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.