Tagged Questions
3
votes
4answers
100 views
declaration capture phase in compilation
languages like C and C++ rely on forward declarations to resolve cyclic dependencies in type or function declarations. In C#, this is not required anymore because the declaration capture phase is ...
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>
...
0
votes
2answers
678 views
C++ method declaration, class definition problem
I have 2 classes: A and B. Some methods of class A need to use class B and the opposite(class B has methods that need to use class A).
So I have:
class A;
class B {
method1(A a) {
}
}
...
4
votes
3answers
182 views
C++: How to use types that have not been defined?
C++ requires all types to be defined before they can be used, which makes it important to include header files in the right order. Fine. But what about my situation:
Bunny.h:
class Bunny
{
...
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 ...
1
vote
6answers
368 views
Forward declaration and typeid
I would like to check the type of a superclass A against the type of a subclass B (with a method inside the superclass A, so that B will inherit it).
Here's what I thought did the trick (that is, the ...
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 ...
3
votes
6answers
1k views
Is it possible to declare a class without implementing it? (C++)
I know the questions seems ambiguous, but I couldn't think of any other way to put it, but, Is it possible to do something like this:
#include<iostream>
class wsx;
class wsx
{
public:
wsx();
...