标签: c++ insert iterator unordered-map
我试图将元素插入到unordered_map中某个位置,覆盖该位置的当前对。我尝试过以下代码:
unordered_map<string, string>::iterator it = myMap.begin() + 256; myMap.insert(it, newPair);
这不起作用,因为它留下了错误。有人可以帮忙吗?先谢谢你。