I have a class that should have a private member of the same class. So like this -

class A{
    private:
        A member;
}

But it tells me that member is an incomplete type. Why? It doesn't tell me incomplete type if I use a pointer, but I'd rather not use a pointer. Any help is appreciated

link|improve this question

73% accept rate
5  
If what you're doing was allowed, how many bytes would an instance of A require? – mu is too short Jun 14 '11 at 20:43
You have another problem here. The private A will have its own private member, which has its own private member, which has... – Bo Persson Jun 14 '11 at 20:44
1  
possible duplicate of Incomplete Type – Bo Persson Jun 14 '11 at 20:46
@BoPersson: Hardly a duplicate, though both OPs' errors are the same. – Lightness Races in Orbit Jun 14 '11 at 20:49
1  
@Tomalak - They both try to have classes with members of the same type, and get the same error message. Perhaps different intent, but with the same result. – Bo Persson Jun 14 '11 at 20:52
show 3 more comments
feedback

6 Answers

up vote 4 down vote accepted

At the time you declare your member, you are still defining the A class, so the type A is still undefined.

However, when you write A*, the compiler already knows that A stands for a class name, and so the type "pointer to A" is defined. That's why you can embed a pointer to the type your are defining.

The same logic applies also for other types, so if you just write:

class Foo;

You declare the class Foo, but you never define it. You can write:

Foo* foo;

But not:

Foo foo;

On another hand, what memory structure would you expect for your type A if the compiler allowed a recursive definition ?

However, its sometimes logically valid to have a type that somehow refer to another instance of the same type. People usually use pointers for that or even better: smart pointers (like boost::shared_ptr) to avoid having to deal with manual deletion.

Something like:

class A
{
  private:
    boost::shared_ptr<A> member;
};
link|improve this answer
I am making a maze solving program and I wanted a class Position to have a previous Position member. – Sterling Jun 14 '11 at 20:47
@Sterling: I have updated my answer to indicate a possible solution. – ereOn Jun 14 '11 at 20:51
2  
@Sterling: It may make more sense for the owning class to contain both "nowPosition" and "previousPosition" members. A position is a position; it doesn't need to know about other positions. – Lightness Races in Orbit Jun 14 '11 at 21:19
feedback

You cannot include A within A. If you were able to do that, and you declared, for example, A a;, you would need to refer to a.member.member.member... infinitely. You don't have that much RAM available.

link|improve this answer
feedback

How can an instance of class A also contain another instance of class A?

It can hold a pointer to A if you want.

link|improve this answer
feedback

A is "incomplete" until the end of its definition (though this does not include the bodies of member functions).

One of the reasons for this is that, until the definition ends, there is no way to know how large A is (which depends on the sum of sizes of members, plus a few other things). Your code is a great example of that: your type A is defined by the size of type A.

Clearly, an object of type A may not contain a member object that is also of type A.

You'll have to store a pointer or a reference; wanting to store either is possibly suspect.

link|improve this answer
feedback

This is a working example of what you are trying to achieve:

class A {
public:
    A() : a(new A()) {}
private:
    A* a;
};

A a;

Happy Stack Overflow!

link|improve this answer
+1 for humor and a nice double take. Stack overflow indeed. – David Hammen Jun 14 '11 at 21:20
feedback

This type of error occurs when you try to use a class that has not yet been fully DEFINED.

Try to use A* member instead.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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