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

  1. You can use an existing abstract data type to create a new
  2. abstract data type.  You do not need to modify the existing code.
  3. In C++, you can define a class that inherits all the attributes of
  4. an existing class.  You must write new code only for the
  5. attributes that are specific to the objects in your application.
  6. You can reuse the attributes that are already supported.  In
  7. traditional programming languages, you must rework existing code
  8. until it is an exact fit.
  9.