共用方式為


auto_ptr::release

這個成員是由null指標取代儲存的指標 myptr 並傳回先前儲存的指標。

Type *release( ) throw( );

傳回值

先前儲存的指標。

備註

這個成員是由null指標取代儲存的指標 myptr 並傳回先前儲存的指標。

範例

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

需求

標題: <memory>

命名空間: std

請參閱

參考

auto_ptr Class