Udostępnij za pośrednictwem


auto_ptr::operator auto_ptr<Other>

Posługując się miarką z jednego rodzaju auto_ptr do innego rodzaju z auto_ptr.

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

Wartość zwracana

Operator zwraca rzutować typu auto_ptr<innych>(* to).

Przykład

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

Wymagania

Nagłówek: <pamięć>

Przestrzeń nazw: std

Zobacz też

Informacje

auto_ptr — Klasa