class base {
public:
base a;
};
It gives compilation error.
class base {
public:
static base a;
};
whereas this code does not give compilation error
It gives compilation error.
whereas this code does not give compilation error |
|||||||||||
|
|
Because Storing an object inside another object of the same type would break the runtime - infinite size, right? What would |
|||
|
|
|
I'm guessing the error is something like
This is because when not static, the class Search for the difference between declaration and definition for more thorough explanations. |
|||||||||||
|