class SiglenTon
{
public:
static SiglenTon *GetInstence()
{
if( p == NULL)
{
p = new SiglenTon();
}
return p;
}
private:
SiglenTon()
{
cout<<"SiglenTon()"<<endl;
}
static SiglenTon *p;
};
SiglenTon *SiglenTon::p = NULL;
int main()
{
SiglenTon *p = SiglenTon::GetInstence();
return 0;
}
class SiglenTon //(线程安全的饿汉模式)
{
public:
static SiglenTon *GetInstence()
{
cout<<"static SiglenTon *GetInstence()"<<endl;
pthread_mutex_lock(&mutex);
if( p == NULL)
{
pthread_mutex_lock(&mutex);
p = new SiglenTon();
pthread_mutex_unlock(&mutex);
}
pthread_mutex_unlock(&mutex);
return p;
}
private:
SiglenTon()
{
cout<<"SiglenTon()"<<endl;
}
static SiglenTon *p;
};
SiglenTon *SiglenTon::p = NULL;
int main()
{
SiglenTon *p = SiglenTon::GetInstence();
SiglenTon *p1 = p->GetInstence();
return 0;
}
class SiglenTon
{
public:
SiglenTon *GetInstence()
{
if( p == NULL)
{
return p;
}
}
private:
SiglenTon()
{
cout<<"SiglenTon()"<<endl;
}
static SiglenTon *p;
};
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2025 源码网商城 (www.ymwmall.com) 版权所有