📜  std::enable_shared_from_this 包括 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:06.627000             🧑  作者: Mango

代码示例1
#include 
#include 
 
struct Good: std::enable_shared_from_this // note: public inheritance
{
    std::shared_ptr getptr() {
        return shared_from_this();
    }
};