0


Qt笔记-自定义QSet,QHash的Key

官方文档已经说得很详细了。

If you want to use other types as the key, make sure that you provide operator==() and a qHash() implementation.

  1. Example:
  2. #ifndef EMPLOYEE_H
  3. #define EMPLOYEE_H
  4. class Employee
  5. {
  6. public:
  7. Employee() {}
  8. Employee(const QString &name, const QDate &dateOfBirth);
  9. ...
  10. private:
  11. QString myName;
  12. QDate myDateOfBirth;
  13. };
  14. inline bool operator==(const Employee &e1, const Employee &e2)
  15. {
  16. return e1.name() == e2.name()
  17. && e1.dateOfBirth() == e2.dateOfBirth();
  18. }
  19. inline uint qHash(const Employee &key, uint seed)
  20. {
  21. return qHash(key.name(), seed) ^ key.dateOfBirth().day();
  22. }
  23. #endif // EMPLOYEE_H

In the example above, we've relied on Qt's global qHash(const QString &, uint) to give us a hash value for the employee's name, and XOR'ed this with the day they were born to help produce unique hashes for people with the same name.

在此我直接总结下,方便查阅。

构造2个内联函数,方便QHash去对比一个是operator == ,一个是qHash(const QString &, uint);

这里要注意2点:

①operator==:这里要注意,判断2个自定义对象是否相等,如果有唯一标识字段,比如主键,就可以直接用那个,如果没有,就在结构体中想想,拿些字段组合可以唯一标识这个结构体;

②qHash(const QString &, uint):生成hash的,同样要传入唯一标识的,上面的例子是用name生成的hash再和出生时间异或。并且const QString &, uint这个函数是Qt的全局函数(从搬砖的角度看意思就是不需要去包QHash的头文件了)。

下面是己的例子,我这个结构体是对应数据库的,id是唯一标识:

  1. struct EncounterDB{
  2. int id;
  3. QString type; //F = dead
  4. QString phase;
  5. friend QDebug operator << (QDebug os, EncounterDB record){
  6. os << "EncounterDB(" << record.id << "," << record.type << "," << record.phase << ")";
  7. return os;
  8. }
  9. };
  10. inline bool operator == (const AnswerDB &db1, const AnswerDB &db2){
  11. return db1.id == db2.id;
  12. }
  13. inline uint qHash(const AnswerDB &db, uint seed){
  14. return qHash(db.id, seed);
  15. }

标签: 笔记 qt C++

本文转载自: https://blog.csdn.net/qq78442761/article/details/131389841
版权归原作者 IT1995 所有, 如有侵权,请联系我们删除。

“Qt笔记-自定义QSet,QHash的Key”的评论:

还没有评论