如何覆盖 qHash() 函数?



我想使用自定义对象的QSet。从文档中,我发现:

QSet 的值数据类型必须是可分配的数据类型。例如,您不能将 QWidget 存储为值;相反,存储一个 QWidget *。此外,该类型必须提供 operator==((,并且还必须有一个全局 qHash(( 函数,该函数返回键类型的参数的哈希值。有关 qHash(( 支持的类型列表,请参阅 QHash 文档。

以下代码表示我想要使用的struct

typedef struct ShortcutItem
{
QString     shortcutName;   // A shortcut name
QString     explaination;   // A shortcut explaination
bool        editable;       // Is editable
KeySequence sequence;       // A list of key values defining a shortcut
ShortcutItem(void) {}
ShortcutItem(QString& name, QString& description, bool enabled, KeySequence seq) : shortcutName(name), explaination(description), editable(enabled), sequence(seq) {}
ShortcutItem(const ShortcutItem& other) : shortcutName(other.shortcutName), explaination(other.explaination), editable(other.editable), sequence(other.sequence) {}
bool ShortcutItem::operator==(const ShortcutItem& other) const { return shortcutName == other.shortcutName; }
} ShortcutItem;

到目前为止,我已经重载了==运算符,但无法确定如何处理qHash()函数。

请提供任何帮助。

附言我看到了这篇文章,无法决定该怎么做。

据我从您的代码中看到,您的哈希函数应该看起来像

uint qHash(const ShortcutItem & item)
{
return qHash(item.shortcutName);
}

换句话说,您可以使用可用的重载uint qHash(const QString &key, uint seed = ...),将项目成员shortcutName传递给它,然后只返回其返回值。

您可以将函数原型放在ShortcutItem结构之后,在其标头中:

uint qHash(const ShortcutItem & item);

以及其实施文件(.cpp(中的定义(上文(。

相关内容

  • 没有找到相关文章

最新更新