2

我正在尝试散列一个 64 位整数,

uint64_t temp = ...;
return tr1::hash<uint64_t>(temp);

但是我得到了错误,

error: no matching function for call to ‘std::tr1::hash<long long unsigned int>::hash(uint64_t&)’

为什么这不起作用?

4

1 回答 1

4

hash是一。你必须制作一个对象:

return std::tr1::hash<uint64_t>()(temp);
//                            ^^^^
于 2012-10-03T19:47:51.530 回答