Aracılığıyla paylaş


auto_ptr::operator auto_ptr<Other>

Bir tür çevirir auto_ptr için başka bir tür, auto_ptr.

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

Dönüş Değeri

Tür atama işleci döndürür auto_ptr <diğer> (* Bu).

Örnek

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

Gereksinimler

Başlık: <memory>

Namespace: std

Ayrıca bkz.

Başvuru

auto_ptr Class