C++中for循环遍历容器

11 篇文章 3 订阅

原文地址:https://blog.csdn.net/hanshihao1336295654/article/details/82751155

基于范围的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;
    }
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值