赞
踩
一个类只允许存在一个对象
实现起来很简单,将构造函数设置为私有,拷贝构造等关闭然后提供一个静态接口返回实例即可
class A {
A() {}
A(const A&) = delete;
A& operator=(const A&) = delete;
public:
static A& get_val() {
static A a;
return a;
}
/*其它函数*/
};
注意点:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。