- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想要一个单例类并公开公开它的一些方法,这些方法直接在实例上工作。下面的代码是一个好的模式吗?
class Singleton
{
public:
static Singleton& get()
{
// the easiest way to implement a singleton class
static Singleton instance;
return instance;
}
static void publicMethodOne()
{
// "redirecting" the call to the instance itself
get().instancePublicMethodOne();
}
static void publicMethodTwo()
{
// "redirecting" the call to the instance itself
get().instancePublicMethodTwo();
}
private:
Singleton() {}
Singleton(const Singleton& s) {}
Singleton& operator=(const Singleton& s) {}
void instancePublicMethodOne()
{
// do stuff
}
void instancePublicMethodTwo()
{
// do stuff
}
void privateMethodOne()
{
// privately do stuff
}
};
// call from outside
Singleton::publicMethodOne();
这基本上将每个静态和公共(public)方法调用重定向到实例,每个静态和公共(public)方法在实例中都有一对方法。
编辑:我想使用单例模式,这是肯定的。我的问题是这种全局公开实例方法的模式是否好。
最佳答案
自己比较一下这两个调用:
Singleton::publicMethodOne();
Singleton::get().publicMethodOne();
您只需将对 Singleton::get
的调用放入此静态方法中。这样做意义不大。它只会膨胀代码。
关于c++ - 这种 C++ 单例模式和方法公开是一种好的做法吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25465093/
如果您想分享更多信息,可以在这里找到整个资源 指针: https://github.com/sergiotapia/DreamInCode.Net 基本上,我的API将为其他开发人员提供
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 5 年前。 Improve this qu
我不是 SCM 工具的经验丰富的用户,尽管我确信它们的用处,当然。 我在以前的工作中使用了一些不起眼的商业工具,在当前的工作中使用了 Perforce,并在我的小型个人项目中使用了 TortoiseS
所以我想知道一些我应该避免在 javascript 中做的事情以获得良好的 SEO 排名。在我的下一个站点中,我将广泛使用 jquery 和 javascript,但不想牺牲 SEO。那么您认为我应该
基本上,我想知道什么是避免 future CSS 代码出现问题和混淆的最佳方法... 像这样命名 CSS 属性: div#content ul#navigation div.float-left (真
我是一名优秀的程序员,十分优秀!