C如何从一个在构造函数上获取参数的类创建一个std :: unique_ptr
作者:互联网
我需要从一个具有一个参数的构造函数的类创建一个std :: unique_ptr.我找不到关于如何做的参考.这是无法编译的代码示例:
#include <iostream>
#include <string>
#include <sstream>
#include <memory>
class MyClass {
public:
MyClass(std::string name);
virtual ~MyClass();
private:
std::string myName;
};
MyClass::MyClass(std::string name) : myName(name) {}
MyClass::~MyClass() {}
class OtherClass {
public:
OtherClass();
virtual ~OtherClass();
void MyFunction(std::string data);
std::unique_ptr<MyClass> theClassPtr;
};
OtherClass::OtherClass() {}
OtherClass::~OtherClass() {}
void OtherClass::MyFunction(std::string data)
{
std::unique_ptr<MyClass> test(data); <---------- PROBLEM HERE!
theClassPtr = std::move(test);
}
int main()
{
OtherClass test;
test.MyFunction("This is a test");
}
这些错误与我初始化std :: unique_ptr的方式有关,我的代码中指出了这一点.
原始代码和错误可以在here找到.
谢谢你帮助我解决这个问题.
解决方法:
你可以做:
std::unique_ptr<MyClass> test(new MyClass(data));
或者如果你有C 14
auto test = std::make_unique<MyClass>(data);
但:
在提供的示例中,不需要创建临时变量,您只需使用类成员的reset方法:
theClassPtr.reset(new MyClass(data));
标签:c,c11,unique-ptr 来源: https://codeday.me/bug/20190824/1709469.html