home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH02 / A02122.TXT < prev    next >
Encoding:
Text File  |  1993-07-26  |  477 b   |  9 lines

  1. An object is a region of storage that contains a value or group of
  2. values.  Each value can be accessed using its identifier or a more
  3. complex expression that refers to the object.  In addition, each
  4. object has a unique data type.  Both the identifier and data type
  5. of an object are established in the object declaration.
  6. The data type of an object determines the initial storage
  7. allocation for that object and the interpretation of the values
  8. during subsequent access.
  9.