我有一个类,我希望能够用一个临时的 unique_ptr 构造一个类,如下所示:
MyCollection foo(std::unique_ptr<MyObj>(nullptr));
对象应该拥有指针的所有权。我的问题是,正确的构造函数签名是什么?
1. MyCollection(std::unique_ptr<MyObj> foo);
2. MyCollection(std::unique_ptr<MyObj>&& foo);
第一个选项不链接。第二个确实如此,但是如果我继续这样做,然后尝试使用非 R 值构造 MyCollection 会发生什么?IE
std::unique_ptr<MyObj> pointer(nullptr);
MyCollection(pointer);
答案在这里:如何将 unique_ptr 参数传递给构造函数或函数?建议我应该按值获取 unique_ptr,但正如我上面所说,它在 VS2010 中没有链接(错误看起来像这样......
Error 5 error LNK2028: unresolved token (0A00075A) "private: __thiscall std::unique_ptr<class IVDSDocCore,struct std::default_delete<class IVDSDocCore> >::unique_ptr<class IVDSDocCore,struct std::default_delete<class IVDSDocCore> >(class std::unique_ptr<class IVDSDocCore,struct std::default_delete<class IVDSDocCore> > const &)" (??0?$unique_ptr@VIVDSDocCore@@U?$default_delete@VIVDSDocCore@@@std@@@std@@$$FAAE@ABV01@@Z) referenced in function "public: static void __clrcall std::unique_ptr<class IVDSDocCore,struct std::default_delete<class IVDSDocCore> >::<MarshalCopy>(class std::unique_ptr<class IVDSDocCore,struct std::default_delete<class IVDSDocCore> > *,class std::unique_ptr<class IVDSDocCore,struct std::default_delete<class IVDSDocCore> > *)" (?<MarshalCopy>@?$unique_ptr@VIVDSDocCore@@U?$default_delete@VIVDSDocCore@@@std@@@std@@$$FSMXPAV12@0@Z) C:\sviluppo\FerrariGes\GesDB\VDS.NET\VDS\vdsdoc.obj
一些回复建议我需要使用移动功能。如果我使用构造函数 1,并尝试像这样创建对象:
如果我使用构造函数 1,并尝试像这样创建对象:
MyCollection foo(move(std::unique_ptr<MyObj>(nullptr)));
我得到相同的链接错误。