我有以下枚举:
enum MyEnum {
case One
case Two
case Three
}
但是当我打印这一行时:
print("This is the hash value of One \(MyEnum.One.hashValue)")
我得到以下输出:
This is the hash value of One -7827947590157343570
如果我重新运行我得到的代码:
This is the hash value of One 7980945707037922449
我应该得到这样的东西:这是 One 0 的哈希值
我问你们为什么我得到随机数?
我会非常感谢你的帮助。