Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is the sole difference between boost::scoped_ptr<T> and std::unique_ptr<T> the fact that std::unique_ptr<T> has move semantics whereas boost::scoped_ptr<T> is just a get/reset smart pointer?

share|improve this question

2 Answers

up vote 8 down vote accepted

No, but that is the most important difference.

The other major difference is that unique_ptr can have a destructor object with it, similarly to how shared_ptr can. Unlike shared_ptr, the destructor type is part of the unique_ptr's type (the way allocators are part of STL container types).

share|improve this answer
Does boost::scoped_ptr require a fully defined type like unique_ptr? – Michael Price Nov 20 '11 at 6:17
So, the functionality chain would be scoped_ptr ->[custom del/alloc + move semantics]-> unique_ptr ->[copy semantics]-> shared_ptr? – moshbear Nov 20 '11 at 6:19
3  
Michael, unique_ptr does not require a fully defined type—only the constructor/destructor do. This makes it usable for pimpl. – Cory Nelson Nov 20 '11 at 6:44
4  
@MichaelPrice: unique_ptr doesn't require a fully defined type. unique_ptr's destructor does. So does the destructor of a scoped_ptr. If you make one a member of a class, you can just give that class a destructor which is implemented in the .cpp file rather than the header. – Nicol Bolas Nov 20 '11 at 6:44
2  
@moshbear: I'd say the functionality chain is "don't use scoped_ptr anymore." unique_ptr can do everything a scoped_ptr can do and more. A const unique_ptr is a scoped_ptr, but better. So really, there's no point in using scoped_ptr unless your compiler doesn't support unique_ptr. The fewer pointer templates you have, the better. – Nicol Bolas Nov 20 '11 at 6:47
show 1 more comment

unique_ptr owns an object exclusively.It is non-copyable but supports transfer-of-ownership. It was introduced as replacement for the now deprecated auto_ptr.

scoped_ptr is neither copyable nor movable. It is the preferred choice when you want to make sure pointers are deleted when going out of scope.

share|improve this answer
13  
I thought the preferred choice when you want to make sure that pointers are deleted at the end of a scope was unique_ptr<T> const. – Mankarse Nov 20 '11 at 6:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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