第九周项目二 深复制函数(1)

/*copyright(c)2016.烟台大学计算机学院
 * All rights reserved,
 * 文件名称:text.Cpp
 * 作者:舒文超
 * 完成日期:2016年4月17日
 * 版本号:vc++6.0
 *
 * 问题描述:(1)阅读下面的程序,补足未完成的注释
 */
#include<iostream>
#include<cstring>
using namespace std;
class A
{
private:
    char *a;
public:
    A(char *aa)
    {
        a = new char[strlen(aa)+1];  //(a)这样处理的意义在于:(减少不必要的内存浪费)
        strcpy(a, aa);  //(b)数据成员a与形式参数aa的关系:(用aa来初始化a   ps:没太明白这个什么关系到底是什么意思  T.T)
    }
    ~A()
    {
        delete []a;   //(c)这样处理的意义在于: 使用完动态内存,及时释放,避免占用内存
    }
    void output()
    {
        cout<<a<<endl;
    }
};
int main()
{
    A a("good morning, code monkeys!");
    a.output();
    A b("good afternoon, codes!");
    b.output();
    return 0;
}


 

你可能感兴趣的:(第九周项目二 深复制函数(1))