首页 > 其他 > 详细

设计模式

时间:2017-09-13 00:13:51      阅读:318      评论:0      收藏:0      [点我收藏+]
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;
}

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

还有饿汉模式

设计模式

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!