Simple Question About const static
-
I know this should be known by all C++ programmer , but i never came to this situation before ... problem is i want to define const static CString variable in my class ... so can anyone help me in how to define and initialize such a member ... ThanX, Perry
-
I know this should be known by all C++ programmer , but i never came to this situation before ... problem is i want to define const static CString variable in my class ... so can anyone help me in how to define and initialize such a member ... ThanX, Perry
paresh_joe wrote:
problem is i want to define const static CString variable in my class ... so can anyone help me in how to define and initialize such a member ...
class A
{
public:
const static CString csAString;
};// In the CPP file
const CString A::csAString = _T( "Nibu" );
Nibu thomas Microsoft MVP for VC++ Code must be written to be read, not by the compiler, but by another human being. Programming Blog: http:\\nibuthomas.wordpress.com