如果这是在C#中,则工作代码应为:
字典< Pixel,int> colorDictionary = new Dictionary< Pixel,int> ();
在Swift中,我尝试过:
var colorDictionary = Dictionary<Pixel,Int>()
但是,我得到的错误:
“Type ‘Pixel’ does not conform to protocol ‘Hashable'”
我该怎么做才能解决这个问题?非常感谢!
要使用字典键的任何自定义类型都必须符合Hashable
协议. 此协议有一个必须实现的属性.
var hashValue:Int {get}
使用此属性可生成Dictionary可用于查找原因的int.您应该尝试使其生成的hashValue对于每个像素都是唯一的.
Swift书中有以下注释,因此您可以创建一个随机哈希(只要它是唯一的):
The value returned by a type’s
hashValue
property is not required to be the same across different executions of the same program,or in different programs.
请注意,因为Hashable继承自Equatable
,您还必须实现:
func ==(_ lhs: Self,_ rhs: Self) -> Bool.
我不确定像素的内部结构是什么,但是当两者具有相同的“x”和“y”值时,你可能会认为两个像素相等.最后的逻辑取决于你.
根据需要修改:
struct Pixel : Hashable { // MARK: Hashable var hashValue: Int { get { // Do some operations to generate a unique hash. } }}//MARK: Equatablefunc ==(lh: Pixel,rh: Pixel) -> Bool { return lh.x == rh.x && rh.y == lh.y}总结
以上是内存溢出为你收集整理的如何使用自定义类类型作为Swift中Dictionary的键?全部内容,希望文章能够帮你解决如何使用自定义类类型作为Swift中Dictionary的键?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)