std::shared_ptr
的推导指南
来自 cppreference.com
< cpp | memory | shared ptr
定义在头文件 <memory> 中 |
||
template< class T > shared_ptr( std::weak_ptr<T> ) -> shared_ptr<T>; |
(1) | (自 C++17 起) |
template< class T, class D > shared_ptr( std::unique_ptr<T, D> ) -> shared_ptr<T>; |
(2) | (自 C++17 起) |
这些 推导指南 用于 std::shared_ptr 来解决隐式推导指南遗漏的边缘情况。
请注意,没有从指针类型进行类模板参数推导,因为无法区分从数组和非数组形式的 new 获取的指针。
[编辑] 示例
运行此代码
#include <memory> int main() { auto p = std::make_shared<int>(42); std::weak_ptr w{p}; // explicit deduction guide is used in this case std::shared_ptr p2{w}; // explicit deduction guide is used in this case }