智能指针单例
普通单例如果是new出来的,一般不会有删除,或者需要调用一个删除函数;
如果是static,将会在main()之后删除,无法做到在main()结束时删除.
智能指针的单例,在初次使用时new, 当无人引用时自动删除,删除后还会new.
原理是保存一个weak_ptr, 返回智能指针.
class SmartSingleton : boost::noncopyable
{
private:
static boost::mutex _mutex;
static boost::weak_ptr _thisWeakPtr;
SmartSingleton();
public:
~SmartSingleton();
typedef boost::shared_ptr SmartSingletonPtr;
static SmartSingletonPtr getInstance()
{
SmartSingletonPtr p = _thisWeakPtr.lock();
if (p) return p;
boost::lock_guard lock(_mutex);
p = _thisWeakPtr.lock();
if (p) return p;
p.reset(new SmartSingleton);
_thisWeakPtr = p;
return p;
}
};
boost::weak_ptr SmartSingleton::_thisWeakPtr;
boost::mutex SmartSingleton::_mutex;
参考:
(A dynamic) Singleton using weak_ptr and shared_ptr
http://boost.2283326.n4.nabble.com/A-dynamic-Singleton-using-weak-ptr-and-shared-ptr-td2581447.html
Several C++ singleton implementations
修正: 可能需要在析构时禁止产生新的实例.
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net
相关推荐: 聊一聊Java中的Steam流 | 京东物流技术团队
1 引言 在我们的日常编程任务中,对于集合的制造和处理是必不可少的。当我们需要对于集合进行分组或查找的操作时,需要用迭代器对于集合进行操作,而当我们需要处理的数据量很大的时候,为了提高性能,就需要使用到并行处理,这样的处理方式是很复杂的。流可以帮助开发者节约宝…