Compartir a través de


auto_ptr::release

El miembro reemplaza el puntero almacenado myptr con un puntero NULL y devuelve el puntero previamente almacenado.

Type *release( ) throw( );

Valor devuelto

El puntero previamente almacenado.

Comentarios

El miembro reemplaza el puntero almacenado myptr con un puntero NULL y devuelve el puntero previamente almacenado.

Ejemplo

// 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;
}
  

Requisitos

Encabezado: <memory>

Espacio de nombres: std

Vea también

Referencia

auto_ptr (Clase)