M
markww
Hi,
I put a static member variable in my class.
class CMine {
static int m_nCount;
};
How do I initialize it to zero? I can't do that in the constructor of
the class can I? Won't that keep setting it to zero everytime a new
instance is created?
Thanks
I put a static member variable in my class.
class CMine {
static int m_nCount;
};
How do I initialize it to zero? I can't do that in the constructor of
the class can I? Won't that keep setting it to zero everytime a new
instance is created?
Thanks