gpt4 book ai didi

c++ - 将 std::unique_ptr 返回到多态类对象的正确方法

转载 作者:IT老高 更新时间:2023-10-28 22:38:04 25 4
gpt4 key购买 nike

假设我有以下类层次结构:

struct Base 
{
};

struct Derived : public Base
{
void DoStuffSpecificToDerivedClass()
{
}
};

还有以下工厂方法:

std::unique_ptr<Base> factoryMethod()
{
auto derived = std::make_unique<Derived>();
derived->DoStuffSpecificToDerivedClass();
return derived; // does not compile
}

问题是,return 语句无法编译,因为 std::unique_ptr 没有支持协方差的复制构造函数(这是有道理的,因为它没有有任何复制构造函数),它只有一个支持协方差的移动构造函数。

解决这个问题的最佳方法是什么?我可以想到两种方法:

return std::move(derived); // this compiles
return std::unique_ptr<Base>(derived.release()); // and this compiles too

编辑 1: 我使用 Visual C++ 2013 作为我的编译器。 return derived 的原始错误消息如下所示:

Error   1   error C2664: 'std::unique_ptr<Base,std::default_delete<_Ty>>::unique_ptr(const std::unique_ptr<_Ty,std::default_delete<_Ty>> &)' : cannot convert argument 1 from 'std::unique_ptr<Derived,std::default_delete<Derived>>' to 'std::unique_ptr<Derived,std::default_delete<Derived>> &&'

编辑 2: 这是一个新创建的控制台应用程序,来自标准 VS 2013 模板。我没有调整任何编译器设置。编译器命令行如下所示:

调试:

/Yu"stdafx.h" /GS /analyze- /W3 /Zc:wchar_t /ZI /Gm /Od /sdl /Fd"Debug\vc120.pdb" /fp:precise /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_LIB" /D "_UNICODE" /D "UNICODE" /errorReport:prompt /WX- /Zc:forScope /RTC1 /Gd /Oy- /MDd /Fa"Debug\" /EHsc /nologo /Fo"Debug\" /Fp"Debug\CppApplication1.pch" 

发布:

/Yu"stdafx.h" /GS /GL /analyze- /W3 /Gy /Zc:wchar_t /Zi /Gm- /O2 /sdl /Fd"Release\vc120.pdb" /fp:precise /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_LIB" /D "_UNICODE" /D "UNICODE" /errorReport:prompt /WX- /Zc:forScope /Gd /Oy- /Oi /MD /Fa"Release\" /EHsc /nologo /Fo"Release\" /Fp"Release\CppApplication1.pch" 

最佳答案

你可以这样做:

return std::move(derived);

这样告诉编译器不需要拷贝,满足unique_ptr的要求。如果类型完全匹配,您不需要显式指定 move,但在这种情况下您需要这样做。

关于c++ - 将 std::unique_ptr 返回到多态类对象的正确方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33971318/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com