成长路上不孤单😊😊😊😊😊😊
【14后😊///C++爱好者😊///持续分享所学😊///如有需要欢迎收藏转发///😊】
今日分享关于C++ 拷贝构造函数的相关内容!
关于【C++ 拷贝构造函数】
拷贝构造函数是一种特殊的构造函数,它在创建对象时,是使用同一类中之前创建的对象来初始化新创建的对象。拷贝构造函数通常用于:
- 通过使用另一个同类型的对象来初始化新创建的对象。
- 复制对象把它作为参数传递给函数。
- 复制对象,并从函数返回这个对象。
如果在类中没有定义拷贝构造函数,编译器会自行定义一个。如果类带有指针变量,并有动态内存分配,则它必须有一个拷贝构造函数。拷贝构造函数的最常见形式如下:
在这里,obj 是一个对象引用,该对象是用于初始化另一个对象的。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
| #include <iostream> using namespace std; class Line { public : int getLength( void ); Line( int len ); // 简单的构造函数 Line( const Line &obj); // 拷贝构造函数 ~Line(); // 析构函数 private : int *ptr; }; // 成员函数定义,包括构造函数 Line::Line( int len) { cout << "调用构造函数" << endl; // 为指针分配内存 ptr = new int ; *ptr = len; } Line::Line( const Line &obj) { cout << "调用拷贝构造函数并为指针 ptr 分配内存" << endl; ptr = new int ; *ptr = *obj.ptr; // 拷贝值 } Line::~Line( void ) { cout << "释放内存" << endl; delete ptr; } int Line::getLength( void ) { return *ptr; } void display(Line obj) { cout << "line 大小 : " << obj.getLength() <<endl; } // 程序的主函数 int main( ) { Line line( 10 ); display(line); return 0 ; } |
当上面的代码被编译和执行时,它会产生下列结果:
下面的实例对上面的实例稍作修改,通过使用已有的同类型的对象来初始化新创建的对象:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
| #include <iostream> using namespace std; class Line { public : int getLength( void ); Line( int len ); // 简单的构造函数 Line( const Line &obj); // 拷贝构造函数 ~Line(); // 析构函数 private : int *ptr; }; // 成员函数定义,包括构造函数 Line::Line( int len) { cout << "调用构造函数" << endl; // 为指针分配内存 ptr = new int ; *ptr = len; } Line::Line( const Line &obj) { cout << "调用拷贝构造函数并为指针 ptr 分配内存" << endl; ptr = new int ; *ptr = *obj.ptr; // 拷贝值 } Line::~Line( void ) { cout << "释放内存" << endl; delete ptr; } int Line::getLength( void ) { return *ptr; } void display(Line obj) { cout << "line 大小 : " << obj.getLength() <<endl; } // 程序的主函数 int main( ) { Line line1( 10 ); Line line2 = line1; // 这里也调用了拷贝构造函数 display(line1); display(line2); return 0 ; } |
当上面的代码被编译和执行时,它会产生下列结果: