2

OO 设计问题。

我想将单例功能继承到不同的类层次结构中。这意味着他们需要每个层次结构都有自己的单例实例。

这是我正在尝试做的一个简短示例:

class CharacterBob : public CCSprite, public BatchNodeSingleton {
 ... 
}

class CharacterJim : public CCSprite, public BatchNodeSingleton {
 ...
}


class BatchNodeSingleton {
public:
    BatchNodeSingleton(void);
    ~BatchNodeSingleton(void);

    CCSpriteBatchNode* GetSingletonBatchNode();
    static void DestroySingleton();
    static void initBatchNodeSingleton(const char* asset);

protected:
    static CCSpriteBatchNode* m_singletonBatchNode;
    static bool singletonIsInitialized;
    static const char* assetName;
};

此代码将导致 Jim 和 Bob 共享 BatchNodeSingleton 的受保护成员。我需要他们每个人都有自己的一套。什么是好的解决方案?可以通过assetName作为键查找的指针集合?

真的很感激你的想法。

4

1 回答 1

6

CRTP 是一种流行的模式:

template <typename T> struct Singleton
{
    static T & get()
    {
        static T instance;
        return instance;
    }
    Singleton(Singleton const &) = delete;
    Singleton & operator=(Singleton const &) = delete;
protected:
    Singleton() { }
};

class Foo : public Singleton<Foo>
{
    Foo();
    friend class Singleton<Foo>;
public:
    /* ... */
};

用法:

Foo::get().do_stuff();
于 2012-03-31T22:12:12.427 回答