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();
}
wsx::wsx()
{
std::cout<<"WSX";
}
?
|
|
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:
?
|
||
|
|
|
|
Yes, that is possible. The following just declares
That kind of declaration is called a forward declaration, because it's needed when two classes refer to each other:
One of them needs to be forward declared then. |
||
|
|
|
|
Yes. But it is not possible to define a class without declaring it. Because: Every definition is also a declaration. |
||
|
|
|
|
This is the definition of the class
This is the definition of the constructor
THis is a forward declaration that says the class WILL be defined somewhere
|
||
|
|
|
|
In your example,
So yes, by using |
||
|
|
|
|
You did define the class. It has no data members, but that's not necessary. |
||
|
|
|
|
I'm not sure what you mean. The code you pasted looks correct. |
||