Singleton (C++实现)

// Singleton.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"
#include <iostream>

using namespace std;

class Singleton
{
public:
 Singleton(){}
 virtual ~Singleton(){}

 

 static Singleton* GetInstancePtr()
 {
  if(NULL==m_pStatic)
  {
   m_pStatic=new Singleton();
  }
  return m_pStatic;
 }

 

 

 static  Singleton GetInstance()
 {
  return *GetInstancePtr();
 }

 

 

 void test()
 {
  cout<<"Singleton patton test!"<<endl;
 
 }

 

private:
 static Singleton * m_pStatic;

};

 

Singleton * Singleton::m_pStatic=NULL;

/////////////////////////////////////////////

int _tmain(int argc, _TCHAR* argv[])
{
 Singleton::GetInstancePtr()->test();
 Singleton::GetInstance().test();
 return 0;
}

 

原文链接: https://www.cnblogs.com/ustc11wj/archive/2011/05/23/2610914.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

    Singleton (C++实现)

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/25965

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月8日 上午3:44
下一篇 2023年2月8日 上午3:44

相关推荐