构造函数复制构造赋值操作移动构造移动操作

Posted Kiven#5197

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了构造函数复制构造赋值操作移动构造移动操作相关的知识,希望对你有一定的参考价值。

 六个默认函数:

  1. 构造函数(construct)
  2. 析构函数(destruct)
  3. 复制构造函数(copy construct)
  4. 赋值(assign)
  5. 移动构造函数(move construct)
  6. 移动赋值(move)

 

 1 #include <iostream>
 2 
 3 using namespace std;
 4 
 5 int g_constructCount = 0;
 6 int g_copyConstructCount = 0;
 7 int g_destructCount = 0;
 8 int g_moveConstructCount = 0;
 9 int g_assignCount = 0;
10 int g_moveCount = 0;
11 
12 struct A
13 {
14 
15     A()
16     {
17         cout << "construct:" << ++g_constructCount << endl;
18     }
19 
20     A(const A& a)
21     {
22         cout << "copy construct:" << ++g_copyConstructCount << endl;
23     }
24 
25     A(A&& a)
26     {
27         cout << "move construct:" << ++g_moveConstructCount << endl;
28     }
29 
30     ~A()
31     {
32         cout << "destruct:" << ++g_destructCount << endl;
33     }
34 
35     A& operator=(const A& other)
36     {
37         cout << "assign:" << ++g_assignCount << endl;
38         return *this;
39     }
40     A& operator=(A&& a)
41     {
42         cout << "move:" << ++g_moveCount << endl;
43         return *this;
44     }
45 };

 

参考:

https://blog.csdn.net/jofranks/article/details/17438955

https://www.cnblogs.com/lustar/p/7512198.html

http://www.cnblogs.com/BlueTzar/articles/1223313.html

以上是关于构造函数复制构造赋值操作移动构造移动操作的主要内容,如果未能解决你的问题,请参考以下文章

如何利用模板复制&移动构造函数和赋值运算符?

可移动构造 可复制构造 可移动赋值 可复制赋值

5 规则(用于构造函数和析构函数)过时了吗?

移动选定的构造函数而不是复制。 [参考标准]

Chapter13:拷贝控制

C++C++的拷贝控制