第9周深复制体验3

代码:

/*
*Copyright (c) 2016, 烟台大学计算机与控制工程学院
*All rights reserved.
*文件名称:main.cpp;
*作    者:岳成艳;
*完成日期:2015年5月3号;
*版 本 号:vc++6.0;
*
*问题描述:略。
*程序输入:无;
*程序输出:见运行测试;
*/
#include<iostream>
#include<cstring>
using namespace std;
class A
{
private:
    char *a;
public:
    A(char *aa)
    {
        a = new char[strlen(aa)+1];
        strcpy(a, aa);
    }
    ~A()
    {
        delete []a;
    }
    void output() { cout<<a<<endl; }
    A(A&p)
    {

        a=new char[strlen(p.a)+1];
         strcpy(a,p.a);
    }
};
int main()
{
    A a("good morning, code monkeys!");
    a.output();
    A b(a);
    b.output();
    return 0;
}

运行测试:

第9周深复制体验3_第1张图片

你可能感兴趣的:(编程,C++,vc++6.0)