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` 移动构造函数是否等同于成员移动构造函数?
基础教程推荐
- 常量变量在标题中不起作用 2021-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 我有静态或动态 boost 库吗? 2021-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
