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

设计模式

时间:2017-09-13 00:35:54      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:on()   col   ==   logs   设计   color   new   ati   mutex   

class singleton{
  private:
 static volatile singleton* p;
 static pthread_mutex_t mtx;
 singleton(){}
 
  public:
  singleton* getInstance();
}
 singleton*singleton::p=NULL;
 pthread_mutex_t singleton::mtx;
 singleton* singleton::getInstance(){
  if(p==NULL){
  pthread_mutex_lock (&mtx);
  if(p==NULL) p=new singleton;
  pthread_mutex_unlock(&mtx);
 }
return p;
}

以上是懒汉模式,为了线程安全,需要两次判断

还有饿汉模式

设计模式

标签:on()   col   ==   logs   设计   color   new   ati   mutex   

原文地址:http://www.cnblogs.com/zhaodun/p/7512844.html

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