C ++ unordered_map用户定义的类型

时间:2010-11-18 03:22:28

标签: c++ stl

我有一个用作unordered_map中键的类。当我尝试编译代码时,它显示对std::hash<typeName>::operator()(typename) const的未定义引用。我怎么去修理它?我需要重载哪些附加功能才能在unordered_map中使用用户定义的类型?

我有一个dateTime结构,它存储日期和时间的信息。

错误消息如下:

In function 'std::__detail::_Hash_code_base<DateTime, std::pair<DateTime const, int>, std::_Select1st<std::pair<DateTime const, int> >, std::equal_to<DateTime>, std::hash<DateTime>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash_code(DateTime const&) const': testing.cpp:(.text._ZNKSt8__detail15_Hash_code_baseI10DateTimeSt4pairIKS1_DeESt10_Select1stIS4_ESt8equal_toIS1_ESt4hashIS1_ENS_18_Mod_range_hashingENS_20_Default_ranged_hashELb0EE12_M_hash_codeERS3_[std::__detail::_Hash_code_base<DateTime, std::pair<DateTime const, int>, std::_Select1st<std::pair<DateTime const, int> >, std::equal_to<DateTime>, std::hash<DateTime>, std::__detail::_Mod_range_hashing, std::__detail::_Default_ranged_hash, false>::_M_hash_code(DateTime const&) const]+0x23): undefined reference to 'std::hash<DateTime>::operator()(DateTime) const'

感谢。

1 个答案:

答案 0 :(得分:4)

你必须实现哈希算法,否则标准容器不会选择你的类型,因为它不知道如何为它计算哈希码。

namespace std
{    
   template <>
   struct hash<DateTime> : public unary_function<DateTime, size_t>
   {
       size_t operator()(const DateTime& v) const
       {
           return /* my hash algorithm */;
       }
   };
}