第七周 牛刀小试

/* 
* 程序的版权和版本声明部分: 
* Copyright (c) 2013, 烟台大学计算机学院 
* All rights reserved. 
* 文件名称:test.cpp 
* 作    者:赵焱 
* 完成日期:2014 年 4月 10日 
* 版 本 号:v1.0 
* 对任务及求解方法的描述部分: 
* 输入描述:无 
* 问题描述: 
*/  

#include<iostream>
#include<cstring>
using namespace std;
class A
{
private:
    char *a;
public:
    A(char *aa)
    {
        a = new char[strlen(aa)+1];//(1)这样处理的意义在于:\0要占用空间
        strcpy(a,aa);//(2)数据成员a与形式参数aa的关系:将aa的值复制给a
    }
    A(A &b)
    {
        a = new char[strlen(b.a)+1];
        strcpy(a,b.a);
    }
    ~A()
    {
        delete []a;//(3)这样处理的意义在于:释放空间
    }
    void output()
    {
        cout<<a<<endl;
    }
};
int main(){
    A a("good morning, code monkeys!");
    a.output();
    A b(a);
    b.output();
    return 0;
}

你可能感兴趣的:(第七周 牛刀小试)