gpt4 book ai didi

c++ - 我的哈希键类型和函数有什么问题?

转载 作者:行者123 更新时间:2023-11-28 00:10:48 26 4
gpt4 key购买 nike

我正在尝试为一个类编写自己的哈希函数,该类本质上是无符号整数的包装器。我一直在尝试关注这个话题 here : 和这个资源 here .为什么这不起作用?请参阅代码注释以了解错误。

struct Entity
{
unsigned int id;

bool operator==( const Entity &other ) const
{
return ( id == other.id );
}
};

template<struct T>
class EntityHash;

template<>
class EntityHash<Entity> // Error: Type name is not allowed
{
public:
std::size_t operator()( const Entity& entity ) const
{
size_t h1 = std::hash<unsigned int>()( entity.id );
return h1; // Also... do I need a << 1 at the end of this to bitshift even though I'm not combining?
}
};

// Elsewhere
std::unordered_map<Entity, unsigned int, EntityHash> map; // Error: Argument list for class template EntityHash is missing

最佳答案

template <struct T>
class EntityHash;

可能不是您想要的。使用 template <class T>template <typename T> .

unordered_map 的第三个模板参数必须是类型,而不是模板的名称。所以:

std::unordered_map<Entity, unsigned int, EntityHash<Entity>> map;

关于c++ - 我的哈希键类型和函数有什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33249055/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com