C++ Primer Plus习题

C++ Primer Plus 第17章 输入、输出和文件 习题6

能读文件、显示所有数据

允许用户添加数据

数据类型包括:abstr_emp, employee, manager, fink, highfink
基类 abstr_emp
子类 employee, manager, fink, highfink


emp.h

// emp.h -- abstr_emp类及其子类的头文件
#ifndef EMP_H_  
#define EMP_H_  
#include <iostream>  
#include <fstream>  
#include <string>  
class abstr_emp
{
private:
    std::string fname;
    std::string lname;
    std::string job;
protected:
    const std::string &GetFname() const { return fname; }  // 取名字
    const std::string &GetLname() const { return lname; }  // 取姓氏
    const std::string &GetJob() const { return job; } // 取工作
    void SetFname() { std::cout << "Input Fname: "; std::getline(std::cin, fname); } //设置 名字、姓氏、工作
    void SetLname() { std::cout << "Input Lname: "; std::getline(std::cin, lname); }
    void SetJob() { std::cout << "Input Job: "; std::getline(std::cin, job); }
public:
    abstr_emp();
    abstr_emp(const std::string &fn, const std::string &ln, const std::string &j);
    abstr_emp(const abstr_emp &e);
    virtual void ShowAll() const;
    virtual void SetAll();
    virtual void WriteAll(std::ofstream &of);
    friend std::ostream &operator<<(std::ostream &os, const abstr_emp &e);
    virtual ~abstr_emp() = 0;
};

class employee : public abstr_emp
{
public:
    employee();
    employee(const std::string &fn, const std::string &ln, const std::string &j);
    ~employee() {}
    virtual void ShowAll() const;
    virtual void SetAll();
    virtual void WriteAll(std::ofstream &of);   // 为了将数据保存到文件中所设计的虚函数
};

class manager : virtual public abstr_emp
{
private:
    int inchargeof;
protected:
    int InChargeOf() const { return inchargeof; }
    int &InChargOf() { return inchargeof; }
    void SetInChargeOf() { std::cout << "Input InChargeOf: "; std::cin >> inchargeof; std::cin.get(); } // 设置InChargeOf
public:
    manager();
    manager(const std::string &fn, const std::string &ln, const std::string &j, int ico = 0);
    manager(const abstr_emp &e, int ico);
    manager(const manager &m);
    ~manager() {}
    virtual void ShowAll() const;
    virtual void SetAll();
    virtual void WriteAll(std::ofstream &of); // 为了将数据保存到文件中所设计的虚函数
};

class fink : virtual public abstr_emp
{
private:
    std::string reportsto;
protected:
    const std::string ReportsTo() const { return reportsto; }
    std::string &ReportsTo() { return reportsto; }
    void SetReportsto() { std::cout << "Input reportsto: "; std::getline(std::cin, reportsto); }
public:
    fink();
    fink(const std::string &fn, const std::string &ln, const std::string &j, const std::string &rpo);
    fink(const abstr_emp &e, const std::string &rpo);
    fink(const fink &e);
    ~fink() {}
    virtual void ShowAll() const;
    virtual void SetAll();
    virtual void WriteAll(std::ofstream &of);
};

class highfink : public manager, public fink
{
public:
    highfink();
    highfink(const std::string &fn, const std::string &ln, const std::string &j, const std::string &rpo, int ico);
    highfink(const abstr_emp &e, const std::string &rpo, int ico);
    highfink(const fink &f, int ico);
    highfink(const manager &m, const std::string &rpo);
    highfink(const highfink &h);
    ~highfink() {}
    virtual void ShowAll() const;
    virtual void SetAll();
    virtual void WriteAll(std::ofstream &of);
};

#endif

emp.cc

#include "emp.h"
// emp.h中定义的类中成员函数的实现
// abstr_emp
abstr_emp::abstr_emp() : fname("NULL"), lname("NULL"), job("NULL")
{
}

abstr_emp::abstr_emp(const std::string & fn, const std::string & ln, const std::string & j) : fname(fn), lname(ln), job(j)
{
}

abstr_emp::abstr_emp(const abstr_emp & e) : fname(e.fname), lname(e.lname), job(e.job)
{
}

void abstr_emp::ShowAll() const
{
    std::cout << "fname: " << GetFname() << std::endl;
    std::cout << "lname: " << GetLname() << std::endl;
    std::cout << "job: " << GetJob() << std::endl;
}

void abstr_emp::SetAll()
{
    SetFname();
    SetLname();
    SetJob();
}

void abstr_emp::WriteAll(std::ofstream & of)
{
    of << GetFname() << std::endl << GetLname() << std::endl << GetJob() << std::endl << std::endl;
}

std::ostream &operator<<(std::ostream &os, const abstr_emp &e)
{
    os << e.fname << ", " << e.lname << ", " << e.job;
    return os;
}

abstr_emp::~abstr_emp()
{
}

// employee
employee::employee() : abstr_emp()
{
}

employee::employee(const std::string & fn, const std::string & ln, const std::string & j) : abstr_emp(fn, ln, j)
{
}

void employee::ShowAll() const
{
    abstr_emp::ShowAll();
}

void employee::SetAll()
{
    abstr_emp::SetAll();
}

void employee::WriteAll(std::ofstream & of)
{
    of << "1" << std::endl;
    of << GetFname() << std::endl << GetLname() << std::endl << GetJob() << std::endl << std::endl;
}

// manager
manager::manager() : abstr_emp()
{
    inchargeof = 0;
}

manager::manager(const std::string & fn, const std::string & ln, const std::string & j, int ico) : abstr_emp(fn, ln, j)
{
    inchargeof = ico;
}

manager::manager(const abstr_emp & e, int ico) : abstr_emp(e)
{
    inchargeof = ico;
}

manager::manager(const manager & m) : abstr_emp((const abstr_emp &)m)
{
    inchargeof = m.inchargeof;
}

void manager::ShowAll() const
{
    abstr_emp::ShowAll();
    std::cout << "inchargeof: " << InChargeOf() << std::endl;
}

void manager::SetAll()
{
    abstr_emp::SetAll();
    SetInChargeOf();
}

void manager::WriteAll(std::ofstream & of)
{
    of << "2" << std::endl;
    of << GetFname() << std::endl;
    of << GetLname() << std::endl;
    of << GetJob() << std::endl;
    of << inchargeof << std::endl << std::endl;
}

// fink
fink::fink() : abstr_emp()
{
    reportsto = "NULL";
}

fink::fink(const std::string & fn, const std::string & ln, const std::string & j, const std::string & rpo) : abstr_emp(fn, ln, j)
{
    reportsto = rpo;
}

fink::fink(const abstr_emp & e, const std::string & rpo) : abstr_emp(e)
{
    reportsto = rpo;
}

fink::fink(const fink & e) : abstr_emp((const abstr_emp &)e)
{
    reportsto = e.reportsto;
}

void fink::ShowAll() const
{
    abstr_emp::ShowAll();
    std::cout << "reportsto" << ReportsTo() << std::endl;
}

void fink::SetAll()
{
    abstr_emp::SetAll();
    SetReportsto();
}

void fink::WriteAll(std::ofstream & of)
{
    of << "3" << std::endl;
    of << GetFname() << std::endl;
    of << GetLname() << std::endl;
    of << GetJob() << std::endl;
    of << reportsto << std::endl;
}

// highfink
highfink::highfink() : abstr_emp(), manager(), fink()
{
}

highfink::highfink(const std::string & fn, const std::string & ln, const std::string & j, const std::string & rpo, int ico) : abstr_emp(fn, ln, j), manager(fn, ln, j, ico), fink(fn, ln, j, rpo)
{
}

highfink::highfink(const abstr_emp & e, const std::string & rpo, int ico) : abstr_emp(e), manager(e, ico), fink(e, rpo)
{
}

highfink::highfink(const fink & f, int ico) : abstr_emp((const abstr_emp &)f), manager((const abstr_emp &)f, ico), fink(f)
{
}

highfink::highfink(const manager & m, const std::string & rpo) : abstr_emp((const abstr_emp &)m), manager(m), fink((const abstr_emp &)m, rpo)
{
}

highfink::highfink(const highfink & h) : abstr_emp((const abstr_emp &)h), manager((const manager &)h), fink((const fink &)h)
{
}

void highfink::ShowAll() const
{
    abstr_emp::ShowAll();
    std::cout << "inchargeof: " << InChargeOf() << std::endl;
    std::cout << "reportsto: " << ReportsTo() << std::endl;
}

void highfink::SetAll()
{
    abstr_emp::SetAll();
    manager::SetInChargeOf();
    fink::SetReportsto();
}

void highfink::WriteAll(std::ofstream & of)
{
    of << "4" << std::endl;
    of << GetFname() << std::endl;
    of << GetLname() << std::endl;
    of << GetJob() << std::endl;
    of << InChargeOf() << std::endl;
    of << ReportsTo() << std::endl << std::endl;
}

main.cc

// main.cpp
#include "emp.h"

const char *FileName = "1.txt";

int main(){
    std::ifstream fin;
    do {
        fin.clear();
        fin.open(FileName);
        if (fin.is_open()) {
            std::cout << "当前文件" << FileName << "内容:\n";
            int count = 0;
            std::string str;
            while (std::getline(fin, str)) {
                abstr_emp *ptr = NULL;
                if (str == "1") {
                    // 按行读入数据,分别传给名、姓、工作
                    std::string fname, lname, job;
                    std::getline(fin, fname);
                    std::getline(fin, lname);
                    std::getline(fin, job);
                    // 构造为employee类
                    ptr = new employee(fname, lname, job);
                    ptr->ShowAll(); // 显示出来
                }
                else if (str == "2"){
                    std::string fname, lname, job, inchargeof;
                    std::getline(fin, fname);
                    std::getline(fin, lname);
                    std::getline(fin, job);
                    std::getline(fin, inchargeof);

                    ptr = new manager(fname, lname, job, atoi(inchargeof.c_str()));
                    ptr->ShowAll();
                }
                else if (str == "3")
                {
                    std::string fname, lname, job, reportsto;
                    std::getline(fin, fname);
                    std::getline(fin, lname);
                    std::getline(fin, job);
                    std::getline(fin, reportsto);

                    ptr = new fink(fname, lname, job, reportsto);
                    ptr->ShowAll();
                }
                else
                {
                    std::string fname, lname, job, inchargeof, reportsto;
                    std::getline(fin, fname);
                    std::getline(fin, lname);
                    std::getline(fin, job);
                    std::getline(fin, inchargeof);
                    std::getline(fin, reportsto);

                    ptr = new highfink(fname, lname, job, reportsto, atoi(inchargeof.c_str()));
                    ptr->ShowAll();
                }
                std::getline(fin, str);
            }
            fin.close();
        }

        std::ofstream fout(FileName, std::ios::out | std::ios::app); //附加信息
        if (!fout.is_open())
        {
            std::cerr << "Can't open " << FileName << " file for output.\n";
            exit(EXIT_FAILURE);
        }

        abstr_emp *ptr = NULL;
        std::cout << "选择要生成的类型:\n";
        std::cout << "1、employee\t2、manager\n3、fink\t4、highfink\n";
        int ans;
        std::cin >> ans;
        std::cin.get();
        switch (ans)
        {
            // 按选择的类型建立对应的类指针
        case 1:
            ptr = new employee;
            break;
        case 2:
            ptr = new manager;
            break;
        case 3:
            ptr = new fink;
            break;
        case 4:
            ptr = new highfink;
            break;
        default:
            break;
        }
        ptr->SetAll();  // 提示用户输入
        ptr->WriteAll(fout); // 输出内容到文件

        char ch;
        std::cout << "继续?<y/n>: ";
        std::cin >> ch;
        std::cin.get();
        if (ch == 'n')
            break;
    } while (true);

    fin.close();
    return 0;
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,236评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,867评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,715评论 0 340
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,899评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,895评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,733评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,085评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,722评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,025评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,696评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,816评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,447评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,057评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,009评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,254评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,204评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,561评论 2 343

推荐阅读更多精彩内容