gpt4 book ai didi

c++ - 将指向其实例的指针作为私有(private)成员的类背后的原因是什么?

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

我不知道这个概念有没有名字。我有一个类声明;

class A
{
public:
...
private:
static A* me;
}
  • 这是一种模式吗?
  • 为什么会有人这样做?

最佳答案

没有更多代码来诊断意图,它看起来很像单例模式的实现。

stackoverflow 和维基百科上有很多引用资料;

您会发现可能有一些“获取实例”方法或 friend 工厂方法的实现。

class A {
public:
static A* getInstance();
// or
friend A* getInstance();

private:
static A* me;
};

为什么要这样做?引用维基百科

In software engineering, the singleton pattern is a design pattern that restricts the instantiation of a class to one object.

关于c++ - 将指向其实例的指针作为私有(private)成员的类背后的原因是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31020938/

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