gpt4 book ai didi

c++ - 私有(private)构造函数和 make_shared

转载 作者:太空狗 更新时间:2023-10-29 20:52:44 25 4
gpt4 key购买 nike

我有一个带有私有(private)构造函数的单例类。在静态工厂方法中,我执行以下操作:

shared_ptr<MyClass> MyClass::GetInstance()
{
static once_flag onceFlag;

call_once(onceFlag, []() {
if (_instance == nullptr)
_instance.reset(new MyClass());
});

return _instance;
}

如果我用

_instance = make_shared<MyClass>();

代码无法编译。我的问题是:为什么 new 可以调用私有(private)构造函数而 make_shared 不能?

最佳答案

  1. 如前所述,std::make_shared 或其组成部分无法访问私有(private)成员。

  2. call_onceonce_flag 是不必要的。它们隐含在 c++11 静态初始化中,

  3. 您通常不想公开共享指针。

class MyClass
{
MyClass() {}

public:
static MyClass& GetInstance()
{
static auto instance = MyClass();
return instance;
}
};

但是,我可以想象在一种情况下,您想公开一个指向 impl 的共享指针 - 这种情况下类可以选择“中断”或“重置”impl 到一个新的.在这种情况下,我会考虑这样的代码:

class MyClass2
{
MyClass2() {};

static auto& InternalGetInstance()
{
static std::shared_ptr<MyClass2> instance { new MyClass2 };
return instance;
}

public:

static std::shared_ptr<MyClass2> GetInstance()
{
return std::atomic_load(std::addressof(InternalGetInstance()));
}

static void reset() {
std::atomic_store(std::addressof(InternalGetInstance()),
std::shared_ptr<MyClass2>(new MyClass2));

}
};

但是,最后,我认为类的“静态性”应该是一个实现细节,对类的用户来说并不重要:

#include <memory>
#include <utility>

class MyClass
{
// internal mechanics

struct Impl {

auto doSomething() {
// actual implementation here.
}
};

// getImpl now becomes the customisation point if you wish to change the
// bahviour of the class later
static Impl& getImpl() {
static auto impl = Impl();
return impl;
}


// use value semantics - it makes for more readable and loosely-coupled code
public:
MyClass() {}

// public methods defer to internal implementation

auto doSomething() {
return getImpl().doSomething();
}
};


int main() {

// note: just create objects
auto mc = MyClass();
mc.doSomething();

// now we can pass the singleton as an object. Other functions don't even
// need to know it's a singlton:

extern void somethingElse(MyClass mc);
somethingElse(mc);
}

void somethingElse(MyClass mc)
{

}

关于c++ - 私有(private)构造函数和 make_shared,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45127107/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com