home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH06 / A06174.TXT < prev    next >
Encoding:
Text File  |  1993-11-23  |  469 b   |  9 lines

  1. Static data members must be defined before they are used, and can
  2. be assigned initial values.  These two statements show how to
  3. define the public and private static data members of the class
  4. Weather.  You can include an assignment to an initial value in the
  5. definition of a static data member.  The right-hand side of the
  6. assignment must be an expression of appropriate type.  Like other
  7. static variables, static data members have a default initial value
  8. of 0.
  9.