Hello,
I'm programming in C++. Is it possible to have a private data member of type class X within the definition of class X? For example,
class X
{
...
private:
X m_member;
...
}
I'm pretty sure it's not possible, but I appreciate any feedback.
-price