C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
C2438
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Compiler error C2438
 
     'identifier' : cannot initialize static class data via constructor
 
     A constructor was used to initialize a static member of a class.
 
     Static members should be initialized in a definition outside of
     the class declaration.
 
     The following example shows how static members are initialized:
 
          class X
          {
          public:
             static const int i;
             static int j;
          };
          const int X::i = 1;
          int X::j = 2;
                                    -♦-