gpt4 book ai didi

xcode - Swift,Equatable 协议(protocol)错误?

转载 作者:搜寻专家 更新时间:2023-10-31 22:03:52 24 4
gpt4 key购买 nike

我正在 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com