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;
}

思维导图

相关推荐
勤奋的知更鸟7 分钟前
Java性能测试工具列举
java·开发语言·测试工具
YuTaoShao20 分钟前
Java八股文——JVM「类加载篇」
java·开发语言·jvm
a.30226 分钟前
蓝桥杯等竞赛场景下 C++ 的时间与空间复杂度深度解析
c++·蓝桥杯
StackOverthink26 分钟前
[特殊字符] Altair:用Python说话,让数据自己讲故事!!!
开发语言·python·其他·信息可视化
爱玩电脑的L37 分钟前
javaee初阶-多线程
java·开发语言·jvm
水饺编程1 小时前
MFC 第一章概述
c语言·c++·windows·mfc
qq_527887871 小时前
ImportError: cannot import name ‘PfeifferConfig‘ from ‘transformers‘【已解决】
linux·开发语言·python
开开心心就好1 小时前
Word批量转PDF工具
开发语言·人工智能·pdf·c#·vim·excel·语音识别
在半岛铁盒里1 小时前
代码填空题技术实现:突破 highlight.js 安全限制的工程实践
开发语言·javascript·highlight
秃然想通2 小时前
C语言——深入解析字符串函数与其模拟实现
c语言·开发语言