auto_ptr::operator auto_ptr<Other>

Conversões de um tipo de auto_ptr para outro tipo de auto_ptr.

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

Valor de retorno

O operador de conversão de tipos retorna auto_ptr <Outro>*this().

Exemplo

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

Requisitos

Cabeçalho: <memory>

namespace: STD

Consulte também

Referência

auto_ptr Class