问题及代码:
/*
*Copyright (c)2015,烟台大学计算机与控制工程学院
*All rights reserved.
*文件名称:strcpy.cpp
*作 者:单昕昕
*完成日期:2015年4月11日
*版 本 号:v1.0
*
*问题描述:深复制体验
*程序输入:无。
*程序输出:复制后的字符串。
*/
#include<iostream>
#include<cstring>
using namespace std;
class A
{
private:
char *a;
public:
A(char *aa)
{
a = new char[strlen(aa)+1];
//根据aa的长度为a分配空间,“+1”是因为字符串最后以“\0”作为结束
strcpy(a, aa);
}
~A()
{
delete []a;
}
void output()
{
cout<<a<<endl;
}
};
int main(){
A a("good morning, code monkeys!");
a.output();
A b("good afternoon, codes!");
b.output();
return 0;
}
运行结果:
知识点总结:
深复制与指针。
学习心得:
a数据成员所占用的存储空间要在aa长度基础上加。
若指针a不是指向字符(即不作为字符串的地址),没有必要加1。