gpt4 book ai didi

c++ - 如何使用基于范围的 for 循环修改 map 中的值?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:50:04 29 4
gpt4 key购买 nike

我有一个基于范围的 for 循环来迭代 foobar 中的元素,如下所示:

#include <map>
#include <iostream>

int main()
{
std::map<int, int> foobar({{1,1}, {2,2}, {3,3}});

for(auto p : foobar)
{
++p.second;
std::cout << "{" << p.first << ", " << p.second << "} ";
}
std::cout << std::endl;

for(auto q : foobar)
{
std::cout << "{" << q.first << ", " << q.second << "} ";
}
std::cout << std::endl;
}

此代码产生以下输出:

{1, 2} {2, 3} {3, 4}
{1, 1} {2, 2} {3, 3}

第一行在 for 循环中被修改和打印,第二行应该打印相同的修改值。为什么输出不匹配?对 std::map 的更改是否仅在循环范围内有效?有没有一种方法我不仅可以访问而且可以修改这些值?

A running version of this code可以在 cpp.sh 上找到。

编辑:为清楚起见,修改了此处给出的示例以匹配已接受的答案。

最佳答案

如果你想改变/修改容器,你可以把 auto 变成 auto&,例如:

#include <map>
#include <iostream>

int main()
{
std::map<int, int> foobar({{1,1}, {2,2}, {3,3}});
for(auto& p : foobar) {
++p.second;
std::cout << '{' << p.first << ", " << p.second << "} ";
}
std::cout << std::endl;
}

编译并输出

{1, 2} {2, 3} {3, 4} 

live example

关于c++ - 如何使用基于范围的 for 循环修改 map 中的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31795106/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com