home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH05 / A05252.TXT < prev    next >
Encoding:
Text File  |  1993-07-28  |  297 b   |  6 lines

  1. A struct in C++ is the same as a class, except that the
  2. members of a struct are public by default.  Members of a class
  3. are private by default.  As a result, the three classes you see on
  4. the screen are identical except for their names.  The first form,
  5. the class, is the form used most often.
  6.