Help for this page

Select Code to Download


  1. or download this
    class X {
      static const int x = 99;
      // ...
    };
    
  2. or download this
    class X {
      static const int x;
    ...
    };
    
    const int X::x = 99;