gpt4 book ai didi

c++ - pair 对作为 unordered_map 问题的关键

转载 作者:IT老高 更新时间:2023-10-28 22:12:35 25 4
gpt4 key购买 nike

我的代码:

 typedef pair<int,int> Pair
tr1::unordered_map<Pair,bool> h;
h.insert(make_pair(Pair(0,0),true));

错误

 undefined reference to `std::tr1::hash<std::pair<int, int> >::operator()(std::pair<int, int>) const'

我需要解决什么问题?

谢谢

最佳答案

发生这种情况是因为 std::tr1::hash<Key> 没有专门化与 Key = std::pair<int, int> .你必须专攻 std::tr1::hash<Key>Key = std::pair<int, int>在声明 tr1::unordered_map<Pair,bool> h; 之前.发生这种情况是因为 std不知道如何散列 pair<int, int> .

下面是一个如何特化的例子std::tr1::hash<>

template <>
struct std::tr1::hash<std::pair<int, int> > {
public:
size_t operator()(std::pair<int, int> x) const throw() {
size_t h = SOMETHING;//something with x
return h;
}
};

关于c++ - pair<int,int> 对作为 unordered_map 问题的关键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4870437/

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