std::shared_ptr智能指针是C++重要的特性,但是有一个问题他不支持动态数组。
1 | std::shared_ptr<int []> sp1(new int[10]); // 错误 C++11没有这个特性 |
如何使用构造shared_ptr和unique_ptr的方法
1 | std::shared_ptr<int> p(new int(10)); |
std::shared_ptr智能指针是C++重要的特性,但是有一个问题他不支持动态数组。
1 | std::shared_ptr<int []> sp1(new int[10]); // 错误 C++11没有这个特性 |
如何使用构造shared_ptr和unique_ptr的方法
1 | std::shared_ptr<int> p(new int(10)); |