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

  1. The keyword class begins the declaration of a C++ class.  The
  2. identifier is the name of the class and is the type of all objects
  3. declared for that class.  A class declaration can appear anywhere
  4. a declaration is legal; however, a convention is to define classes
  5. in a separate header file.  Like the typedef of C, a class
  6. declaration allocates no memory.  Storage is assigned only when an
  7. object of that class type is declared.
  8.