我正在 Swift 中构建一个非常简单的结构,其中包含一个可选值数组。此结构必须符合 Equatable 协议(protocol)。这是代码:

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
}

关于xcode - Swift, Equatable 协议(protocol)错误?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25219416/

10-12 15:08