C++ deleting a pointer to a pointer - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T21:38:05Zhttp://stackoverflow.com/feeds/question/48094http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/48094/c-deleting-a-pointer-to-a-pointer6C++ deleting a pointer to a pointerJason Baker2008-09-07T03:19:36Z2009-04-15T16:33:43Z
<p>So I have a pointer to an array of pointers. If I delete it like this:</p>
<pre><code>delete [] PointerToPointers;
</code></pre>
<p>Will that delete all the pointed to pointers as well? If not, do I have to loop over all of the pointers and delete them as well, or is there an easier way to do it? My google-fu doesn't seem to give me any good answers to this question.</p>
<p>(And yeah, I know I need to use a vector. This is one of those "catch up on C++" type assignments in school.)</p>
http://stackoverflow.com/questions/48094/c-deleting-a-pointer-to-a-pointer/48095#480951Answer by Matt Sheppard for C++ deleting a pointer to a pointerMatt Sheppard2008-09-07T03:20:25Z2008-09-07T03:20:25Z<p>I think you're going to have to loop over I'm afraid.</p>
http://stackoverflow.com/questions/48094/c-deleting-a-pointer-to-a-pointer/48098#480981Answer by Jeffrey for C++ deleting a pointer to a pointerJeffrey2008-09-07T03:22:22Z2008-09-07T03:22:22Z<p>Pointers are pretty much just memory references and not spiffy little self-cleaning .net objects. Creating proper destructors for each class will make the deletion a little cleaner than massive loops throughout the code.</p>
http://stackoverflow.com/questions/48094/c-deleting-a-pointer-to-a-pointer/48102#4810216Answer by Jason Cohen for C++ deleting a pointer to a pointerJason Cohen2008-09-07T03:24:13Z2008-09-07T03:24:13Z<p>Yes you have to loop over the pointers, deleting individually.</p>
<p>Reason: What if other code had pointers to the objects in your array? The C++ compiler doesn't know if that's true or not, so you have to be explicit.</p>
<p>For an "easier way," two suggestions: (1) Make a subroutine for this purpose so at least you won't have to write the code more than once. (2) Use the "smart pointer" design paradigm where you hold an array of objects with reference-counters, then the objects are deleted when the objects are no longer referenced by any code. </p>
http://stackoverflow.com/questions/48094/c-deleting-a-pointer-to-a-pointer/48670#486703Answer by Ray for C++ deleting a pointer to a pointerRay2008-09-07T18:36:41Z2008-09-07T18:36:41Z<p>I agree with Jason Cohen though we can be a bit clearer on the reason for needing to delete your pointers with the loop. For every "new" or dynamic memory allocation there needs to be a "delete" a memory de-allocation. Some times the "delete" can be hidden, as with smartpointers but it is still there. </p>
<pre><code>int main()
{
int *pI = new int;
int *pArr = new int[10];
</code></pre>
<p>so far in the code we have allocated two chunks of dynamic memory. The first is just a general int the second is an array of ints.</p>
<pre><code> delete pI;
delete [] pArr;
</code></pre>
<p>these delete statements clear the memory that was allocated by the "new"s</p>
<pre><code> int ppArr = new int *[10];
for( int indx = 0; indx < 10; ++indx )
{
ppArr[indx] = new int;
}
</code></pre>
<p>This bit of code is doing both of the previous allocations. First we are creating space for our int in a dynamic array. We then need to loop through and allocate an int for each spot in the array.</p>
<pre><code> for( int indx = 0; indx < 10; ++indx )
{
delete ppArr[indx];
}
delete [] ppArr;
</code></pre>
<p>Note the order that I allocated this memory and then that I de-allocated it in the reverse order. This is because if we were to do the delete [] ppArr; first we would loose the array that tells us what our other pointers are. That chunk or memory would be given back to the system and so can no longer be reliably read.</p>
<pre><code> int a=0;
int b=1;
int c=2;
ppArr = new int *[3];
ppArr[0] = &a;
ppArr[1] = &b;
ppArr[2] = &c;
</code></pre>
<p>This I think should be mentioned as well. Just because you are working with pointers does not mean that the memory those pointers point to was dynamically allocated. That is to say just because you have a pointer doesn't mean it necessarily needs to be delete. The array I created here is dynamically allocated but the pointers point to local instances of ints When we delete this we only need to delete the array.</p>
<pre><code> delete [] ppArr;
return 0;
}
</code></pre>
<p>In the end dynamically allocated memory can be tricky and anyway you can wrap it up safely like in a smart pointer or by using stl containers rather then your own can make your life much more pleasant.</p>
http://stackoverflow.com/questions/48094/c-deleting-a-pointer-to-a-pointer/59481#594812Answer by Greg Rogers for C++ deleting a pointer to a pointerGreg Rogers2008-09-12T16:44:53Z2008-09-12T16:44:53Z<p>See <a href="http://www.boost.org/doc/libs/1_36_0/libs/ptr_container/doc/ptr_container.html" rel="nofollow">boost pointer container</a> for a container that does the automatic deletion of contained pointers for you, while maintaining a syntax very close to ordinary STL containers.</p>
http://stackoverflow.com/questions/48094/c-deleting-a-pointer-to-a-pointer/752538#7525380Answer by AndreasT for C++ deleting a pointer to a pointerAndreasT2009-04-15T16:25:39Z2009-04-15T16:33:43Z<p>I don't know why this was answered so confusingly long.</p>
<p>If you delete the array of pointers, you will free
the memory used for an array of usually ints.<br />
a pointer to an object is an integer containing the adress.</p>
<p>You deleted a bunch of adresses, but no objects.</p>
<p>delete does not care about the content of a memory space,
it calls a destructor(s) and marks the mem as free.</p>
<p>It does not care that it just deleted a bunch of adresses
of objects, it merely sees ints.</p>
<p>That's why you have to cycle through the array first! and call delete
on every element, then you can delete the storage of the array itself.</p>
<p>Well, now <em>my</em> answer got somewhat long... .... strange... ;)</p>
<p>Edit:
Jason's answer is not wrong, it just fails to hit the spot. Neither
the compiler nor anything else in c(++) cares about you deleting stuff that is elsewhere
pointed to. You can just do it. Other program parts trying to use the deleted objects
will segfault on you. But no one will hinder you.
Neither will it be a problem to destroy an array of pointers to objects, when the objects
are referenced elsewhere.</p>