Why is it wrong to use std::auto_ptr<> with standard containers?

link|improve this question

67% accept rate
1  
Definitely a +1 on this because I've seen so many people get this wrong. It's a great question to ask. – twokats Nov 7 '08 at 20:42
Please read also the related item. This question is considered here from the other side. May be helpful to understand more about auto_ptr and STL containers. stackoverflow.com/questions/8630552/… – DaddyM Dec 29 '11 at 11:59
feedback

5 Answers

up vote 57 down vote accepted

The C++ Standard says that an STL element must be "copy-constructible" and "assignable." In other words, an element must be able to be assigned or copied and the two elements are logically independent. std::auto_pr does not fulfill this requirement.

Take for example this code:

class X
{
};

std::vector<std::auto_ptr<X> > vecX;
vecX.push_back(new X);

std::auto_ptr<X> pX = vecX[0];  // vecX[0] is assigned NULL.

To overcome this limitation, you should use the shared_ptr or weak_ptr smart pointers defined by TR1 or the boost libraries. Here is the boost library documentation for these smart pointers. Another alternative to consider in C++0x is unique_ptr.

link|improve this answer
4  
You should also consider the boost pointer containers, if you don't need shared ownership. – me22 Sep 10 '09 at 16:34
feedback

The copy semantics of auto_ptr are not compatible with the containers.

Specifically, copying one auto_ptr to another does not create two equal objects since one has lost its ownership of the pointer.

More specifically, copying an auto_ptr causes one of the copies to let go of the pointer. Which of these remains in the container is not defined. Therefore, you can randomly lose access to pointers if you store auto_ptrs in the containers.

link|improve this answer
feedback

Two super excellent articles on the subject:

link|improve this answer
Unnecessary necro, buddy. – DeadMG Jun 25 '10 at 19:59
1  
@DeadMG: Why unnecessary? – Lazer Jun 25 '10 at 20:21
Because I think that in the intervening nearly two years, he probably dealt with the problem at hand. – DeadMG Jun 25 '10 at 20:31
8  
@DeadMG: yes, you are correct. But that was not my purpose. If someone comes to this thread sometime and wants to learn about auto_ptr and stuff, these links will be helpful, I am sure. – Lazer Jun 25 '10 at 20:44
2  
@DeadMG: This question wasn't closed as duplicate and is therefore open for extension. Lazer said what was not said before here. I guess he came by by chance. – phresnel Nov 18 '11 at 16:21
show 1 more comment
feedback

The STL containers need to be able to copy the items you store in them, and are designed to expect the original and the copy to be equivalent. auto pointer objects have a completely different contract, whereby copying creates a transfer of ownership. This means that containers of auto_ptr will exhibit strange behaviour, depending on usage.

There is a detailed description of what can go wrong in Effective STL (Scott Meyers) item 8 and also a not-so-detailed description in Effective C++ (Scott Meyers) item 13.

link|improve this answer
1  
+1 for the Effective STL reference. – DevSolar Jul 29 '09 at 9:03
feedback

STL containers store copies of contained items. When an auto_ptr is copied, it sets the old ptr to null. Many container methods are broken by this behavior.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.