my understanding of the new memory <memory>header in C++11 is a bit week, but from what I can tell shared_ptr is refcounted ptr that makes it really really expensive to copy it(esp on for example ARM arch). And unique_ptr is pretty much the very very light wrapper around new/delete. And it is movable, so it is not like are limited by the scope where you created it.
So my question is:
is there a singlethreaded code usage where shared_ptr is prefered to unique_ptr?
Im not interested in answers like: making your singlethreaded code ready for future multithreading. Presume code is and will say singlthreaded.
shared_ptrs don't have anything to do with multithreading. Aunique_ptrworks perfectly in multithreaded code, at least for the prupose it's made for, which is entirely different fromshared_ptr's purpose. – Christian Rau Jul 26 '12 at 12:45