标签:style color sp on 2014 问题 代码 bs amp
static CSingleton* GetInstance()
{
if( m_pInstance == NULL ) //优化性能,总比锁快
{
CAutoLock lock( &cs ); //防止多线程引起的同步问题
if( m_pInstance == NULL ) //确保该段代码进入单线程模式,开始可靠性判断
{
m_pInstance = new CSingleton;
}
}
return m_pInstance;
}
2014年11月19日15:54:52
标签:style color sp on 2014 问题 代码 bs amp
原文地址:http://blog.csdn.net/hellochenlian/article/details/41283105