Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1774476
  • 博文数量: 198
  • 博客积分: 4088
  • 博客等级: 上校
  • 技术积分: 2391
  • 用 户 组: 普通用户
  • 注册时间: 2011-05-15 16:29
个人简介

游戏开发,系统架构; 博客迁移到:http://www.jianshu.com/u/3ac0504b3b8c

文章分类

全部博文(198)

文章存档

2017年(1)

2016年(12)

2015年(1)

2014年(3)

2013年(13)

2012年(18)

2011年(150)

分类: C/C++

2011-11-23 15:55:33

  1. #include <iostream>

  2. class TestClass
  3. {
  4. public:
  5.     TestClass()
  6.         :x(0)
  7.     {
  8.     }
  9.     ~TestClass(){}
  10.     void Inc() { x++;}
  11.     void Show(){ std::cout << "x = " << x << std::endl;}

  12. private:
  13.     int x;
  14. };

  15. template <typename T>
  16. class Singleton
  17. {
  18. public:
  19.     static T* getPointer()
  20.     {
  21.         if(m_instance != 0)
  22.         {
  23.             return reinterpret_cast<T*>(m_instance);
  24.         }

  25.         T* instance = new T();

  26.         m_instance = reinterpret_cast<void*>(instance);

  27.         return instance;
  28.     }

  29.     static T & instance()
  30.     {
  31.         return *getPointer();
  32.     }

  33.     static void release()
  34.     {
  35.         if(m_instance)
  36.         {
  37.             delete m_instance;
  38.             m_instance = NULL;
  39.         }
  40.     }

  41. private:
  42.     static void* m_instance;
  43. };

  44. template<typename T>
  45. void* Singleton<T>::m_instance = 0;

  46. int main()
  47. {
  48.     for(int i = 0; i < 10; ++i)
  49.     {
  50.         Singleton<TestClass>::instance().Inc();
  51.         Singleton<TestClass>::instance().Show();
  52.     }

  53.     Singleton<TestClass>::release();

  54.     system("pause");

  55.     return 0;
  56. }

程序运行结果:

x = 1
x = 2
x = 3
x = 4
x = 5
x = 6
x = 7
x = 8
x = 9
x = 10

阅读(1186) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~