我在 Swift中构建一个非常简单的结构,其中包含一组可选值.此结构必须符合Equatable协议.这是代码: struct MyTable: Equatable { var values: [Int?] = Array(count: 64, repeatedValue: nil)}func == (lhs: MyTable, r
struct MyTable: Equatable { var values: [Int?] = Array(count: 64, repeatedValue: nil) } func == (lhs: MyTable, rhs: MyTable) -> Bool { return lhs.values == rhs.values }
非常简单.我没有看到错误,但编译器给出了错误:“'[Int?]’不能转换为’MyTable’”.我做了些蠢事吗?或者这是编译器的错误?谢谢!
(使用Xcode6-Beta5)
它不起作用的原因是没有为具有可选元素的数组定义的==运算符,仅用于非可选元素:/// Returns true if these arrays contain the same elements. func ==<T : Equatable>(lhs: [T], rhs: [T]) -> Bool
您可以提供自己的:
func ==<T : Equatable>(lhs: [T?], rhs: [T?]) -> Bool { if lhs.count != rhs.count { return false } for index in 0..<lhs.count { if lhs[index] != rhs[index] { return false } } return true }