迭代器

Posted bananaa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了迭代器相关的知识,希望对你有一定的参考价值。

1.基本操作

#include<iostream>
#include<string>
#include<fstream>
#include<vector>
#include<map>
#include<set>
#include<list>
#include<sstream>
#include<algorithm>
using namespace std;
//

int main(int argc,char *argv[]){
    string line;
    vector<string>v;
    while (getline(cin, line)){
        v.push_back(line);
        for (auto i = v.begin(); i != v.end() && !i->empty(); i++){
            for (auto &c : *i)
                c = toupper(c);
            cout << *i<< endl;
        }
    }
    system("pause");
    return 0;
}

 

以上是关于迭代器的主要内容,如果未能解决你的问题,请参考以下文章

VSCode自定义代码片段6——CSS选择器

行历史查看器 - Git

持久片段和查看器

损坏的顶点和片段着色器

python使用上下文对代码片段进行计时,非装饰器

设计模式迭代器模式 ( 简介 | 适用场景 | 优缺点 | 代码示例 )