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

  1. If a constructor or destructor is defined inside the class
  2. definition, it is an inline function.  The body of a constructor
  3. or destructor can be small or empty.  In such cases, the function
  4. is usually defined inline.  If the body of a constructor or
  5. destructor is large, you can define it outside the class
  6. definition.
  7.