第10.11-补充2-2

来源:互联网 发布:三菱plcfx3u编程手册 编辑:程序博客网 时间:2024/06/07 01:55
/*Copyright (c)2016,烟台大学计算机与控制工程学院 *All rights reserved. *文件名称:my.cpp *作    者:张瀚文 *完成日期:2016年5月21日 * * 问题描述:   1)字符串除了用C++扩充的string类型外,按C语言的传统,还可以用char 表示。   请将类声明中的string全部改为char 后,重新写一遍程序(此时的区别是,类中有指针成员,构造和析构函数需要考虑深复制的问题了。)*/#include<iostream>#include<cstring>using namespace std;class CPerson{protected:    char *m_szName;    char *m_szId;    int m_nSex;//0:women,1:man    int m_nAge;public:    CPerson(char *name,char *id,int sex,int age)    {        m_szName=new char[strlen(name)+1];        strcpy(m_szName,name);        m_szId=new char[strlen(id)+1];        strcpy(m_szId,id);        m_nSex=sex;        m_nAge=age;}    void Show1();    ~CPerson(){delete []m_szName ;delete []m_szId;}};void CPerson::Show1(){cout<<m_szName<<' '<<m_szId<<' ';if(m_nSex==0)cout<<"women";else if(m_nSex==1)cout<<"men";else cout<<"error";cout<<' '<<m_nAge;}class CEmployee:public CPerson{private:    char *m_szDepartment;    float m_Salary;public:    CEmployee(char *name,char *id,int sex,int age,char *department,float salary): CPerson(name,id,sex,age)    {          m_szDepartment=new char [strlen(department)+1];         strcpy(m_szDepartment,department);         m_Salary=salary;    }    void Show2();    ~CEmployee(){delete []m_szDepartment;}};void CEmployee::Show2(){    cout<<"name"<<"    "<<"id"<<' '<<"sex"<<' '<<"age"<<' '<<"department"<<' '<<"salary"<<endl;    Show1();    cout<<' '<<m_szDepartment<<' '<<m_Salary;    }int main(){    char name[10],id[19],department[10];    int sex,age;    float salary;    cout<<"input employee's name,id,sex(0:women,1:man),age,department,salary:\n";    cin>>name>>id>>sex>>age>>department>>salary;    CEmployee employee1(name,id,sex,age,department,salary);    employee1.Show2();    return 0;}

0 0
原创粉丝点击