Is a `=default` move constructor equivalent to a member-wise move constructor?(`=default` 移动构造函数是否等同于成员移动构造函数?)
问题描述
这是吗
struct Example {
string a, b;
Example(Example&& mE) : a{move(mE.a)}, b{move(mE.b)} { }
Example& operator=(Example&& mE) { a = move(mE.a); b = move(mE.b); return *this; }
}
相当于这个
struct Example {
string a, b;
Example(Example&& mE) = default;
Example& operator=(Example&& mE) = default;
}
?
推荐答案
是的,两者是一样的.
但是
struct Example {
string a, b;
Example(Example&& mE) = default;
Example& operator=(Example&& mE) = default;
}
此版本将允许您跳过正文定义.
This version will permits you to skip the body definition.
但是,在声明explicitly-defaulted-functions
时必须遵循一些规则:
However, you have to follow some rules when you declare explicitly-defaulted-functions
:
8.4.2 显式默认函数 [dcl.fct.def.default]
表单的一个函数定义:
attribute-specifier-seqopt decl-specifier-seqopt declarator virt-specifier-seqopt = default ;
被称为 明确默认 定义.一个明确默认的函数应该
is called an explicitly-defaulted definition. A function that is explicitly defaulted shall
成为一个特殊的成员函数,
be a special member function,
具有相同的声明函数类型(除了可能不同的ref-qualifiers,并且除了在复制构造函数或复制赋值运算符的情况下,参数类型可能是引用到非常量 T
",其中 T
是成员函数的类的名称),就像它已经被隐式声明一样,
have the same declared function type (except for possibly differing ref-qualifiers and except that in the case of a copy constructor or copy assignment operator, the parameter type may be "reference to non-const T
", where T
is the name of the member function’s class) as if it had been implicitly declared,
没有默认参数.
这篇关于`=default` 移动构造函数是否等同于成员移动构造函数?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:`=default` 移动构造函数是否等同于成员移动构造函数?


基础教程推荐
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01