What is the difference between the following set of pointer? When do you use each pointer in a production code, if at all?
Examples would be appreciated!
scoped_ptrshared_ptrweak_ptrintrusive_ptr
Edit#1
Do you guys use boost in production code?
|
What is the difference between the following set of pointer? When do you use each pointer in a production code, if at all? Examples would be appreciated!
Edit#1 Do you guys use boost in production code? |
||||
|
|
Basic properties of smart pointersIt's easy when you have properties that you can assign each smart pointer. There are three important properties.
The first means that a smart pointer cannot delete the object, because it doesn't own it. The second means that only one smart pointer can ever point to the same object at the same time. If the smart pointer is to be returned from functions, the ownership is transferred to the returned smart pointer, for example. The third means that multiple smart pointers can point to the same object at the same time. This applies to a raw pointer too, however raw pointers lack an important feature: They do not define whether they are owning or not. A share of ownership smart pointer will delete the object if every owner gives up the object. This behavior happens to be needed often, so shared owning smart pointers are widely spread. Some owning smart pointers support neither the second nor the third. They can therefore not be returned from functions or passed somewhere else. Which is most suitable for Share of ownership can be implemented by having a copy constructor. This naturally copies a smart pointer and both the copy and the original will reference the same object. Transfer of ownership cannot really be implemented in C++ currently, because there are no means to transfer something from one object to another supported by the language: If you try to return an object from a function, what is happening is that the object is copied. So a smart pointer that implements transfer of ownership has to use the copy constructor to implement that transfer of ownership. However, this in turn breaks its usage in containers, because requirements state a certain behavior of the copy constructor of elements of containers which is incompatible with this so-called "moving constructor" behavior of these smart pointers. C++1x provides native support for transfer-of-ownership by introducing so-called "move constructors" and "move assignment operators". It also comes with such a transfer-of-ownership smart pointer called Categorizing smart pointers
This is the semantic that std::auto_ptr obeys, but because of missing native support for moving, it fails to provide them without pitfalls. unique_ptr will automatically steal resources from a temporary other unique_ptr which is one of the key features of move semantics. auto_ptr will be deprecated in the next C++ Standard release in favor of unique_ptr. C++1x will also allow stuffing objects that are only movable but not copyable into containers. So you can stuff unique_ptr's into a vector for example. I'll stop here and reference you to a fine article about this if you want to read more about this. |
|||||||||||||||
|
|
scoped_ptr is the simplest. When it goes out of scope, it is destroyed. The following code is illegal (scoped_ptrs are non-copyable) but will illustrate a point:
shared_ptr is reference counted. Every time a copy or assignment occurs, the reference count is incremented. Every time an instance's destructor is fired, the reference count for the raw T* is decremented. Once it is 0, the pointer is freed.
weak_ptr is a weak-reference to a shared pointer that requires you to check to see if the pointed-to shared_ptr is still around
intrusive_ptr is typically used when there is a 3rd party smart ptr you must use. It will call a free function to add and decrement the reference count.See the link to boost documentation for more info. Response to EditYes we do. |
||||
|
|
|
Don't overlook |
|||
|
|
|
Why not try the boost documentation? |
|||||||||||||||||
|
|
I second the advice about looking at the documentation. It is not as scary as it seems. And few short hints:
Response to edit: Yes |
|||||
|
|
I found a very detailed explanation with code samples for 3 of the pointer types here. I found another site that shows weak_ptr with code examples here. Both of those seem like excellent, detailed resources. |
|||||||
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.