这是Swift 1.2,我用的是Xcode 6.4。以下枚举具有可失败的初始值设定项。
enum EstimateItemStatus: Int, Printable {
case Pending = 1
case OnHold = 2
case Done = 3
var description: String {
switch self {
case .Pending: return "Pending"
case .OnHold: return "On Hold"
case .Done: return "Done"
}
}
init?(id : Int) {
switch id {
case 1:
self = .Pending
case 2:
self = .OnHold
case 3:
self = .Done
default:
return nil
}
}
}
如果我传递一个ID并初始化一个实例,那么我得到的枚举值是正确的。但是
hashValue
是错误的。例如,let status = EstimateItemStatus(id: 2)!
println("\(status.hashValue) - \(status)")
我得到的输出是1-保持。
但它应该是2-等待。
我在这里做错什么了?这是编译器错误还是我遗漏了什么?
Demo playground
最佳答案
也许你混淆了hashValue
vs. rawValue
。
哈希值未强制等于原始值
关于ios - 初始化的枚举返回错误的hashValue,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33387336/