I've been making some objects using the pimpl idiom, but I'm not sure whether to used shared_ptr or unique_ptr.
I understand unique_ptr is more efficient, but this isn't so much of an issue for me, as these objects are relatively heavyweight anyway so the cost of shared_ptr over unique_ptr is relatively minor.
I'm currently going with shared_ptr just because of the extra flexibility. For example, using a shared_ptr allows me to store these objects in say a hashmap for quick access whilst still being able to return copies of these objects to callers (as I believe any iterators or references may quickly become invalid).
However, these objects in a way really aren't being copied, as changes affect all copies, so I was wondering that perhaps using shared_ptr and allowing copies is some sort of anti-pattern or bad thing.
Any thoughts?
unique_ptr, but object with a shared implementations have their use, particularly if you are writing "foreign" code (eg. COM, C++/CLI), or if the class really looks like a "reference type". – Alexandre C. Apr 7 '11 at 8:38