项目中最常用的设计模式还属【单例模式】,C++11之后可以实现线程安全的单例模式,不用再通过加锁等操作实现线程安全。并且不用使用指针等容易引起异常的危险操作。
记录下此种线程安全单例模式的写法,以后直接拿来用,只需要修改下类名就好。
#ifndef INSTANCE_H
#define INSTANCE_H
class InstanceExample
{
public:
static InstanceExample& instance();
virtual ~InstanceExample() == default;
};
#endif // INSTANCE_H
#include "instance_example.h"
InstanceExample& InstanceExample::instance() {
static InstanceExample instance;
return instance;
}
使用了内部静态变量。
这样,只有当第一次访问instance()方法时才创建实例。
C++0x之后该实现是线程安全的,C++0x之前仍需加锁。