将 a 的所有权转移std::vector<unique_ptr<int> >
到正在构建的类的正确方法是什么?
下面是我想要做的代码表示。我意识到无论是通过值还是通过引用将向量传递给构造函数,它都是不正确的(不会编译)并且违反了“唯一性”。我希望 Foo 成为向量的新所有者,并希望调用函数放弃所有权。我需要构造函数来std::unique_ptr<std::vector<std::unique_ptr<int> > >
执行此操作吗?
Foo.h
class Foo
{
public:
Foo(vector<std::unique_ptr<int> > vecOfIntPtrsOwnedByCaller);
private:
vector<std::unique_ptr<int> > _vecOfIntPtrsOwnedByFoo;
}
Foo.cpp
Foo::Foo(std::vector<std::unique_ptr< int> > vecOfIntPtrsOwnedByCaller)
{
_vecOfIntPtrsOwnedByFoo = vecOfIntPtrsOwnedByCaller;
}
任何帮助将不胜感激 - 我已经在网上搜寻了正确的方法来做到这一点。谢谢!