使用Windows下 RECT 类型做unordered_map 键值
1. Hash 函数
计算自定义类型的hash值。
struct hash_RECT { size_t operator()(const RECT &rc) const { return std::_Hash_seq((const unsigned char *)&rc, sizeof(RECT)); } };
2. 相等函数
哈希需要处理碰撞,意味着必须判断两个自定义类型对象是否相等。
struct cmp_RECT { bool operator()(const RECT &rc1, const RECT &rc2) const { return rc1.left == rc2.left && rc1.top == rc2.top && rc1.right == rc2.right && rc1.bottom == rc2.bottom; } };
3. 使用
std::unordered_map<RECT, std::wstring, hash_RECT, cmp_RECT> G_mapText
时间: 2024-10-11 21:57:16