Sdílet prostřednictvím


auto_ptr::operator auto_ptr<Other>

Vrhá jeden druh auto_ptr k jinému typu z auto_ptr.

template<class Other>
   operator auto_ptr<Other>( ) throw( );

Vrácená hodnota

Typ odevzdaných vrátí operátor auto_ptr <ostatní> (* Tato).

Příklad

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

using namespace std;
int main()
{
   auto_ptr<int> pi ( new int( 5 ) );
   auto_ptr<const int> pc = ( auto_ptr<const int> )pi;
}

Požadavky

Záhlaví: <memory>

Obor názvů: std

Viz také

Referenční dokumentace

auto_ptr Class