다음을 통해 공유


auto_ptr::operator auto_ptr<Other>

하나에서 일종의 캐스팅 auto_ptr 에 다른 종류의 auto_ptr.

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

반환 값

형식 캐스팅 연산자 반환 auto_ptr <기타> (*이).

예제

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

요구 사항

헤더: <memory>

네임 스페이스: std

참고 항목

참조

auto_ptr Class