c – 为什么移动构造函数涉及到此处

我有这段C代码
class Args {};

class MyClass {
  public:
  MyClass(Args& a) {}
  MyClass(MyClass &&) = delete;
};

int main() {

  Args a;
  MyClass c1 = MyClass(a);
  MyClass c2 = a;
  MyClass c3(a);

  return 0;
}

这不会编译,因为对象c1和c2的构造似乎涉及类的移动构造函数

错误:使用已删除函数’MyClass :: MyClass(MyClass&&)’

似乎编译器想要创建临时对象,然后将它们移动到c1和c2.为什么会这样?不应该所有三个语句都只调用MyClass(Args& a)构造函数吗?

另一方面,如果我创建移动构造函数,程序编译正常,移动构造函数永远不会被调用

解决方法

copy elision

Under the following circumstances,the compilers are permitted,but not required to omit the copy- and move- (since C++11) construction of class objects even if the copy/move (since C++11) constructor and the destructor have observable side-effects. This is an optimization: even when it takes place and the copy-/move-constructor is not called,it still must be present and accessible (as if no optimization happened at all),otherwise the program is ill-formed.

从C 17开始:

They need not be present or accessible,as the language rules ensure that no copy/move operation takes place,even conceptually.

相关文章

本程序的编译和运行环境如下(如果有运行方面的问题欢迎在评...
水了一学期的院选修,万万没想到期末考试还有比较硬核的编程...
补充一下,先前文章末尾给出的下载链接的完整代码含有部分C&...
思路如标题所说采用模N取余法,难点是这个除法过程如何实现。...
本篇博客有更新!!!更新后效果图如下: 文章末尾的完整代码...
刚开始学习模块化程序设计时,估计大家都被形参和实参搞迷糊...