Is some one able to explain why header files have something like this?
class foo; // This here?
class bar
{
bar();
};
Do you need an include statement when using this?
Thanks.
|
Is some one able to explain why header files have something like this?
Do you need an include statement when using this? Thanks. |
||||
|
|
|
The first Such forward declarations are frequently used when two types each may have pointers to each other, in which case both need to be able to express the notion of a pointer to the other type, and so you would have a circular dependency without such a thing. This is needed mostly because C++ uses a single pass mechanism for resolving types; in Java, you can have circular dependencies without forward declarations, because Java uses multiple passes. You may also see forward declarations where the author is under the misguided impression that using forward declarations instead of including the required header reduces compile time; that, of course, is not the case, because you need to include the full declaration (i.e. the header), anyway, and if preprocessor guards are used, then there is basically no difference in compile time. To answer your question on whether you need the include or not... assuming you only need a partial type, then your header does not need to directly include the header for the type that has been forward declared; however, whoever makes use of your header, when they use your type will need to include the header for the forward declared type, and so you might as well just include the other header. |
||||
|
|
That's a forward declaration. You need it for example if class bar has a pointer to a foo object, but you don't want to include the whole definition of the foo object immediately. |
|||
|
|
|
this is a forward declaration of the class. In my experience, this is typically done when you have a circular dependency.. for example
|
|||
|
|
|
Just curious, why do we need the term forward declaration at all? Isn't a forward declaration simply a declaration (as opposed to a definition)?
|
|||
|
|
|
That's a forward declaration. Consider the following example:
If you haven't included the definition of |
|||
|
|
It's a forwards declaration of the class 'foo'. It allows you to declare pointers and references to the class, but not use it (eg. call members or determine its size), because it's not yet defined! It must later be followed up with a full, normal declaration ( It's useful for things like declaring two classes which hold pointers to each other, which otherwise would be impossible to set up. |
|||
|
|
|
This is called forward declaration. The body of the class
As you can see,
|
|||
|
|
|
This is called a forward declaration. It is used to make your code aware that the class foo exists. This in turn can be used by the class bar. It's commonly used to solve circular includes problems. Take this for example
and
This causes a circular include problem, because a.h includes b.h which in turns includes a.h, to infinity. You can solve this problem by making a forward declaration of each class in each header, like so :
Note : Very often when you have a circular include problem, this is indicative of a conception/modelling problem. You should probably ask yourself if your classes are well defined before trying to solve your problem with forward declarations. |
|||
|
|
|
Try to think of writing this: file bar.h:
file foo.h:
This won't work, first due to infinite #include chain, then if you get rid of one of the includes, either Foo won't know what Bar is, or Bar won't know what Foo is. Try this instead:
file foo.h:
|
|||
|
|