/*
* Copyright (c) 2014, 烟台大学计算机学院
* All rights reserved.
* 文件名称:test.cpp
* 作 者:呼亚萍
* 完成日期:2015年4月12日
* 版 本 号:v1.0
*
* 问题描述:为类A增加复制构造函数,用main函数进行检测
* 程序输入:相应的程序
* 程序输出:对应得结果
*/
#include<iostream>
#include<cstring>
using namespace std;
class A
{
public:
A(char *aa)
{
a=new char[strlen(aa)+1];
strcpy(a,aa);//数据成员a与形式参数aa的关系:把aa所指向的字符串复制到a指向的内存空间
}
~A()
{
delete []a;//这样处理的意义在于:释放空间,提高效率
}
A(A &b)
{
a=new char[strlen(b.a)+1];
strcpy(a,b.a);
}
void output()
{
cout<<a<<endl;
}
private:
char *a;
};
int main()
{
A a("good morning,code monkeys!");
a.output();
A b(a);
b.output();
return 0;
}
运算结果:
知识点总结:
复制构造函数的声明是:A(A &b)
学习心得:
新旧知识的结合,很好!