DYNAMIC MEMORY ALLOCATION IN A CLASS If we have a class where we are using DYNAMIC Memory Allocation in order to allocate memory (e.g. : for an Integer array) , then we must : Have a DESTRUCTOR in order to de-allocate the memory in the heap once we are finished using the memory. Overload the default…