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

  1. In object-oriented languages, the code inside the definition of an
  2. abstract data type is isolated from the code outside the
  3. definition.  A C++ program using a class can be denied direct
  4. access to the data defined in the class.  Such a program cannot
  5. initialize objects or perform any other jobs that require access
  6. to or knowledge of the internals of the class.  Objects should be
  7. manipulated only by using the intended interface for the class.
  8.