我有一个代码如下:
#include <iostream>
#include <unordered_map>
#include <string>
void foo(const std::unordered_map<char, std::string>& uom){
auto it2=uom.find('S');
if(it2!=uom.end()) //NEVER FORGET THIS
std::cout<< *it2 <<std::endl;
}
在这个函数中,我得到了 *it2 的错误。错误是“二进制表达式的操作数无效”。我找不到解决此错误的方法。谁能帮我? 谢谢。
答案 0 :(得分:2)
find
返回的迭代器是键 和 键值的迭代器,形式为 std::pair<KeyT, ValT>
(在您的情况下为 std::pair<char, std::string>
)。因此,为了访问与您查找的键关联的值,您需要使用 it2->second
(即该对中的第二项)。请参阅 the docs 中的示例代码。