我正在尝试为Array结构创建一个扩展,以便在包含的对象符合特定协议时添加方法,但当我尝试访问扩展中的方法时,我会遇到奇怪的行为一堂课。
这是我的游乐场代码
protocol SomeInt {
var theInt: Int {get set}
}
extension Array where Element: SomeInt {
func indexOf(object:SomeInt) -> Index? {
return indexOf({ (obj) -> Bool in
return obj.theInt == object.theInt
})
}
}
class PRR: SomeInt {
var theInt: Int = 0
init(withInt value: Int){
theInt = value
}
}
class container {
var items: [SomeInt]!
}
let obj1 = PRR(withInt: 1)
let obj2 = PRR(withInt: 2)
let arr = [obj1, obj2]
arr.indexOf(obj1) //this succeds
let cont = container()
cont.items = [obj1, obj2]
cont.items.indexOf(obj1) //this doesn't
对于什么是错的任何想法?
答案 0 :(得分:0)
好吧,看起来这是一个众所周知的行为......因为某人是个错误。
实际上,不,这只是编译器的一个已知限制。不幸的是,今天,协议类型(或#34;存在性"正如我们编译器weenies所称的那样)并不符合协议:
protocol P {}
func g<T: P>(_: T) {}
struct X : P {}
struct Y<T: P> {}
Y<P>() // error: type 'P' does not conform to protocol 'P'