C++ const std::map reference fails to compile(C++ const std::map 引用无法编译)
问题描述
将 std::map
的引用作为 const 传递是否会导致 [] 运算符中断?使用 const 时出现此编译器错误(gcc 4.2):
Is there a reason why passing a reference to a std::map
as const causes the [] operator to break? I get this compiler error (gcc 4.2) when I use const:
错误:没有匹配到‘operator[]’‘地图[名称]’
error: no match for ‘operator[]’ in ‘map[name]’
这是函数原型:
void func(const char ch, std::string &str, const std::map<std::string, std::string> &map);
而且,我要提一下,当我去掉 std::map
前面的 const
关键字时没有问题.
And, I should mention that there is no problem when I remove the const
keyword in front of std::map
.
如果我的指示正确,如果 [] 运算符找不到密钥,它实际上会在映射中插入一个新对,这当然可以解释为什么会发生这种情况,但我无法想象这永远是可以接受的行为.
If I've been instructed correctly, the [] operator will actually insert a new pair into the map if it doesn't find the key, which would of course explain why this happens, but I can't imagine that this would ever be acceptable behavior.
如果有更好的方法,比如使用 find 而不是 [],我将不胜感激.我似乎也无法找到工作...我收到 const 不匹配的迭代器错误.
If there is a better method, like using find instead of [], I'd appreciate it. I can't seem to get find to work either though... I receive const mismatched iterator errors.
推荐答案
是的,你不能使用 operator[]
.使用 find
,但注意它返回 const_iterator
而不是 iterator
:
Yes you can't use operator[]
. Use find
, but note it returns const_iterator
instead of iterator
:
std::map<std::string, std::string>::const_iterator it;
it = map.find(name);
if(it != map.end()) {
std::string const& data = it->second;
// ...
}
就像指针一样.您不能将 int const*
分配给 int*
.同样,您不能将 const_iterator
分配给 iterator
.
It's like with pointers. You can't assign int const*
to int*
. Likewise, you can't assign const_iterator
to iterator
.
这篇关于C++ const std::map 引用无法编译的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C++ const std::map 引用无法编译
基础教程推荐
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- C++,'if' 表达式中的变量声明 2021-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- 设计字符串本地化的最佳方法 2022-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31