memory
上传用户:nizebo
上传日期:2022-05-14
资源大小:882k
文件大小:3k
源码类别:

STL

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1997-1999
  3.  * Silicon Graphics Computer Systems, Inc.
  4.  *
  5.  * Permission to use, copy, modify, distribute and sell this software
  6.  * and its documentation for any purpose is hereby granted without fee,
  7.  * provided that the above copyright notice appear in all copies and
  8.  * that both that copyright notice and this permission notice appear
  9.  * in supporting documentation.  Silicon Graphics makes no
  10.  * representations about the suitability of this software for any
  11.  * purpose.  It is provided "as is" without express or implied warranty.
  12.  *
  13.  */
  14. #ifndef __SGI_STL_MEMORY
  15. #define __SGI_STL_MEMORY
  16. #include <stl_algobase.h>
  17. #include <stl_alloc.h>
  18. #include <stl_construct.h>
  19. #include <stl_tempbuf.h>
  20. #include <stl_uninitialized.h>
  21. #include <stl_raw_storage_iter.h>
  22. __STL_BEGIN_NAMESPACE
  23. #if defined(__SGI_STL_USE_AUTO_PTR_CONVERSIONS) && 
  24.     defined(__STL_MEMBER_TEMPLATES)
  25. template<class _Tp1> struct auto_ptr_ref {
  26.   _Tp1* _M_ptr;
  27.   auto_ptr_ref(_Tp1* __p) : _M_ptr(__p) {}
  28. };
  29. #endif
  30. template <class _Tp> class auto_ptr {
  31. private:
  32.   _Tp* _M_ptr;
  33. public:
  34.   typedef _Tp element_type;
  35.   explicit auto_ptr(_Tp* __p = 0) __STL_NOTHROW : _M_ptr(__p) {}
  36.   auto_ptr(auto_ptr& __a) __STL_NOTHROW : _M_ptr(__a.release()) {}
  37. #ifdef __STL_MEMBER_TEMPLATES
  38.   template <class _Tp1> auto_ptr(auto_ptr<_Tp1>& __a) __STL_NOTHROW
  39.     : _M_ptr(__a.release()) {}
  40. #endif /* __STL_MEMBER_TEMPLATES */
  41.   auto_ptr& operator=(auto_ptr& __a) __STL_NOTHROW {
  42.     if (&__a != this) {
  43.       delete _M_ptr;
  44.       _M_ptr = __a.release();
  45.     }
  46.     return *this;
  47.   }
  48. #ifdef __STL_MEMBER_TEMPLATES
  49.   template <class _Tp1>
  50.   auto_ptr& operator=(auto_ptr<_Tp1>& __a) __STL_NOTHROW {
  51.     if (__a.get() != this->get()) {
  52.       delete _M_ptr;
  53.       _M_ptr = __a.release();
  54.     }
  55.     return *this;
  56.   }
  57. #endif /* __STL_MEMBER_TEMPLATES */
  58.   // Note: The C++ standard says there is supposed to be an empty throw
  59.   // specification here, but omitting it is standard conforming.  Its 
  60.   // presence can be detected only if _Tp::~_Tp() throws, but (17.4.3.6/2)
  61.   // this is prohibited.
  62.   ~auto_ptr() { delete _M_ptr; }
  63.   _Tp& operator*() const __STL_NOTHROW {
  64.     return *_M_ptr;
  65.   }
  66.   _Tp* operator->() const __STL_NOTHROW {
  67.     return _M_ptr;
  68.   }
  69.   _Tp* get() const __STL_NOTHROW {
  70.     return _M_ptr;
  71.   }
  72.   _Tp* release() __STL_NOTHROW {
  73.     _Tp* __tmp = _M_ptr;
  74.     _M_ptr = 0;
  75.     return __tmp;
  76.   }
  77.   void reset(_Tp* __p = 0) __STL_NOTHROW {
  78.     if (__p != _M_ptr) {
  79.       delete _M_ptr;
  80.       _M_ptr = __p;
  81.     }
  82.   }
  83.   // According to the C++ standard, these conversions are required.  Most
  84.   // present-day compilers, however, do not enforce that requirement---and, 
  85.   // in fact, most present-day compilers do not support the language 
  86.   // features that these conversions rely on.
  87.   
  88. #if defined(__SGI_STL_USE_AUTO_PTR_CONVERSIONS) && 
  89.     defined(__STL_MEMBER_TEMPLATES)
  90. public:
  91.   auto_ptr(auto_ptr_ref<_Tp> __ref) __STL_NOTHROW
  92.     : _M_ptr(__ref._M_ptr) {}
  93.   auto_ptr& operator=(auto_ptr_ref<_Tp> __ref) __STL_NOTHROW {
  94.     if (__ref._M_ptr != this->get()) {
  95.       delete _M_ptr;
  96.       _M_ptr = __ref._M_ptr;
  97.     }
  98.     return *this;
  99.   }
  100.   template <class _Tp1> operator auto_ptr_ref<_Tp1>() __STL_NOTHROW 
  101.     { return auto_ptr_ref<_Tp1>(this->release()); }
  102.   template <class _Tp1> operator auto_ptr<_Tp1>() __STL_NOTHROW
  103.     { return auto_ptr<_Tp1>(this->release()); }
  104. #endif /* auto ptr conversions && member templates */
  105. };
  106. __STL_END_NAMESPACE
  107. #endif /* __SGI_STL_MEMORY */
  108. // Local Variables:
  109. // mode:C++
  110. // End: