shared-ptr
-
用于将 shared_ptr 向量填充到 Base & Derived 对象的函数模板
-
为什么我们需要传递 const 共享指针作为引用?
-
将 std::map<int, std::shared_ptr<Base>> 转换为 std::map<int, std::shared_ptr<Derived>> 的最有效安全方法
-
为自定义 class std::shared_ptr 实例调用 Operator()
-
如果我在整个 class 上使用 std::swap,是否会使用专门的 shared_ptr::swap() 函数?
-
shared_ptr<void> 如何知道要使用哪个析构函数?
-
如何从 shared_ptr<T&> 的引用中提取数据
-
尝试使用 shared_ptr 创建单例时出现编译错误
-
将 shared_ptr<Type> 转换为 weak_ptr<void> 并返回
-
投射时共享指针不起作用?
-
结合使用复制构造函数 std::make_shared
-
shared_ptr 和 weak_ptr 失败的小案例
-
与在构造函数中将非常量左值绑定到右值相关的错误
-
为什么使用 class 的引用或唯一指针成员是一件坏事?
-
在不绕过共享语义的情况下通过引用传输向量<shared_ptr<T>>
-
为什么 shared_ptr 计数器在作为 const 引用传递给基 class 时递增?
-
取消引用右值 shared_ptr
-
在 C++ 中使用 shared_ptr 从 public 静态成员函数访问私有构造函数
-
理解 C++ std::shared_ptr 与临时对象一起使用
-
enable_shared_from_this<S> 什么时候有用?