Why is it wrong to use std::auto_ptr<> with STL containers?
|
1
|
|||
|
|
|
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:
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. |
|||
|
|
|
The copy semantics of Specifically, copying one More specifically, copy_ing an |
||
|
|
|
|
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 |
||
|
|
|
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. |
||
|
|
