home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH07 / A07104.WAV (.mp3) < prev    next >
Waveform Audio File Format  |  1993-10-21  |  291.5 KB  |  1 channel  |  11,025 sample rate  |  27 seconds
Transcription: The lifetime of objects in the FreeStore is not affected by the scope of the object. If the object goes out of scope, but its dynamically allocated memory is not explicitly deallocated, that memory is no longer accessible by the program and is not available for reallocation to another object. It is the responsibility of the C++ programmer to release dynamically allocated memory when it is no longer required by the program.