如何将STL映射保存到文件C ++

时间:2012-12-10 14:27:14

标签: c++ map fstream

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

#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();
}

2 个答案:

答案 0 :(得分:2)

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

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

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

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

  4. 然后,您需要编写以该格式输出的代码并从该格式读入。请注意,如果名称包含引号,则会中断。

答案 1 :(得分:-1)

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

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

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