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

  1. The old copy of the characters in the String object is no longer
  2. required.  The char* object of the pointer "text" is deleted, and
  3. the memory at that location is released.  The data member "text"
  4. is updated to store the location of the combined strings.  Note
  5. that the pointer "newtext" is a local object in this function, and
  6. that "newtext" is destroyed when the function append() ends.
  7.