C++面试题集

linux下线程安全的单例模式

2017-09-02  本文已影响93人  saviochen

在生成单例时加锁,生成结束后释放锁。
注意两点:volatile 和 double-check

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

class singleton{
private:
    static volatile singleton *p;
    static pthread_mutex_t mtx;
    singleton(){}
public:
    static 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;
}

int main(){
    singleton * ptr = singleton::getInstance();
    singleton * ptr1 = singleton::getInstance();
    return 0;
}
上一篇下一篇

猜你喜欢

热点阅读