What is the shortest chunk of C++ you can come up with to safely clean up a vector or list of pointers? (assuming you have to call delete on the pointers?)
list<Foo*> foo_list;
I'd rather not use Boost or wrap my pointers with smart pointers.
|
|
Since we are throwing down the gauntlet here... "Shortest chunk of C++"
I think we can trust the folks who came up with STL to have efficient algorithms. Why reinvent the wheel? |
|||||||||||
|
|
For
For
Not sure why i took
|
|||||||||||||||||||
|
|
|||
|
|
|
It's really dangerous to rely on code outside of the container to delete your pointers. What happens when the container is destroyed due to a thrown exception, for example? I know you said you don't like boost, but please consider the boost pointer containers. |
|||||
|
|
|||
|
|
|
I'm not sure that the functor approach wins for brevity here.
I'd usually advise against this, though. Wrapping the pointers in smart pointers or using a specialist pointer container is, in general, going to be more robust. There are lots of ways that items can be removed from a list ( various flavours of |
|||||||
|
|
The following hack deletes the pointers when your list goes out of scope using RAII or if you call list::clear().
Example:
|
|||||
|
|
At least for a list, iterating and deleting, then calling clear at the end is a bit inneficient since it involves traversing the list twice, when you really only have to do it once. Here is a little better way:
That said, your compiler may be smart enough to loop combine the two anyways, depending on how list::clear is implemented. |
|||
|
|
|
Actually, I believe the STD library provides a direct method of managing memory in the form of the allocator class You can extend the basic allocator's deallocate() method to automatically delete the members of any container. I /think/ this is the type of thing it's intended for. |
||||
|
|
|
|||
|
|