shared_from_this()
时间: 2023-04-26 18:00:12 浏览: 128
共享
shared_from_this()是C++中的一个函数,用于在一个类中获取指向自身的shared_ptr指针。它只能在继承自enable_shared_from_this类的对象中使用,因为它需要访问enable_shared_from_this类中的成员变量。使用shared_from_this()可以避免手动创建shared_ptr指针,从而更加方便和安全地管理内存。
阅读全文