gpt4 book ai didi

c++ - C++标准容器未插入新值的问题

转载 作者:行者123 更新时间:2023-12-01 15:07:46 25 4
gpt4 key购买 nike

#include <iostream>
#include<bits/stdc++.h>
using namespace std;

int main() {
unordered_map<string,set<int>> map;
set<int> s;
s.insert(1);
s.insert(2);s.insert(3);
map.insert(make_pair("Screen1",s));
for(auto it : map)
{
cout<<it.first<<endl;
it.second.insert(5);
}
for (auto i : map["Screen1"])
{
cout<<i<<endl;
}
}
在上述代码中,我试图在 map 内的集合中插入值5。但
it.second.insert(5); 不能解决问题
这是我得到的输出
Screen1
1
2
3

最佳答案

在此循环中:

for(auto it : map)
变量 itmap中每个元素的副本,因此修改 it不会修改 map
如果要修改元素,则需要执行以下操作:
for(auto &it : map)
因此 it是对 map中每个元素的引用。

关于c++ - C++标准容器未插入新值的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63399695/

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