在Objective-C(和其他语言)中, – (NSUInteger)哈希的相对较好的默认实现可能是:
- (NSUInteger)hash { return 31u * [self.property1 hash] + [self.property2 hash]; }
假设property1和property2都返回hash值的好值。
这在Swift的等价var hashValue:在其Hashable协议中定义的Int方法不起作用。
相当的Swift代码很可能会溢出,这是Swift中的运行时错误。
var hashValue: Int { return 31 * property1.hashValue + property2.hashValue // overflow-tastic }
所以我的问题是,在Swift中生成散列值(实现Hashable)的最佳技术是什么?我应该使用XOR吗?虽然我的理解是XOR不是创建统一散列分布的理想选择。也许更奇特的东西?
如Fabian Kreiser所建议的,可以使用overflow操作符来制作hashValue方法,如下所示:
原文链接:https://www.f2er.com/swift/320638.htmlvar hashValue: Int { return (31 &* property1.hashValue) &+ property2.hashValue }
值仍然溢出,但至少它不会崩溃