1. 程式人生 > >第十一週專案二發工資啦(2)

第十一週專案二發工資啦(2)

/*
* 程式的版權和版本宣告部分
* Copyright (c)2014, 煙臺大學計算機學院學生
* All rightsreserved.
* 檔名稱:student .cpp
* 作者:紀麗娜
* 完成日期:2014年5月7日
* 版本號: v1.0
* 問題描述:
定義一個名為CPerson的類,
有以下私有成員:姓名、身份證號、性別和年齡,
成員函式:建構函式、解構函式、輸出資訊的函式。
並在此基礎上派生出CEmployee類,
派生類CEmployee增加了兩個新的資料成員,
分別用於表示部門和薪水。
要求派生類CEmployee的建構函式顯示呼叫基類CPerson的建構函式,
併為派生類CEmployee定義解構函式,定義輸出資訊的函式。
字串除了用C++擴充的string型別外,按C語言的傳統,還用char *表示。
請將類宣告中的string全部改為char *後,重新寫一遍程式(此時的區別是,
類中有指標成員,構造和解構函式需要考慮深複製的問題了。)
*/
#include <iostream>
#include <string.h>  //求字元長度的
#include <iomanip> //setw的標頭檔案
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);
    void Show1();
    ~CPerson()
    {
     delete [ ]m_szName;  //有new的才需要delete來釋放
     delete [ ]m_szId;
    }
};

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);
    void Show2();
    ~CEmployee()
    {
    delete [ ]m_szDepartment;
    }
};
CPerson::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 CPerson::Show1()
{
    cout<<setw(10)<<m_szName<<setw(25)<<m_szId<<setw(7);	//setw:設定輸出資料的寬度,使用時應#include <iomanip.h>
    (m_nSex==0)?cout<<"women":cout<<"man";
    cout<<setw(5)<<m_nAge<<endl;
}
CEmployee::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 CEmployee::Show2()//注意派生類輸出函式應輸出所有成員變數(含基類繼承的成員變數)的值
{
    cout<<setw(10)<<"name"<<setw(25)<<"id"<<setw(7)<<"sex"<<setw(5)<<"age"<<setw(12)<<"department"<<setw(10)<<"salary"<<endl;
    cout<<setw(10)<<m_szName<<setw(25)<<m_szId<<setw(7);
    (m_nSex==0)?cout<<"women":cout<<"man";
    cout<<setw(5)<<m_nAge;
    cout<<setw(12)<<m_szDepartment<<setw(10)<<m_Salary<<endl;
}
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;
}


心得:string型別的可以直接A=B,char型別的要加string.h的標頭檔案,用複製,和求長度來做!!!!!!