4

我正在尝试使用地图将数据安全地归档,但我不知道如何。我想将学生的姓名和年龄保存到文件中,然后当我查找学生的姓名时,它应该显示他们的年龄。

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

using namespace std;

class student {
private:
    map<int, string> map;
public:
    void students(string name, int age);
};

void students(string name, int age) {
    if (age < 1) {
        cout << "You must enter a positive number." << endl;
        return;
    }
}

void main() {
    ofstream filemap;
    filemap.open("map.txt");
    int age;
    string name;
    cout << "Please enter the name : " << endl;
    cin >> name;
    cout << "Please enter the age : " << endl;
    cin >> age;

// code to save map to file 

    filemap.close();
}
4

2 回答 2

2

首先确定数据将如何以字节级别存储在文件中。例如,它可能是:

  1. 每个学生在文件中只占一行。

  2. 行由单个换行符分隔。

  3. 每行包含一个引号、学生姓名、引号、逗号和学生年龄。

然后,您需要编写代码以该格式输出并从该格式读取。请注意,如果名称包含引号,这将中断。

于 2012-12-10T14:29:35.400 回答
-1

你需要改进你的代码。将 getter 和 setter 添加到您的学生班级,因为现在无法写入班级内的地图。例如,添加一个方法,让您将学生信息推送到私人地图成员中。

然后我建议学习提升序列化:http: //www.boost.org/doc/libs/1_52_0/libs/serialization/doc/index.html

如果您想要更简单的方法,请了解 std::fstream 库。

于 2012-12-10T14:34:25.693 回答