错误:"哈希"不是类模板

error: 'hash' is not a class template

本文关键字:哈希 错误      更新时间:2023-10-16
#include <unordered_map>
#include <memory>
#include <vector>
template<> // Voxel has voxel.position which is a IVec2 containing 2 values, it also has a bool value
struct hash<Voxel> {  
size_t operator()(const Voxel & k) const  
    {  
        return Math::hashFunc(k.position);  
    }  
};  
template<typename T> // This was already given
inline size_t hashFunc(const Vector<T, 2>& _key)
{
    std::hash<T> hashfunc;
    size_t h = 0xbd73a0fb;
    h += hashfunc(_key[0]) * 0xf445f0a9;
    h += hashfunc(_key[1]) * 0x5c23b2e1;
    return h;
}

我的主要

int main()
{
    Voxel t{ 16,0,true };
    std::hash(t);
}

现在我正在写一个关于std::hash的专业化。现在,联机提交页面始终为我的代码返回以下错误。我不知道为什么以及我做错了什么。

error: 'hash' is not a class template struct hash<>

error: no match for call to '(const std::hash<Math::Vector<int, 2ul> >)   (const Math::Vector<int, 2ul>&)' noexcept(declval<const_Hash((declval<const_Key&>()))>.

我自己的编译器只抛出

error: The argument list for "class template" std :: hash "" is missing.

对于后代,当我忘记#include <functional>时,我收到了相同的错误消息。

您专门研究全局命名空间std::hash<>,这是格式不正确的。

专用化必须在同一命名空间中声明,std .请参阅std::hash的示例:

// custom specialization of std::hash can be injected in namespace std
namespace std
{
    template<> struct hash<S>
    {
        typedef S argument_type;
        typedef std::size_t result_type;
        result_type operator()(argument_type const& s) const
        ...