for(auto i: )值不改变

Posted hulian425

tags:

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

int main()
{
    

    vector<int> a;
    a.push_back(1);
    a.push_back(2);
    for (auto &i : a) // 加上引用是安全的写法
    {
        i = 3;
        cout << i << endl;
    }
    for (auto i:a)
    {
        cout << i << endl;
    }
}

其他资料 https://zh.cppreference.com/w/cpp/language/range-for

以上是关于for(auto i: )值不改变的主要内容,如果未能解决你的问题,请参考以下文章

for(auto i : v)遍历容器元素

以下代码片段的算法复杂度

C语言简单习题:auto int b=0 。。。。

js 常用代码片段

这个代码片段究竟做了啥?

水平居中设置