Transcription: You can redefine the new and delete operators inside a class. If a new operator has been defined for a class, it is used instead of the global new operator to create an object of that class. Similarly, the delete operator defined for a class is used instead of the global delete. How to overload these operators is described in the chapter on Overloading.