次の方法で共有


auto_ptr::operator auto_ptr<Other>

1 種類の auto_ptr から別の種類の auto_ptrへのキャストを行います。

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

戻り値

型のキャスト演算子は auto_ptr <[その他]> (*this) を返します。

使用例

// 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 クラス