Aracılığıyla paylaş


auto_ptr::auto_ptr

IISMimeType türü nesneler için yapıcı auto_ptr.

explicit auto_ptr(
   Type* _Ptr = 0
) throw( );
auto_ptr(
   auto_ptr<Type>& _Right
) throw( );
auto_ptr(
   auto_ptr_ref<Type> _Right
) throw( );
template<class Other>
   auto_ptr(
   auto_ptr<Other>& _Right
) throw( );

Parametreler

  • _Ptr
    İşaretçiyi nesnenin, auto_ptr içinde saklar.

  • _Right
    auto_ptr Kurucusu tarafından kopyalanacak nesne.

Notlar

İlk kurucu depoları _Ptr , myptr, ayrılan nesneniz için saklı işaretçi. Kurucu aktarır saklanan işaretçi sahipliğini _Right, depolayarak _Right.release in myptr.

Bu depolar dışında üçüncü kurucusu saniye ile aynı davranır sağ.ref. serbest , myptr, nerede ref içinde depolanan başvuru _Right.

Şablon oluşturucu aynı şekilde davranır, kurucu gösteren bir işaretçi sağlanan diğer gösteren bir işaretçi için örtük olarak dönüştürülebilir türü.

Örnek

// auto_ptr_auto_ptr.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>
#include <vector>

using namespace std;

class Int 
{
public:
   Int(int i) 
   {
      cout << "Constructing " << ( void* )this  << endl; 
      x = i;
      bIsConstructed = true;
   };
   ~Int( ) 
   {
      cout << "Destructing " << ( void* )this << endl; 
      bIsConstructed = false;
   };
   Int &operator++( ) 
   {
      x++;
      return *this;
   };
   int x;
private:
   bool bIsConstructed;
};

void function ( auto_ptr<Int> &pi )
{
   ++( *pi );
   auto_ptr<Int> pi2( pi );
   ++( *pi2 );
   pi = pi2;
}

int main( ) 
{
   auto_ptr<Int> pi ( new Int( 5 ) );
   cout << pi->x << endl;
   function( pi );
   cout << pi->x << endl;
}
  

Gereksinimler

Başlık: <memory>

Namespace: std

Ayrıca bkz.

Başvuru

auto_ptr Class