gpt4 book ai didi

c++ - 我可以覆盖 std::hash 吗?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:04:48 25 4
gpt4 key购买 nike

我可以用我自己在 C++ 11 中定义的 std::hash 替换 std::hash 的实际实现吗?

我的意思是从我的代码库开始,不涉及标准库。

在这种情况下我看不到虚函数/多态性有任何用处,所以我想我无论如何都不能改变 std::hash 的定义?

最佳答案

您可以为特定类型专门化哈希。参见 herehere例如像这样

namespace std {
template <> struct hash<Foo>
{
size_t operator()(const Foo & x) const
{
/* your code here, e.g. "return hash<int>()(x.value);" */
}
};
}

如果你认为你可以比现有版本的库实现者做得更好,你要么1. 错误要么2. 聪明

关于c++ - 我可以覆盖 std::hash 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18078969/

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