gpt4 book ai didi

关于C++复制构造函数的实现讲解

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 25 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章关于C++复制构造函数的实现讲解由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

复制构造函数是一种特殊的构造函数,有一般构造函数的特性。它的功能是用一个已知的对象来初始化一个被创建的同类对象。复制构造函数的参数传递方式必须按引用来进行传递,请看实例:

?
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
#include <iostream>
#include <cstring>
using namespace std ;
class Student
{
  private :
  char name[8];
  int age ;
  char sex ;
  int score ;
  public :
  void disp(); //打印信息的函数声明
  Student( char name[], int age , char sex , int score); //构造函数声明
  Student(Student &dx); //复制构造函数的声明
  ~Student(); //析构函数的声明
};
//打印信息函数的实现
void Student::disp()
{
  cout << this ->name << endl ;
  cout << this ->age << endl ;
  cout << this ->sex << endl ;
  cout << this ->score << endl ;
}
//构造函数的实现
Student::Student( char name[], int age , char sex , int score)
{
  strcpy ( this ->name,name);
  this ->age = age ;
  this ->sex = sex ;
  this ->score = score ;
}
//复制构造函数的实现
Student::Student(Student &dx)
{
  strcpy ( this ->name , dx.name);
  this ->age = dx.age ;
  this ->sex = dx.sex ;
  this ->score = dx.score ;
}
//析构函数的实现
Student::~Student()
{
  cout << "程序结束" << endl ;
}
int main( void )
{
  Student stu1( "YYX" ,23, 'N' ,86);
  Student stu2(stu1);
  stu1.disp() ;
  stu2.disp() ;
  return 0 ;
}

运行结果:

YYX 23 N 86 YYX 23 N 86 程序结束 程序结束 。

总结 。

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对我的支持。如果你想了解更多相关内容请查看下面相关链接 。

原文链接:https://blog.csdn.net/morixinguan/article/details/74942130 。

最后此篇关于关于C++复制构造函数的实现讲解的文章就讲到这里了,如果你想了解更多关于关于C++复制构造函数的实现讲解的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com