I don't know why this was answered so confusingly long. If you delete the array of pointers, you will free the memory used for an array of usually ints. a pointer to an object is an integer containing the adress. You deleted a bunch of adresses, but no objects. delete does not care about the content of a memory space, it calls a destructor(s) and marks the mem as free. It does not care that it just deleted a bunch of adresses of objects, it merely sees ints. That's why you have to cycle through the array first! and call delete on every element, than you can delete the storage of the array itself. Well, now _my_ answer got somewhat long... .... strange... ;)