首页 > 编程语言 > 详细

C++中for循环遍历容器

时间:2021-05-01 09:07:36      阅读:33      评论:0      收藏:0      [点我收藏+]

基于范围的for循环

#include <iostream>
#include <algorithm>  
#include <vector>  
using namespace std;

vector<int> my_array = { 1, 2, 3, 4, 5 };

方式一:原始方法

for (int x = 0; x < my_array.size(); x++)
    {
        my_array[x] *= 2;
        cout << my_array[x] << endl;
    }

方式二:用迭代器

for (auto it = my_array.begin(); it != my_array.end(); ++it)
    
    {
            *it *= 2;
            cout << *it << endl;
    }

方式三:C++11特性,加&可以修改vector中的元素

vector<int> my_array = { 1, 2, 3, 4, 5 };
    // 每个数组元素乘于 2
    for (int &x : my_array)
    {
        x*= 2;
        cout<<x<<endl;
    }

方式四:无&只能输出vector中的元素,不能修改

vector<int> my_array = { 1, 2, 3, 4, 5 };
    // 每个数组元素乘于 2
    for (int x : my_array)
    {    
        cout<<x<<endl;
    }

方式五:auto自动推断类型

 for (auto &x : my_array) {
        x *= 2;
        cout<<x<<endl;
    }
————————————————
版权声明:本文为CSDN博主「hanshihao1336295654」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/hanshihao1336295654/article/details/82751155/

C++中for循环遍历容器

原文:https://www.cnblogs.com/FrostyForest/p/14723680.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!