类模板
<memory>

std::auto_ptr_ref

template <class Y> struct auto_ptr_ref;
auto_ptr 引用
这是一个辅助类,用于允许某些转换,以便 auto_ptr 对象可以传递给函数以及从函数返回。

该类除了保存对 auto_ptr 对象的引用外,没有其他成员。

C++11 弃用了 auto_ptr 的使用,同时也引入了灵活性,允许库根据需要实现此类或以其他方式提供相同的功能。