home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH06 / A06091.TXT < prev    next >
Encoding:
Text File  |  1993-11-23  |  383 b   |  7 lines

  1. When an object of built-in type is defined, the compiler assigns
  2. memory for it.  When an object of user-defined type is defined, a
  3. constructor function is called to create the object.  Object
  4. creation can involve allocating memory and bringing the object
  5. into a usable state.  If no constructor is included in the class
  6. definition, the compiler supplies a default constructor.
  7.