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

  1. You should use the class name and the scope resolution operator to
  2. refer to a static member of a class.  Alternatively, you can use
  3. the member access operators . and -> exactly as you would for
  4. nonstatic members.  The syntax for a pointer to a static data
  5. member or static member function is similar to that for a pointer
  6. to an object that is not a member of a class.  Use the scope
  7. resolution operator to identify the member when assigning the
  8. pointer.  You de-reference the pointer the same way you would
  9. de-reference a pointer to a nonmember object.
  10.