home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH07 / A07091.TXT < prev    next >
Encoding:
Text File  |  1993-10-07  |  411 b   |  8 lines

  1. Where and how an object is declared determines not only its scope
  2. and size, but also where it is placed in memory.  While your
  3. program is running, its executable image, including class member
  4. functions, is stored in a reserved text area.  Objects and
  5. data members used by the program also reside in memory during
  6. their lifetimes, but, unlike the code, are created and destroyed
  7. during program execution.
  8.