How to specialize std::hashlt;Keygt;::operator() for user-defined type in unordered containers?(如何在无序容器中为用户定义的类型专门化 std::hashKey::operator()?)
问题描述
在std::unordered_set
和std::unordered_map
中支持用户定义的键类型必须提供 operator==(Key, Key)
和一个哈希函子:
To support user-defined key types in std::unordered_set<Key>
and std::unordered_map<Key, Value>
one has to provide operator==(Key, Key)
and a hash functor:
struct X { int id; /* ... */ };
bool operator==(X a, X b) { return a.id == b.id; }
struct MyHash {
size_t operator()(const X& x) const { return std::hash<int>()(x.id); }
};
std::unordered_set<X, MyHash> s;
只写std::unordered_set
会更方便使用 默认哈希 类型 X
,喜欢与编译器和库一起出现的类型.咨询后
It would be more convenient to write just std::unordered_set<X>
with a default hash for type X
,
like for types coming along with the compiler and library.
After consulting
- C++ 标准 草案 N3242§20.8.12 [unord.hash] 和 §17.6.3.4 [hash.requirements],
- Boost.Unordered
- g++
includec++4.7.0itsfunctional_hash.h
- VC10
includexfunctional
- Stack Overflow 中的各种相关问题
- C++ Standard Draft N3242 §20.8.12 [unord.hash] and §17.6.3.4 [hash.requirements],
- Boost.Unordered
- g++
includec++4.7.0itsfunctional_hash.h
- VC10
includexfunctional
- various related questions in Stack Overflow
似乎可以专门化 std::hash<X>::operator()
:
namespace std { // argh!
template <>
inline size_t
hash<X>::operator()(const X& x) const { return hash<int>()(x.id); } // works for MS VC10, but not for g++
// or
// hash<X>::operator()(X x) const { return hash<int>()(x.id); } // works for g++ 4.7, but not for VC10
}
鉴于对 C++11 的编译器支持尚处于试验阶段---我没有尝试 Clang---,这些是我的问题:
Given compiler support for C++11 is yet experimental---I did not try Clang---, these are my questions:
向命名空间
std
添加这样的特化是否合法?我对此有复杂的感觉.
Is it legal to add such a specialization to namespace
std
? I have mixed feelings about that.
哪个std::hash<X>::operator()
版本(如果有)符合 C++11 标准?
Which of the std::hash<X>::operator()
versions, if any, is compliant with C++11 standard?
有没有便携的方法来做到这一点?
Is there a portable way to do it?
推荐答案
明确允许并鼓励您将 specializations 添加到命名空间 std
*.添加哈希函数的正确(并且基本上是唯一的)方法是:
You are expressly allowed and encouraged to add specializations to namespace std
*. The correct (and basically only) way to add a hash function is this:
namespace std {
template <> struct hash<Foo>
{
size_t operator()(const Foo & x) const
{
/* your code here, e.g. "return hash<int>()(x.value);" */
}
};
}
(您可能考虑支持的其他流行专业化包括 std::less
、std::equal_to
和 std::swap
.)
(Other popular specializations that you might consider supporting are std::less
, std::equal_to
and std::swap
.)
*) 只要涉及的类型之一是用户定义的,我想.
这篇关于如何在无序容器中为用户定义的类型专门化 std::hash<Key>::operator()?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在无序容器中为用户定义的类型专门化 std::hash<Key>::operator()?
基础教程推荐
- Windows Media Foundation 录制音频 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01