Featured image of post C++ 智能指针实现之shared_ptr

C++ 智能指针实现之shared_ptr

智能指针本质上就是利用 RAII 资源管理功能,本文介绍实现 C++中智能指针的 shared_ptr。

Featured image of post C++ 智能指针实现之unique_ptr

C++ 智能指针实现之unique_ptr

智能指针本质上就是利用 RAII 资源管理功能,本文介绍实现 C++中智能指针的 unique_ptr。