effective_modern_c++
Search...
Ctrl
K
4 智能指针
条款18 对于独占资源使用std::unique_ptr
条款19 对于共享资源使用std::shared_ptr
条款20 当std::shared_ptr可能悬空时使用std::weak_ptr
条款21 优先考虑使用std::make_unique和std::make_shared,而非直接使用new
条款22 当使用Pimpl惯用法,请在实现文件中定义特殊成员函数
Previous
条款17 理解特殊成员函数的生成
Next
条款18 对于独占资源使用std::unique_ptr
Last updated
2 years ago