码迷,mamicode.com
首页 > 其他好文 > 详细

单例类

时间:2015-04-14 18:00:36      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:

#include <stdio.h>
#include <stdlib.h>

class Singleton
{
       Singleton(void ){}//构造函数为私有的
       static Singleton *pSingleton;
public:
       static Singleton * CreateSingleton()
      {
             if(pSingleton ==NULL)
            {
                   pSingleton = new Singleton;
            }
             return pSingleton ;
      }
       void Output ()
      {
             printf("asdasdasd\n" );
      }

};
Singleton* Singleton ::pSingleton  NULL; //必须初始化

void main ()
{
       Singleton::CreateSingleton ()->Output();
       Singleton::CreateSingleton ()->Output();
       getchar();
       return;
}

单例类

标签:

原文地址:http://blog.csdn.net/u012454516/article/details/45045759

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!