我正在尝试在person类中编写单例模式,这使我能够为该类创建一个实例,并且我可以在程序中的任何位置使用它。
以下是班级:
// The declaration
class Person {
static unique_ptr<Person> instance;
Person() = default;
Person(Person&) = delete;
Person& operator=(const Person&) = delete;
~Person() = default;
public:
static unique_ptr<Person> getInstance();
};
// The implementation
unique_ptr<Person> instance = NULL;
unique_ptr<Person> Person::getInstance() {
if (instance == NULL) {
instance = unique_ptr<Person>(new Person());
}
return instance;
}
但问题是它给了我这个错误:Error C2280 'std::unique_ptr<Person,std::default_delete<_Ty>>::unique_ptr(const std::unique_ptr<_Ty,std::default_delete<_Ty>> &)': attempting to reference a deleted function
不幸的是,我不明白这个问题而且我不知道如何解决?
答案 0 :(得分:5)
std::unique_ptr
的复制构造函数被隐式删除,因为它有一个显式定义的移动构造函数。
来自C++11 Standard, 12.8 Copying and moving class objects:
7如果类定义没有显式声明复制构造函数,则会声明隐式。如果类定义声明了移动构造函数或移动赋值运算符,则隐式声明的复制构造函数被定义为已删除;否则,它被定义为默认([dcl.fct.def])。
您可以通过以下方式解决问题:
返回对Person
的引用。
static Person& getInstance();
Person& Person::getInstance()
{
static Person p;
return p;
}
返回shared_ptr<Person>
。
static std::shared_ptr<Person> getInstance();
std::shared_ptr<Person> Person::getInstance()
{
static std::shared_ptr<Person> p(new Person);
return p;
}
我推荐第一种解决方案,因为它更简单。
PS 请注意,它们都不需要使用static
成员变量instance
。