美文网首页
剑指offer 面试题2:实现Singleton模式

剑指offer 面试题2:实现Singleton模式

作者: qmss | 来源:发表于2016-06-20 16:31 被阅读0次

    题目:
    设计一个类,我们只能生成该类的一个实例

    解法:

    class Test {
        private:
            static Test*  instance;
            Test() {
            }
    
        public:
            Test*  getInstance()  {
                if (instance == 0)  {
                    instance = new Test();
                }
                return instance;
            }      
    };
    
    Test*  Test::instance = 0;
    

    相关文章

      网友评论

          本文标题:剑指offer 面试题2:实现Singleton模式

          本文链接:https://www.haomeiwen.com/subject/zfbwdttx.html