码迷,mamicode.com
首页 > 编程语言 > 详细

23、【C++基础】复制构造函数

时间:2018-09-19 19:51:50      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:str   ace   amp   end   基础   names   拷贝构造   参数   编译器   

拷贝构造函数

拷贝构造函数是一种特殊的构造函数,它在创建对象时,是使用同一类中之前创建的对象来初始化新创建的对象。拷贝构造函数通常用于:

  • 通过使用另一个同类型的对象来初始化新创建的对象。

  • 复制对象把它作为参数传递给函数。

  • 复制对象,并从函数返回这个对象。

如果在类中没有定义拷贝构造函数,编译器会自行定义一个。如果类带有指针变量,并有动态内存分配,则它必须有一个拷贝构造函数。拷贝构造函数的最常见形式如下:

classname (const classname &obj) {
   // 构造函数的主体
}

在这里,obj 是一个对象引用,该对象是用于初始化另一个对象的。

 1 #include <iostream>
 2  
 3 using namespace std;
 4  
 5 class Line
 6 {
 7    public:
 8       int getLength( void );
 9       Line( int len );             // 简单的构造函数
10       Line( const Line &obj);      // 拷贝构造函数
11       ~Line();                     // 析构函数
12  
13    private:
14       int *ptr;
15 };
16  
17 // 成员函数定义,包括构造函数
18 Line::Line(int len)
19 {
20     cout << "调用构造函数" << endl;
21     // 为指针分配内存
22     ptr = new int;
23     *ptr = len;
24 }
25  
26 Line::Line(const Line &obj)
27 {
28     cout << "调用拷贝构造函数并为指针 ptr 分配内存" << endl;
29     ptr = new int;
30     *ptr = *obj.ptr; // 拷贝值
31 }
32  
33 Line::~Line(void)
34 {
35     cout << "释放内存" << endl;
36     delete ptr;
37 }
38 int Line::getLength( void )
39 {
40     return *ptr;
41 }
42  
43 void display(Line obj)
44 {
45    cout << "line 大小 : " << obj.getLength() <<endl;
46 }
47  
48 // 程序的主函数
49 int main( )
50 {
51    Line line(10);
52  
53    display(line);
54  
55    return 0;
56 }

 执行结果:

调用构造函数
调用拷贝构造函数并为指针 ptr 分配内存
line 大小 : 10
释放内存
释放内存

 

 下面的实例对上面的实例稍作修改,通过使用已有的同类型的对象来初始化新创建的对象:

 1 #include <iostream>
 2  
 3 using namespace std;
 4  
 5 class Line
 6 {
 7    public:
 8       int getLength( void );
 9       Line( int len );             // 简单的构造函数
10       Line( const Line &obj);      // 拷贝构造函数
11       ~Line();                     // 析构函数
12  
13    private:
14       int *ptr;
15 };
16  
17 // 成员函数定义,包括构造函数
18 Line::Line(int len)
19 {
20     cout << "调用构造函数" << endl;
21     // 为指针分配内存
22     ptr = new int;
23     *ptr = len;
24 }
25  
26 Line::Line(const Line &obj)
27 {
28     cout << "调用拷贝构造函数并为指针 ptr 分配内存" << endl;
29     ptr = new int;
30     *ptr = *obj.ptr; // 拷贝值
31 }
32  
33 Line::~Line(void)
34 {
35     cout << "释放内存" << endl;
36     delete ptr;
37 }
38 int Line::getLength( void )
39 {
40     return *ptr;
41 }
42  
43 void display(Line obj)
44 {
45    cout << "line 大小 : " << obj.getLength() <<endl;
46 }
47  
48 // 程序的主函数
49 int main( )
50 {
51    Line line1(10);
52  
53    Line line2 = line1; // 这里也调用了拷贝构造函数
54  
55    display(line1);
56    display(line2);
57  
58    return 0;
59 }

 

 执行结果:

调用构造函数
调用拷贝构造函数并为指针 ptr 分配内存
调用拷贝构造函数并为指针 ptr 分配内存
line 大小 : 10
释放内存
调用拷贝构造函数并为指针 ptr 分配内存
line 大小 : 10
释放内存
释放内存
释放内存

 

23、【C++基础】复制构造函数

标签:str   ace   amp   end   基础   names   拷贝构造   参数   编译器   

原文地址:https://www.cnblogs.com/Long-w/p/9675893.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!