Forward declarations allow statically-typed programs to indicate the type and name of a symbol without actually defining it.
126
votes
9answers
25k views
When to use forward declaration?
I am looking for the definition of when I am allowed to do forward declaration of a class in another class's header file:
Am I allowed to do it for a base class, for a class held as a member, for a ...
8
votes
8answers
9k views
C++ - Forward declaration
At: http://www.learncpp.com/cpp-tutorial/19-header-files/
The following is mentioned:
add.cpp:
1 int add(int x, int y)
2 {
3 return x + y;
4 }
main.cpp:
01 #include <iostream>
...
6
votes
2answers
5k views
Private Method Declaration Objective-C
I have a lot question marks tolling above my head.
What i don't get is before xcode 4.3 i needed to declare forward declarations (for private methods) in my implementation file.
like in my .m file:
...
56
votes
4answers
13k views
Forward declaration of nested types/classes in C++
I recently got stuck in a situation like this:
class A
{
public:
typedef struct/class {...} B;
...
C::D *someField;
}
class C
{
public:
typedef struct/class {...} D;
...
A::B ...
66
votes
5answers
37k views
Forward declaration of a typedef in C++
Why won't the compiler let me forward declare a typedef?
Assuming it's impossible, what's the best practice for keeping my inclusion tree small?
11
votes
1answer
10k views
Objective-C: Forward Class Declaration
I'm writing a multiview app that utilizes a class called RootViewController to switch between views.
In my MyAppDelegate header, I create an instance of the RootViewController called ...
20
votes
5answers
1k views
Should one use forward declarations instead of includes wherever possible?
Whenever a class declaration uses another class only as pointers, does it make sense to use a class forward declaration instead of including the headerfile in order to pre-emptively avoid problems ...
3
votes
4answers
1k views
What is forward declaration in c++?
This answer says:
… Finally,
typedef struct { ... } Foo;
declares an anonymous structure and creates a typedef for it. Thus, with this construct, it doesn't have a name in the tag ...
23
votes
4answers
14k views
Templates: Use forward declarations to reduce compile time?
I have to deal with a library that consists of many templated classes, which are of course all implemented in header files. Now I'm trying to find a way to reduce the unbearably long compile times ...
23
votes
10answers
16k views
Is it possible to forward-declare a function in Python?
I want to sort a list using my own cmp function. For the purpose of this discussion we can use the following example which is equivalent to what I'm trying to do:
print "\n".join([str(bla) for bla ...
28
votes
4answers
7k views
How do I forward declare an inner class? [duplicate]
Possible Duplicate:
Forward declaration of nested types/classes in C++
I have a class like so...
class Container {
public:
class Iterator {
...
};
...
};
Elsewhere, ...
8
votes
5answers
1k views
Forward declare FILE *
How do I forward declare FILE * in C? I normally do this using struct MyType;, but naturally this doesn't appear to be possible.
If behaviour differs between C standards or compilers and with C++, ...
11
votes
3answers
1k views
Is there a shorter way to forward declare a class in a namespace?
I can forward declare a function in a namespace by doing this:
void myNamespace::doThing();
which is equivalent to:
namespace myNamespace
{
void doThing();
}
To forward declare a class in a ...
8
votes
5answers
5k views
Forward Declaration vs Include
Consider the following two scenarios (Edited just to complete the whole question and make it clearer)
Case 1: (doesnt compile as rightly mentioned below)
//B.h
#ifndef B_H
#define B_H
#include "B.h"
...
5
votes
5answers
3k views
Ambiguous function declaration in Javascript
I am new to Javascript and got confused by how the function declaration works. I made some test on that and got some interesting results:
say();
function say()
{
alert("say");
}
The ...
23
votes
2answers
4k views
Why does a C++ friend class need a forward declaration only in other namespaces?
Suppose I have a class F that should be friend to the classes G (in the global namespace) and C (in namespace A).
to be friend to A::C, F must be forward declared.
to be friend to G, no forward ...
22
votes
12answers
5k views
Forward declarations of unnamed struct
Bounty question: So, these two Foos aren't the same thing. Fine. The second form is given in a library. How do I forward-declare it given that I can't change it?
I always thought C and C++ allowed ...
4
votes
5answers
2k views
Header files inclusion / Forward declaration
In my C++ project when do I have to use inclusion (#include "myclass.h") of header files? And when do I have to use forward declaration of the class (class CMyClass;)?
5
votes
5answers
698 views
Importing header in objective c
In Objective-c when we using object of one class into another class by convention we should forward declare the class in .h file, i.e. @class classname;. And should import the header file in .m file, ...
15
votes
3answers
2k views
Why can't I use a Javascript function before it's definition inside a try block?
As discussed here, function definitions can be used before they're defined. But as soon as a section of code is wrapped in a try block, this ceases to be the case.
This displays "Hello world":
...
4
votes
4answers
699 views
How come forward declaration is not needed for friend class concept?
I've just recently learned about friend class concept in C++ (I've googled around for a bit, but this answer made me laugh until I remembered the most important parts), and I'm trying to incorporate ...
2
votes
3answers
11k views
Invalid use of incomplete type struct, even with forward declaration
I'm aware of circular dependencies, but even with forward declarations I get this area.
What am I doing wrong?
// facility.h
class Area;
class Facility {
public:
Facility();
Area* ...
2
votes
3answers
500 views
Two classes and inline functions
I have two classes and both of them uses some of the other class, on example:
// class1.h
class Class1;
#include "class2.h"
class Class1 {
public:
static Class2 *C2;
...
};
// class2.h
class ...
14
votes
3answers
2k views
delete objects of incomplete type
This one made me think:
class X;
void foo(X* p)
{
delete p;
}
How can we possibly delete p if we do not even know whether X has visible destructor? g++ 4.5.1 gives three warnings:
warning: ...
7
votes
4answers
1k views
Declare before use in C++
I'm wondering why the declare-before-use rule of C++ doesn't hold inside a class.
Look at this example:
#ifdef BASE
struct Base {
#endif
struct B;
struct A {
B *b;
A(){ ...
6
votes
2answers
226 views
Forward declarations in bash?
Is there such thing in bash or at least something similar (work-around) like forward declarations (well known in C/C++, for example)?
Or there's so such thing, because it's always executed in one ...
5
votes
6answers
2k views
Forward declaration of class doesn't seem to work in C++
The follwing code is compiled in VC++6. I don't understand why I am getting the compilation error C2079: 'b' uses undefined class 'B' for the following code.
Class B Source
#include "B.h"
void ...
4
votes
3answers
857 views
Forward Referencing or Declaration in C++
How do I do forward referencing / declaration in C++ to avoid circular header file references?
I have the #ifndef guard in the header file, yet memory tells me I need this forward referencing thing - ...
1
vote
3answers
262 views
What are the drawbacks of forward declaration?
I am wondering if there is any drawbacks for using forward declarations in all places when it is possible.This is if my header contains only declarations.
As far as i understand using forward ...
1
vote
3answers
3k views
typedef stuct with forward declaration in C
I have something like:
typedef struct Data DATA, *DATA_PTR;
typedef struct Units UNITS, *UNITS_PTR;
struct Data
{
double miscData;
UNITS units;
};
struct Units
{
double x[2];
double ...
5
votes
3answers
830 views
How does a C/C++ compiler find the definitions of prototypes in header files?
When I declare a function in a header file, and put the definition of that function in some other file, how does the compiler/linker find the definition? Does it systematically search every file in ...
6
votes
5answers
131 views
calling functions above their declaration
void foo()
{
bar(); // error: ‘bar’ has not been declared
}
void bar()
{
}
namespace N
{
void foo()
{
N::bar(); // error: ‘bar’ is not a member of ‘N’
}
void ...
6
votes
2answers
5k views
Forward declare a class's public typedef in c++
I'm trying to simplify a bunch of header file "include spaghetti" by using forward declarations and moving #includes into the implementation file. However, I keep coming upon the following scenario:
...
20
votes
3answers
4k views
Semantic warning on xcode 4
I'm getting a semantic warning on Xcode 4 :
*Declaration of 'struct sockaddr_in' will not be visible outside of this function*
the struct seems to be declared in netinet/in.h
The warning is getting ...
7
votes
4answers
6k views
can two classes see each other using C++?
So I have a class A, where I want to call some class B functions. So I include "b.h". But, in class B, I want to call a class A function. If I include "a.h", it ends up in an infinite loop, right? ...
12
votes
6answers
885 views
Why, really, deleting an incomplete type is undefined behaviour?
consider this classic example used to explain what not to do with forward declarations:
//in Handle.h file
class Body;
class Handle
{
public:
Handle();
~Handle() {delete impl_;}
...
10
votes
3answers
896 views
Is there a way to forward declare covariance?
Suppose I have these abstract classes Foo and Bar:
class Foo;
class Bar;
class Foo
{
public:
virtual Bar* bar() = 0;
};
class Bar
{
public:
virtual Foo* foo() = 0;
};
Suppose further that I ...
9
votes
2answers
985 views
Illegal forward reference error for static final fields
I'm trying to compile a Java class which javac rejects with an illegal forward reference error, where the offending reference is lexically after the referenced field. The following class is stripped ...
7
votes
3answers
16k views
storage size of ‘names’ isn’t known
I get this error while compiling this .c source file
/INIT_SOURCE_BUILD/src/names_list.c:7:
error: storage size of ‘names’ isn’t
known
#include <stdio.h>
#include "list.h"
int
main(){
...
5
votes
1answer
534 views
In Xcode 4.3, can I require forward method declarations as before
Prior to Xcode 4.3, if you wanted to use a method before you declared its implementation, you were required to forward declare the method (as with a C function prototype). This would usually be done ...
4
votes
1answer
242 views
Forward Declaration of variables/classes in std namespace
I usually use forward declaration predominantly, if I have a class that does not need complete definition in .hpp file
Ex)
//B.hpp
namespace A_file {
class A;
}
namespace B_file {
class ...
4
votes
4answers
749 views
Why include a header and forward declare the class contained in the same cpp file?
I've been looking at the Fear SDK for my university project, but have noticed some code like so:
Foo.h
class Foo
{
public:
int iSomething;
};
Bar.cpp:
#include "Foo.h"
// Forward ...
3
votes
1answer
2k views
Can anyone give example of forward declaration in objective C for a normal class and not for category or protocol?
Can anyone give example of forward declaration in objective C for a normal class and not for category or protocol?
2
votes
1answer
95 views
Boost container fails to compile with undefined (but declared) class
The following code fails to compile in MSVStudio 2010 Express, and seems to be because the boost container declaration creates a (static?) instance of the contained type. Changing ...
1
vote
3answers
1k views
Forward declarations for variables?
I have some C code that I have to port to C++. The code has a structure
struct A {
...
struct A * myPtr;
}
And now two global arrays are declared and initialized like this:
//Forward ...
9
votes
2answers
165 views
Are forward declarations supported in MATLAB?
Is it possible to use a function in a m-file, which is implemented in a later part of the same file: in similar style to other programming languages such as C?
5
votes
2answers
122 views
Forward declarations cause errors after code refactor
My original class structure was similar to:
//def.h
namespace A
{
struct X {};
}
and forward declarations where needed:
//file that needs forward declarations
namespace A { struct X; }
After ...
5
votes
4answers
656 views
Forward declaration include, on top of declaration include (ClassFwd.h + Class.h)
In Effective C++ (3rd edition), Scott Meyers, in Item 31, suggests that classes should have, on top of their classic Declaration (.h) and Definition (.cpp) files, a Forward Declaration Include File ...
5
votes
7answers
538 views
Compiling C++ when two classes refer to one another
I am trying to write a simple wrapper around a connection pointer that will return it to the pool when the wrapper is destroyed, but it wont compile because the ConnectionPool and AutoConn need each ...
4
votes
1answer
382 views
Will the standard library of C++11 have forward declaration headers?
In C++03 there are no <vectorfwd>-like files, while there is the <iosfwd> header. Will this change in the future?
It could be valuable to reduce dependencies and for better modularity.
...


