std::auto_ptr<T>::operator auto_ptr<Y>
来自cppreference.com
template< class Y > operator auto_ptr_ref<Y>() throw(); |
(1) | (C++11 中弃用) (C++17 中移除) |
template< class Y > operator auto_ptr<Y>() throw(); |
(2) | (C++11 中弃用) (C++17 中移除) |
转换 *this 为对于相异类型 Y
的 auto_ptr
。
参数
(无)
返回值
1) 保有到 *this 的引用的实现定义类型对象。
注解
源自 auto_ptr_ref
的构造函数和复制赋值运算符允许从无名临时量进行 std::auto_ptr 的复制构造和赋值。因为其复制构造函数与复制赋值运算符以非 const 引用接收实参,所以它们不能直接绑定右值。然而,可以执行用户定义转换(释放原 auto_ptr
)之后再调用按值接收 auto_ptr_ref
的构造函数或复制赋值运算符做到这点。这是一种移动语义的早期实现。