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

  1. You can redefine the new and delete operators inside a class.  If
  2. a new operator has been defined for a class, it is used instead of
  3. the global new operator to create an object of that class.
  4. Similarly, the delete operator defined for a class is used instead
  5. of the global delete.  How to overload these operators is
  6. described in the chapter on overloading.
  7.