layout: post title: "smart_ptr" subtitle: "smart_ptr" date: 2019-05-20 11:42:43 author: "none" header-img: "img/posts/default_post.jpg" catalog: true tags: - tag
std::unique_ptr
独占资源管理 std::unique_ptr 不可拷贝,但可以移动
std::unique_ptr<int> pInt(new int(5));
std::shared_ptr
共享资源管理
std::shared_ptr<T> sp = std::make_shared<T>();