What is a smart pointer and when should I use one?
|
10
|
|||||
|
|
|
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 boost::scoped_ptr or std::tr1::scoped_ptr.
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 embeded 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 boost::shared_ptr and std::tr1:shared_ptr.
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 posibility of creating a dangling reference.
Another possibility is creating circular references.
To work around this problem, both boost and std::tr1 define weak_ptr to define a weak (uncounted) reference to a shared_ptr. Also note that the existing standard C++ library does define a special kind of smart pointer
|
||||||||||
|
|
|
Note that the implementation of std::auto_ptr in Visual Studio 2005 is horribly broken.
Use the boost ones instead. |
||
|
|
|
|
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.. |
||
|
|
|
|
Smart pointer is a pointer-like type with some additional functionality, e.g. automatic memory deallocation, reference counting etc. Small intro is available here. 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:
|
|||
|
|
|
|
Check out this question: |
||
|
|
|
|
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
|
||
|
|
