1. 程式人生 > >第十一週上機實踐專案——職員有薪水了(拓展)

第十一週上機實踐專案——職員有薪水了(拓展)

/*
*程式的版權和版本宣告部分:
*Copyright(c)2013,煙臺大學計算機學院學生
*All rights reserved.
*檔名稱:職員有薪水了 
*作者:劉中林
*完成日期:2014年5月11日
*版本號:v0.1
*對任務及求解方法的描述部分:
*輸入描述:輸入所需的資訊 
*問題描述: 定義一個名為CPerson的類,有以下私有成員:姓名、身份證號、性別和年齡,成員函式:建構函式、解構函式、輸出資訊的函式。
           並在此基礎上派生出CEmployee類,派生類CEmployee增加了兩個新的資料成員,分別用於表示部門和薪水。要求派生類CEmployee
           的建構函式顯示呼叫基類CPerson的建構函式,併為派生類CEmployee定義解構函式,定義輸出資訊的函式。
*程式輸入:輸入所需的資訊
*程式輸出: 
*問題分析:無
*演算法設計:派生類 
*我的程式:
*/
#include <iostream>
#include <string> 
#include <iomanip>
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;
    }
};
class CEmployee:public CPerson
{
private:
    char *m_szDepartment;
    double m_Salary;
public:
    CEmployee(char *name,char *id,int sex,int age,char *department,double salary);
    void Show2();
    ~CEmployee()
	{
		delete [ ]m_szDepartment;
	}
};
void CPerson::Show1()
{
    cout<<setw(10)<<m_szName<<setw(25)<<m_szId;
    if(m_nSex==0)
        cout<<setw(7)<<"women";
    else
        cout<<setw(7)<<"man";
    cout<<setw(5)<<m_nAge<<endl;
}
CEmployee::CEmployee(char *name,char *id,int sex,int age,char *department,double 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;
    if(m_nSex==0)
        cout<<setw(7)<<"women";
    else
        cout<<setw(7)<<"man";
    cout<<setw(5)<<m_nAge;
    //由於基類CPerson的成員變數採用了protected屬性,因此可採用上述述程式碼實現,否則若
    //基類CPerson的成員變數採用了privated屬性,則只能使用CPerson::Show();實現
    cout<<setw(12)<<m_szDepartment<<setw(10)<<m_Salary<<endl;
}
int main()
{
    char name[20],id[20],department[20];
    int sex,age;
    double 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;
}


*樣例輸出:

*心得體會:安慰的淘汰。。