Hi,
Can private static data members of a class be accessed through non-static methods of that class? I'm asking this (dumb) question because on a C++ book I've read that a class's static data members can only be accessed through a static function, but when I tried doing it with a non-static method, it also worked (Visual C++ 2010). So can I access them or not?
Thanks,
Dean