home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH06 / A06096.TXT < prev    next >
Encoding:
Text File  |  1993-10-06  |  482 b   |  9 lines

  1. Like ordinary member functions, constructors and destructors can
  2. access all data members of the class and can call other functions,
  3. including member functions of their class.  A constructor or
  4. destructor can have an empty argument list and an empty body.  You
  5. can use such a constructor or destructor when the compiler cannot
  6. supply its own default constructor or destructor, and a
  7. user-defined default is required. Constructors and destructors
  8. cannot be members of unions.
  9.