auto_ptr 解释

来源:互联网 发布:爬虫 股票数据 编辑:程序博客网 时间:2024/05/21 12:39

template <class X> class auto_ptr;

 

Automatic Pointer

This class provides a limited garbage collection facility for pointers, by allowing pointers to have the elements they point to automatically destroyed when the auto_ptr object is itself destroyed.

auto_ptr objects have the peculiarity of taking ownership of the pointers assigned to them: An auto_ptr object that has ownership over one element is in charge of destroying the element it points to and to deallocate the memory allocated to it when itself is destroyed. The destructor does this by calling operator delete automatically.

Therefore, no two auto_ptr objects should own the same element, since both would try to destruct them at some point. When an assignment operation takes place between two auto_ptr objects, ownership is transferred, which means that the object losing ownership is reset to no longer point to the element (it is set to the null pointer).

 

Public members

 

还有部分资料mark下:

http://blog.csdn.net/xkyx_cn/archive/2009/03/05/3960569.aspx

http://www.cppblog.com/expter/archive/2009/03/29/78270.aspx