What is a smart pointer and when should I use one?
|
|
A smart pointer is a class that wraps a "bare" C++ pointer, to manage the lifetime of the object being pointed to. With "bare" C++ pointers, the programmer has to explicitly destroy the object when it is no longer useful.
A smart pointer by comparison defines a policy as to when the object is destroyed. You still have to create the object, but you no longer have to worry about destroying it.
The simplest policy in use involves the scope of the smart pointer wrapper object, such as implemented by
Note that scoped_ptr instances cannot be copied. This prevents the pointer from being deleted multiple times (incorrectly). You can however pass references to it around to other functions you call. Scoped pointers are useful when you want to tie the lifetime of the object to a particular block of code, or if you embedded it as member data inside another object, the lifetime of that other object. The object exists until the containing block of code is exitted, or until the containing object is itself destroyed. A more complex smart pointer policy involves reference counting the pointer. This does allow the pointer to be copied. When the last "reference" to the object is destroyed, the object is deleted. This policy is implemented by
Reference counted pointers are very useful when the lifetime of your object is much more complicated, and is not tied directly to a particular section of code or to another object. There is one drawback to reference counted pointers — the possibility of creating a dangling reference.
Another possibility is creating circular references.
To work around this problem, both boost and Also note that the existing standard C++ library does define a special kind of smart pointer
|
|||||||||||||||||||||
|
|
Smart pointer is a pointer-like type with some additional functionality, e.g. automatic memory deallocation, reference counting etc. Small intro is available on page Smart Pointers - What, Why, Which?. One of the simple smart-pointer type is Another convenient type is Subject is covered in depth in book "C++ Templates: The Complete Guide" by David Vandevoorde, Nicolai M. Josuttis, chapter Chapter 20. Smart Pointers. Some topics covered:
|
|||||||
|
|
Definitions provided Chris,Sergdev and Llyod is correct. I prefer a simpler definition though, just to keep my life simple: Smart pointer is simply a class that overloads -> and * operators. Which means that your object semantically looks like a pointer but you can make it do way cooler things, including reference counting, automatic destruction etc. shared_ptr and auto_ptr are sufficient in most cases, but come along with their own set of small idiosyncrasies.. |
|||
|
|
|
Most kinds of smart pointers handle disposing of the pointer-to object for you. It's very handy because you don't have to think about disposing of objects manually anymore. The most commonly-used smart pointers are
|
|||
|
|
|
A smart pointer is like a regular (typed) pointer, like "char*", except when the pointer itself goes out of scope then what it points to is deleted as well. You can use it like you would a regular pointer, by using "->", but not if you need an actual pointer to the data. For that, you can use "&*ptr". It is useful for:
You may not want to use a smart pointer when:
See also:
|
||||
|
|
|
http://en.wikipedia.org/wiki/Smart_pointer
|
|||
|
|
|
Note that the implementation of std::auto_ptr in Visual Studio 2005 is horribly broken.
Use the boost ones instead. |
|||
|
|
|
A smart pointer is an object that acts like a pointer, but additionally provides control on construction, destruction, copying, moving and dereferencing. One can implement one's own smart pointer, but many libraries also provide smart pointer implementations each with different advantages and drawbacks. For example, Boost provides the following smart pointer implementations:
These are just one linear descriptions of each and can be used as per need, for further detail and examples one can look at the documentation of Boost. Additionally, the C++ standard library provides three smart pointers; |
||||
|
|
protected by Bo Persson Jul 2 '12 at 23:38
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.