C++day7模板、异常、auto关键字、lambda表达式、数据类型转换、STL、list、文件操作

作业

封装一个学生的类,定义一个学生这样类的vector容器, 里面存放学生对象(至少3个)

再把该容器中的对象,保存到文件中。

再把这些学生从文件中读取出来,放入另一个容器中并且遍历输出该容器里的学生。

复制代码
#include <iostream>
#include <vector>
#include <fstream>
using namespace std;

class Stu
{
    friend ifstream & operator>>(ifstream &cin,Stu &s);
    friend ofstream & operator<<(ofstream &cout,Stu &s);
    friend ostream & operator<<(ostream &cout,Stu &s);
private:
    string name;
    int age;
public:
    Stu(){}
    Stu(string n,int a):name(n),age(a)
    {}
};

ostream & operator<<(ostream &cout,Stu &s)
{
    cout << s.name;
    cout << s.age << endl;
    return cout;
}
ofstream & operator<<(ofstream &cout,Stu &s)
{
    cout << s.name << "\t" << s.age << endl;
    return cout;
}
ifstream & operator>>(ifstream &cin,Stu &s)
{
    cin >> s.name;
    cin >> s.age;
    return cin;
}
int main()
{
//    ofstream ofs;
//    ofs.open("E:/CFHD/1.txt",ios::out);
//    vector<Stu> v;
//    Stu a("zhangsan",18);
//    Stu b("lisi",20);
//    Stu c("wangwu",22);
//    v.push_back(a);
//    v.push_back(b);
//    v.push_back(c);
//    for(int i = 0;i<3;i++)
//    {
//        ofs << v.at(i);
//    }
//    ofs.close();
    ifstream ifs;
    ifs.open("E:/CFHD/1.txt",ios::in);
    vector<Stu> v;
    vector<Stu>::iterator iter;
    Stu s;
    int i = 0;
    while(ifs >> s)
    {
        iter = v.begin()+i;
        v.push_back(s);
        i++;
    }
    for(iter = v.begin();iter != v.end();iter++)
    {
        cout << *iter ;
    }
    ifs.close();

    return 0;
}

把list的相关函数都实现出来

复制代码
#include <iostream>
#include <list>
using namespace std;

void P(list<int> &l)
{
    list<int>::iterator iter;
    for(iter = l.begin();iter != l.end();iter++)
    {
        cout << *iter << " ";
    }
    cout << endl;
}
int main()
{
    list<int> lst1;
    for(int i = 0;i<5;i++)
    {
        lst1.push_back(i);
    }
    P(lst1);
    list<int> lst2(lst1.begin(),lst1.end());
    P(lst2);
    list<int> lst3(3,8);
    P(lst3);
    list<int> lst4;
    lst4.assign(lst1.begin(),lst1.end());
    P(lst4);
    cout<<"front = "<<lst2.front()<<endl;
    cout<<"back = "<<lst2.back()<<endl;
    if(!lst1.empty())
    {
        cout << "sz= " << lst1.size() << endl;
        lst1.resize(15,2);
        cout << "sz= " << lst1.size() << endl;
        P(lst1);
    }
    lst1.erase(lst1.begin(),lst1.end());
    P(lst1);
    cout << "sz= " << lst1.size() << endl;

    return 0;
}

思维导图

相关推荐
froginwe113 分钟前
Web 品质国际化
开发语言
亮子AI4 分钟前
【Svelte】怎样实现一个图片上传功能?
开发语言·前端·javascript·svelte
shehuiyuelaiyuehao5 分钟前
7类和对象
java·开发语言
落羽的落羽6 分钟前
【C++】深入浅出“图”——图的基本概念与存储结构
服务器·开发语言·数据结构·c++·人工智能·机器学习·图搜索算法
bugcome_com7 分钟前
C# 中 Overload(重载)与 Override(重写)的核心区别与实战解析
开发语言·c#
巴塞罗那的风13 分钟前
从蓝图到执行:智能体中的“战略家思维
开发语言·后端·ai·语言模型·golang
JAVA+C语言16 分钟前
Python新手学习
开发语言·python·学习
六bring个六25 分钟前
文件工具类(一)
开发语言·文件操作工具类
Matlab光学1 小时前
MATLAB仿真:离轴干涉法实现光学全息加密与解密
开发语言·matlab
小鸡吃米…1 小时前
Python - JSON
开发语言·python·json