Featured image of post C++ POD类型

C++ POD类型

C++ POD 是 Plain Old Data 的缩写,指的是可以通过简单内存复制进行复制和传输的数据类型。

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。