c++ - getline 错误

标签 c++ visual-c++ visual-studio-2012 getline

我在这里遇到错误,我不确定为什么,我是 c++ 的新手,如果您可以查看我的其余代码,以确保一切正常,那就太好了。

我在这两行上遇到错误。

getline(in, e.first, ',');
getline(in, e.last, ',');

说 Employee 类没有成员 First,我知道它不在那个函数中,我该如何解决?

这是我的其余代码。

#include <iostream>
#include <string>
#include <fstream>

using namespace std;

struct Person {
    string first;
    string last;
};

struct Address {
    string street;
    string city;
    string state;
    string zipcode;
};

struct Employee {
    Person name;
    Address homeAddress;
    int eid;
};

void readEmployee(istream& in, Employee& e);
void displayEmployee(ostream& out, const Employee& e);

int main(int argc, const char* argv[]) {
    Employee e[50];

    ifstream fin;
    ofstream fout;

    fin.open("employeesIn.txt");

    if (!fin.is_open()) {
        cerr << "Error opening employeesIn.txt for reading." << endl;
        exit(1);
    }
    fout.open("employeesOut.txt");
    if (!fout.is_open()) {
        cerr << "Error opening employeesOut.txt for writing." << endl;
        exit(1);
    }
    int EmployeePopulation = 0;
    readEmployee(fin, e[EmployeePopulation]);
    while (!fin.eof()) {
        EmployeePopulation++;
        readEmployee(fin, e[EmployeePopulation]);
    }
    fin.close();
    for (int i = 0; i <= EmployeePopulation - 1; i++) {
        displayEmployee(fout, e[i]);
    }

    fout.close();

    cout << endl;

    return 0;
}

void readEmployee(istream& in, Employee& e) {
    string cidText;
    if (getline(in, cidText, ',')) {
        e.eid = stoi(cidText);

        getline(in, e.first, ',');
        getline(in, e.last, ',');

        getline(in, e.homeAddress.street, ',');
        getline(in, e.homeAddress.city, ',');
        getline(in, e.homeAddress.state, ',');

        string zipcodeText;
        getline(in, zipcodeText, ',');
        e.homeAddress.zipcode = stoi(zipcodeText);
    }
}

最佳答案

我们如何将 Person 结构重命名为 Name 结构?
(毕竟它只包含firstlast。)
这会给我们这个:

struct Name {
    string first;
    string last;
}; 

那么现在的 Employee 是什么样子的呢?
它看起来像这样:

+-------------+
|  Employee   |
|             |
| +---------+ |
| |  Name   | |
| +---------+ |
|             |
| +---------+ |
| | Address | |
| +---------+ |
|             |
+-------------+

NameEmployee 的一部分,但是firstlast 在哪里?它们是名称的一部分。
这是同一张图片,只是它更深入地向您展示了第一最后:

+---------------+
|   Employee    |
|               |
| +-----------+ |
| |   Name    | |
| |           | |
| | +-------+ | |
| | | first | | |
| | +-------+ | |
| |           | |
| | +-------+ | |
| | | last  | | |
| | +-------+ | |
| |           | |
| +-----------+ |
|               |
|  +---------+  |
|  | Address |  |
|  +---------+  |
|               |
+---------------+

您需要使用两个点运算符 ('.') 来访问firstlast,因为它们的深度是两倍。

Employee e;
e.name.first = "Joe";

您的代码已重构以反射(reflect)这些更改:

#include <iostream>
#include <string>
#include <fstream>

using namespace std;

struct Name {
    string first;
    string last;
};

struct Address {
    string street;
    string city;
    string state;
    string zipcode;
};

struct Employee {
    Name name;
    Address homeAddress;
    int eid;
};

void readEmployee(istream& in, Employee& e);
void displayEmployee(ostream& out, const Employee& e);

int main(int argc, const char* argv[]) {
    Employee e[50];

    ifstream fin;
    ofstream fout;

    fin.open("employeesIn.txt");

    if (!fin.is_open()) {
        cerr << "Error opening employeesIn.txt for reading." << endl;
        exit(1);
    }
    fout.open("employeesOut.txt");
    if (!fout.is_open()) {
        cerr << "Error opening employeesOut.txt for writing." << endl;
        exit(1);
    }
    int EmployeePopulation = 0;
    readEmployee(fin, e[EmployeePopulation]);
    while (!fin.eof()) {
        EmployeePopulation++;
        readEmployee(fin, e[EmployeePopulation]);
    }
    fin.close();
    for (int i = 0; i <= EmployeePopulation - 1; i++) {
        displayEmployee(fout, e[i]);
    }

    fout.close();

    cout << endl;

    return 0;
}

void readEmployee(istream& in, Employee& e) {
    string cidText;
    if (getline(in, cidText, ',')) {
        e.eid = stoi(cidText);

        getline(in, e.name.first, ',');
        getline(in, e.name.last, ',');

        getline(in, e.homeAddress.street, ',');
        getline(in, e.homeAddress.city, ',');
        getline(in, e.homeAddress.state, ',');

        string zipcodeText;
        getline(in, zipcodeText, ',');
        e.homeAddress.zipcode = stoi(zipcodeText);
    }
}
void displayEmployee(ostream& out, const Employee& e){

  //you can access the specific name values this way:
  cout <<  e.name.first << " " << e.name.last << endl;

  return;
}

关于c++ - getline 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25458254/

相关文章:

c++ - 为什么不同类型的不同参数改变位置后仍然可以编译/运行?

C++函数指针问题

c++ - 在 C++ 中查找多个 4 的总和

visual-c++ - 从 exe 加载 exe

javascript - 在 MetroApps 中创建另一个 ItemTemplate?

node.js - 使用 Visual Studio 与 cordova 开发混合应用

c++ - 128位变量运算

graphics - D3DERR_OUTOFVIDEOMEMORY 和 E_OUTOFMEMORY 有什么区别

c++ - std::vector<bool>::resize 的最终默认参数是标准的吗?

c++ - 由于 Visual Studio 2012 中缺少 std::isnan,Qt 构建失败