第9周深复制体验2

代码:

/*
*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没有指向的地址,就成了野指针
        //当然有必要加1,因为aa字符串的最后一个字符是"\0"不算入长度内,所以加1
        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;
}


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