代码之家  ›  专栏  ›  技术社区  ›  Troskyvs

c++使用静态成员作为singleton实例会导致不同的对象

  •  0
  • Troskyvs  · 技术社区  · 2 年前

    我预计,当我们将静态成员定义为singleton的实例时 getInstance() 应该总是返回相同的对象地址,所以我尝试:

    struct singleton {
        static auto& getInstance() {
            static auto instance = std::make_unique<singleton>();
            return *instance;
        }
    };
    int main() {
        auto inst1 = singleton::getInstance();
        auto inst2 = singleton::getInstance();
        cout << &inst1 << endl;
        cout << &inst2 << endl;
        return 0;
    } 
    

    它打印:

    0x7ffcd729efd8
    0x7ffcd729efd0
    

    inst1和inst2的地址不同,这意味着每次调用时都会创建一个新对象 getInstance() ,所以它不是真正的singleton?

    为什么地址不同?我认为inst1和inst2指向同一个对象!你能帮忙解释一下吗?

    1 回复  |  直到 2 年前
        1
  •  1
  •   user12002570    2 年前

    这个班有 隐式合成复制构造函数 singleton::singleton(const singleton&) 创建时使用的 inst2 .

    //this is copy initialization
    auto inst2 = singleton::getInstance(); //works because of accessible copy ctor
    

    同样的道理 inst1 .

    您可以使用 auto& 以创建左值引用(别名)或使类不可复制。