继承的类不会写入文件

Inherited classes won't write to file

本文关键字:文件 继承      更新时间:2023-10-16

因此,我的继承类在将项写入文件时遇到问题。我将发布一个代码示例,因为它有多个实例,而且它不会将这些特定项目写入文件。我不确定我做错了什么,把父类中的所有内容都写在一个文件中,但子类中的内容不会写。这一部分已经在每个儿童班中完成:

//Parameterized constructor signature
Hourly::Hourly(int e, string n, string a, string p, double w, double h) :MyEmployee(e, n, a, p)

这是没有标题的驱动程序。

string fileInput;
    string employCategory = "";
    const string HOURLY = "Hourly";
    const string SALARIED = "Salaried";
    int answer;
    int count = 0;
    const int ONE = 1;
    const int TWO = 2;
    const int ARRAY_SIZE = 4;
    MyEmployee* payroll[ARRAY_SIZE];
    ifstream myOpenFile;
    ofstream myWrittenFile;
    payroll[0] = new Hourly(1, "H. Potter", "Privet Drive", "201-9090", 40, 12.00);
    payroll[1] = new Hourly(3, "R. Weasley", "The Burrow", "892-2000", 40, 10.00);
    payroll[2] = new Salaried(2, "A. Dumbledore", "Hogwarts", "803-1230", 1200);
    payroll[3] = new Salaried(4, "R. Hagrid", "Hogwarts", "910-8765", 1000);
    cout << "This program has two options:n1 - Create a data filen2 - Read data from a file and print paychecks.";
    //This loop will test if the user's input is valid.
    do
    {
        //Here, the user will enter a value to be used to either print checks or write a file.
        cout << "nPlease enter <1> to create a file or <2> to print checks: ";
        cin >> answer;
        //The user entered one, so we'll write a file.
        if (answer == ONE)
        {
            cin.sync();
            cin.clear();
            cout << "nPlease enter in the name of the file you wish to write to. Please don't forget to add .txt to the end: ";
            getline(cin, fileInput);
            myWrittenFile.open(fileInput);
            for (int i = 0; i < ARRAY_SIZE; i++)
            {
                MyEmployee* empPtr = payroll[i];
                if (typeid(*empPtr) == typeid(Hourly))
                {
                    Hourly* empHPtr = static_cast<Hourly*>(empPtr);
                }
                else if (typeid(*empPtr) == typeid(Salaried))
                {
                    Salaried* empSPtr = static_cast<Salaried*>(empPtr);
                }
            }
            for (int i = 0; i < ARRAY_SIZE; i++)
            {
                payroll[i]->writeData(myWrittenFile);
            }
            myWrittenFile.close();
            cout << "nData saved .....";
            for (int i = 0; i < ARRAY_SIZE; i++)
            {
                delete payroll[i];
                payroll[i] = NULL;
            }

}

这是父类的一部分,其中包括写入文件:

void MyEmployee::writeData(ofstream& out)
{
    out << empNum << "n";
    out << name << "n";
    out << address << "n";
    out << phoneNum << "n";
}

这是儿童班的一部分:

void Hourly::writeData(ofstream& out)
{
    out << hoursWorked << "n";
    out << wage << "n";
    MyEmployee::writeData(out);
}

似乎是因为您的writeData()函数未声明为虚拟函数。

当一个函数被声明为虚拟函数并在派生类中被覆盖时,它将在运行时计算该函数必须被精确调用的内容。(虚拟方法表)。

您的函数未声明为虚拟函数,因此从MyEmployee指针调用它时,您将调用在MyEmployee类中定义的writeData()函数,而不是在其派生类中。这就是为什么它不将派生类中的任何数据写入文件的原因。

PS:

typeid(*empPtr) == typeid(Hourly)
typeid(*empPtr) == typeid(Salaried)

这些表达式将始终是false