swift – make struct Hashable?

前端之家收集整理的这篇文章主要介绍了swift – make struct Hashable?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试创建排序[petInfo:UIImage]()的字典,但我得到错误类型’petInfo’不符合协议’Hashable’。我的petInfo结构是这样的:
struct petInfo {
    var petName: String
    var dbName: String
}

所以我想以某种方式使它可以散列,但它的组件都不是一个整数,这是var hashValue:Int所需要的。如果它的字段都不是整数,我该如何使它符合协议?如果我知道它对于所有这个结构的出现都是唯一的,我可以使用dbName吗?

只需从hashValue函数返回dbName.hashValue即可。仅供参考 – 哈希值不需要是唯一的。要求是两个等于等于的对象也必须具有相同的散列值。
struct PetInfo: Hashable {
    var petName: String
    var dbName: String

    var hashValue: Int {
        return dbName.hashValue
    }

    static func == (lhs: PetInfo,rhs: PetInfo) -> Bool {
        return lhs.dbName == rhs.dbName && lhs.petName == rhs.petName
    }
}
原文链接:https://www.f2er.com/swift/320277.html

猜你在找的Swift相关文章