6 为什么在标准容器中使用std :: auto_ptr <>是错误的? 为什么使用std::auto_ptr<>标准容器是错误的? 217 c++ stl raii auto-ptr c++-faq
4 std :: auto_ptr到std :: unique_ptr 随着新标准的到来(以及某些编译器中已有的部件),新类型std::unique_ptr应被替换为std::auto_ptr。 它们的用法是否完全重叠(因此我可以在我的代码上进行全局查找/替换(不是我可以这样做,但是如果可以的话))还是应该注意阅读文档后看不到的一些区别? 另外,如果它是直接替代品,为什么给它起一个新的名字而不是仅仅改善它std::auto_ptr? 185 c++ c++11 smart-pointers auto-ptr unique-ptr
5 为什么不建议使用auto_ptr? 听说auto_ptr在C ++ 11中已弃用。这是什么原因呢? 此外,我想知道的区别auto_ptr和shared_ptr。 92 c++ c++11 smart-pointers auto-ptr
4 auto_ptr是否已弃用? 在传入的C ++标准中将不赞成使用auto_ptr吗? 应该将unique_ptr而不是shared_ptr用于所有权转让吗? 如果unique_ptr不在标准中,那么我是否需要使用shared_ptr? 81 c++ standards smart-pointers auto-ptr unique-ptr