gpt4 book ai didi

c++ - 为什么 g++ 允许返回不可复制的类?

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:03:38 25 4
gpt4 key购买 nike

<分区>

我为不可复制的类创建了这个基类:

class non_copyable
{
public:

non_copyable(const non_copyable&) = delete;
non_copyable& operator=(const non_copyable&) = delete;

virtual ~non_copyable() = default;

protected:

non_copyable() = default;
};

然后我创建了这个派生类:

class manager
: public non_copyable
{
public:
manager()
{
}

std::string s;
};

我能够创建类的实例并像这样返回它:

manager get()
{
return manager();
}

我认为这应该是不可能的,因为拷贝构造函数被删除了,隐式生成的移动构造函数也被删除了,因为有一个用户定义(删除)的拷贝构造函数。

此代码使用 MinGW-64 7.2 编译但不使用 MSVC 2017 并产生此消息:

function "manager::operator=(const manager &) throw()" (declared implicitly) cannot be referenced -- it is a deleted function

这是 C++ 设计允许的编译器问题还是我做错了什么?

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