排序
【C++】C++的四种强制转换reinterpret_cast/const_cast/static_cast /dynamic_cast(约813字)
文章目录reinterpret_castconst_caststatic_cast < type-id > (expression)dynamic_cast举个例子
【C++】智能指针的原理、常用的智能指针及实现(约901字)
文章目录原理常用的智能指针(1) shared_ptr(2) unique_ptr(3) weak_ptr(4) auto_ptr智能指针shared_ptr代码实现: