std::hash
来自cppreference.com
< cpp | memory | shared ptr
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
template<class T> struct hash<shared_ptr<T>>; |
(C++11 起) | |
std::hash为模板专门std::shared_ptr<T>允许用户获取哈希的对象的类型std::shared_ptr<T>.
原文:
The template specialization of std::hash for std::shared_ptr<T> allows users to obtain hashes of objects of type std::shared_ptr<T>.
对于一个给定的std::shared_ptr<T> p,专业化,确保std::hash<std::shared_ptr<T>>()(p) == std::hash<T*>()(p.get()).
原文:
For a given std::shared_ptr<T> p, this specialization ensures that std::hash<std::shared_ptr<T>>()(p) == std::hash<T*>()(p.get()).
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
(C++11) |
hash function object (类模板) |