Condividi tramite


auto_ptr::release

Il membro sostituisce il puntatore archiviato myptr con un puntatore null e restituisce il puntatore sopra archiviato.

Type *release( ) throw( );

Valore restituito

Il puntatore sopra archiviato.

Note

Il membro sostituisce il puntatore archiviato myptr con un puntatore null e restituisce il puntatore sopra archiviato.

Esempio

// auto_ptr_release.cpp
// compile with: /EHsc
#include <memory>
#include <iostream>
#include <vector>
using namespace std;

class Int 
{
public:
   Int( int i ) 
   {
      x = i;
      cout << "Constructing " << ( void* )this << " Value: " << x << endl; 
   };
   ~Int( ) {
      cout << "Destructing " << ( void* )this << " Value: " << x << endl; 
   };

   int x;

};

int main( ) 
{
   auto_ptr<Int> pi ( new Int( 5 ) );
   pi.reset( new Int( 6 ) );
   Int* pi2 = pi.get ( );
   Int* pi3 = pi.release ( );
   if ( pi2 == pi3 )
      cout << "pi2 == pi3" << endl;
   delete pi3;
}
  

Requisiti

Header: <memory>

Spazio dei nomi: std

Vedere anche

Riferimenti

Classe auto_ptr