Is there anyway to declare an object of a class before the class is created in C++? I ask because I am trying to use two classes, the first needs to have an instance of the second class within it, but the second class also contains an instance of the first class. I realize that you may think I might get into an infinite loop, but I actually need to create and instance of the second class before the first class.
|
You can't do something like this:
The most obvious problem is the compiler doesn't know how to large it needs to make class A, because the size of B depends on the size of A! You can, however, do this:
Declaring class B as a forward declaration allows you to use pointers (and references) to that class without yet having the whole class definition. |
|||
|
|
|
You can't declare an instance of an undefined class but you can declare a pointer to one:
|
|||
|
|
|
There's an elegant solution using templates.
|
|||
|
|
Is this close to what you want: The first class contains the second class, but the second class (that is to be created first) just has a reference to the first class? |
|||
|