我正在使用 Visual Studio 2012 Update 2,但无法理解 std::vector 为何尝试使用 unique_ptr 的复制构造函数。我看过类似的问题,大多数都与没有明确的移动构造函数和/或运算符有关。
如果我将成员变量更改为字符串,我可以验证是否调用了移动构造函数;但是,尝试使用 unique_ptr 会导致编译错误:
error C2248: 'std::unique_ptr<_Ty>::unique_ptr' : cannot access private member declared in class 'std::unique_ptr<_Ty>'
.
我希望有人能指出我所缺少的,谢谢!
#include <vector>
#include <string>
#include <memory>
class MyObject
{
public:
MyObject() : ptr(std::unique_ptr<int>(new int))
{
}
MyObject(MyObject&& other) : ptr(std::move(other.ptr))
{
}
MyObject& operator=(MyObject&& other)
{
ptr = std::move(other.ptr);
return *this;
}
private:
std::unique_ptr<int> ptr;
};
int main(int argc, char* argv[])
{
std::vector<MyObject> s;
for (int i = 0; i < 5; ++i)
{
MyObject o;
s.push_back(o);
}
return 0;
}