10.13 作业

/*  封装一个学生的类, 定义一个学生类的vector容器, 里面存放学生对象(至少3个)
    再把该容器中的对象保存到文件中
    再把这些学生从文件中读取出来, 放入另一个容器中并且遍历输出该容器里的学生 */
#include <iostream>
#include <vector>
#include <fstream>

using namespace std;

class Student
{
    friend ifstream &operator>>(ifstream &ifs, Student &stu);
    friend ofstream &operator<<(ofstream &ofs, const Student &stu);
    friend ostream &operator<<(ostream &cout, const Student &stu);

private:
    string name;
    int age;

public:
    Student() {}
    Student(string n, int a) : name(n), age(a) {}
};

ofstream &operator<<(ofstream &ofs, const Student &stu)
{
    ofs << "姓名: " << stu.name << " 年龄: " << stu.age << endl;
    return ofs;
}

ostream &operator<<(ostream &cout, const Student &stu)
{
    cout << "姓名: " << stu.name << " 年龄: " << stu.age << endl;
    return cout;
}

ifstream &operator>>(ifstream &ifs, Student &stu)
{
    char buf[50];
    ifs >> buf >> stu.name >> buf >> stu.age;
    return ifs;
}

int main()
{
    vector<Student> v;
    v.push_back(Student("张三", 18));
    v.push_back(Student("李四", 17));
    v.push_back(Student("王五", 20));

    ofstream ofs;                                   // 创建写类流对象
    ofs.open("D:/HQYJ/C++_code/stu.txt", ios::out); // 打开文件
    vector<Student>::iterator i;                    // 迭代器
    for (i = v.begin(); i != v.end(); i++)          // 写入数据
    {
        ofs << *i;
    }
    ofs.close(); // 关闭文件

    ifstream ifs;                                  // 创建读类流对象
    ifs.open("D:/HQYJ/C++_code/stu.txt", ios::in); // 打开文件
    vector<Student> vv;
    Student stu;
    while (ifs >> stu)
    {
        vv.push_back(stu);
    }
    ifs.close(); // 关闭文件

    for (i = vv.begin(); i != vv.end(); i++)
    {
        cout << *i;
    }

    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值