Array of structs and new / delete - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T02:30:51Z http://stackoverflow.com/feeds/question/434140 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/434140/array-of-structs-and-new-delete 3 Array of structs and new / delete Daniel 2009-01-12T00:53:36Z 2009-01-12T18:34:12Z <p>I have a struct like this:</p> <pre><code>class Items { private: struct item { unsigned int a, b, c; }; item* items[MAX_ITEMS]; } </code></pre> <p>Say I wanted to 'delete' an item, like so:</p> <pre><code>items[5] = NULL; </code></pre> <p>And I created a new item on that same spot later:</p> <pre><code>items[5] = new item; </code></pre> <p>Would I still need to call delete[] to clean this up? Or won't this be needed since bounds of array items[] are known before compiling? </p> <p>Is setting that pointer to NULL valid or should I be calling delete there? </p> <p>I'm confused!</p> http://stackoverflow.com/questions/434140/array-of-structs-and-new-delete/434144#434144 0 Answer by Hank Gay for Array of structs and new / delete Hank Gay 2009-01-12T00:57:08Z 2009-01-12T00:57:08Z <p>C++ isn't my strong suit, but I'm pretty sure you'd be leaking the memory if you set the pointer to <code>NULL</code>.</p> <p>EDIT: The memory being leaked would be the memory being pointed to by the pointer in the array.</p> http://stackoverflow.com/questions/434140/array-of-structs-and-new-delete/434150#434150 0 Answer by Kluge for Array of structs and new / delete Kluge 2009-01-12T00:59:57Z 2009-01-12T00:59:57Z <p>Setting items[5] to NULL doesn't delete the memory associated with the item, it simply sets the pointer to that item to NULL, therefore the memory is leaked.</p> <p>You can delete the item by calling:</p> <pre><code>delete items[5]; </code></pre> <p>Since C++ has not automatic garbage collection, you need to delete any memory you no longer need.</p> http://stackoverflow.com/questions/434140/array-of-structs-and-new-delete/434153#434153 9 Answer by jeremy Ruten for Array of structs and new / delete jeremy Ruten 2009-01-12T01:04:56Z 2009-01-12T01:04:56Z <p>You need to call <code>delete</code> before setting it to NULL. (Setting it to NULL isn't required, it just helps reduce bugs if you accidentally try to dereference the pointer after deleting it.)</p> <p>Remember that every time you use <code>new</code>, you will need to use <code>delete</code> later on the same pointer. Never use one without the other.</p> <p>Also, <code>new []</code> and <code>delete []</code> go together in the same way, but you should never mix <code>new []</code> with <code>delete</code> or <code>new</code> with <code>delete []</code>. In your example, since you created the object with <code>new</code> (rather than <code>new []</code> which would create an array of objects) you must delete the object with <code>delete</code> (rather than <code>delete []</code>).</p> http://stackoverflow.com/questions/434140/array-of-structs-and-new-delete/434163#434163 5 Answer by pyrtsa for Array of structs and new / delete pyrtsa 2009-01-12T01:13:30Z 2009-01-12T01:20:34Z <p>As Kluge pointed out, you'd leak the object at index 5 like that. But this one really sounds like you shouldn't do this manually but use a container class inside <code>Item</code>. If you don't actually need to store these <code>item</code> objects as pointers, use <code>std::vector&lt;item&gt;</code> instead of that array of <code>MAX_ITEMS</code> pointers. You can always insert or erase vector elements in the middle as well if you need to.</p> <p>In case you need to store the objects as pointers (usually if struct <code>item</code> is actually polymorphic, unlike in your example), you can use boost::ptr_vector&lt;item&gt; from <a href="http://www.boost.org/doc/libs/1_37_0/libs/ptr_container/doc/ptr_container.html" rel="nofollow">Boost.PtrContainer</a> instead.</p> <p>Example:</p> <pre><code>class Items { private: struct item { unsigned int a, b, c; }; std::vector&lt;item&gt; items; } if (items.size() &gt; 5) // (just to ensure there is an element at that position) items.erase(items.begin() + 5); // no need to use operator delete at all </code></pre> http://stackoverflow.com/questions/434140/array-of-structs-and-new-delete/434165#434165 1 Answer by vilaca for Array of structs and new / delete vilaca 2009-01-12T01:14:34Z 2009-01-12T01:14:34Z <p>To delete an item use:</p> <p>delete items[5];</p> <p>after deleting the item it is advisable to set the deleted pointer to NULL, so you won't have an error if you later delete it again by mistake.</p> <p>items[5] = NULL</p> http://stackoverflow.com/questions/434140/array-of-structs-and-new-delete/434211#434211 0 Answer by Blaisorblade for Array of structs and new / delete Blaisorblade 2009-01-12T01:50:00Z 2009-01-12T01:50:00Z <blockquote> <p>Say I wanted to 'delete' an item, like so:</p> <blockquote> <p>items[5] = NULL;</p> </blockquote> </blockquote> <p>I know little Visual Basic, but that smells like a Visual Basic programming idiom, since "Set a = None" (or Null, I'm not sure) would delete the object pointed by a (or rather decrement its reference count, for COM objects).</p> <p><hr></p> <p>As somebody else noted, you should use either:</p> <pre><code>delete items[5]; items[5] = newContent; </code></pre> <p>or:</p> <pre><code>delete items[5]; items[5] = NULL; </code></pre> <p>After <code>delete[5]</code>, the only possible use of the pointer stored in <code>items[5]</code> is causing you trouble. What's worse is that it might happen to work at the beginning, and start failing only when you allocate something else over the space previously used by <code>*items[5]</code>. Those are the causes which make C/C++ programming "interesting", i.e. really annoying (even for who likes C like me).</p> <p>Writing just <code>delete items[5];</code> saves what can be an useless write, but that's a premature optimization.</p> http://stackoverflow.com/questions/434140/array-of-structs-and-new-delete/434760#434760 0 Answer by j_random_hacker for Array of structs and new / delete j_random_hacker 2009-01-12T08:07:43Z 2009-01-12T08:07:43Z <p>Just to be clear: you refer to calling "<code>delete[]</code>". I think you mean <code>delete</code>.</p> <p>I mention this because C++ has two separate operators, <code>operator delete</code> and <code>operator delete[]</code>. The latter is used for deleting arrays of objects allocated with <code>operator new[]</code>, and does <em>not</em> apply in this case. You have an array of <em>pointers to</em> objects, which you must have initialised with repeated calls to <code>operator new</code> rather than a single call to <code>operator new[]</code>.</p> <p>All I'm really trying to say is: your use of <code>delete[]</code> is confusing and ambiguous; change it to <code>delete</code>.</p> http://stackoverflow.com/questions/434140/array-of-structs-and-new-delete/434786#434786 0 Answer by Max Lybbert for Array of structs and new / delete Max Lybbert 2009-01-12T08:20:57Z 2009-01-12T18:34:12Z <p>There are a few, related, questions here:</p> <ol> <li>According to the code you posted, the array itself is not allocated on the heap unless the struct is, so you don't need to delete[] the array. If you created the array with new[] you would have to delete[] it.</li> <li>The code posted doesn't say how the objects being pointed to from the array are allocated. If you allocate those objects on the stack you <em>must not</em> delete them (then again, this is highly unlikely because your pointers will become invalid when the objects they point to fall out of scope). If you allocated them on the heap (with new) then you <em>must</em> delete them when they fall out of scope.</li> <li>As others have already suggested, life is much easier if you use a container -- especially an STL container -- and smart pointers -- which for now means pointers out of Boost.</li> </ol>