some View
是SE-0244引入的不透明结果类型,可在带有 Xcode 11 的 Swift 5.1 中使用。您可以将其视为“反向”通用占位符。
与调用者满意的常规通用占位符不同:
protocol P {}
struct S1 : P {}
struct S2 : P {}
func foo<T : P>(_ x: T) {}
foo(S1()) // Caller chooses T == S1.
foo(S2()) // Caller chooses T == S2.
不透明的结果类型是实现满足的隐式通用占位符,因此您可以这样想:
func bar() -> some P {
return S1() // Implementation chooses S1 for the opaque result.
}
看起来像这样:
func bar() -> <Output : P> Output {
return S1() // Implementation chooses Output == S1.
}
事实上,这个特性的最终目标是允许反向泛型以这种更明确的形式出现,这也可以让你添加约束,例如-> <T : Collection> T where T.Element == Int
. 有关更多信息,请参阅此帖子。
主要的一点是,some P
返回的函数是返回符合P
. 尝试在函数中返回不同的符合类型会产生编译器错误:
// error: Function declares an opaque return type, but the return
// statements in its body do not have matching underlying types.
func bar(_ x: Int) -> some P {
if x > 10 {
return S1()
} else {
return S2()
}
}
由于隐式通用占位符不能满足多种类型。
这与返回的函数相反P
,它可以用来表示两者 S1
,S2
因为它表示任意P
符合的值:
func baz(_ x: Int) -> P {
if x > 10 {
return S1()
} else {
return S2()
}
}
好的,那么不透明的结果类型-> some P
比协议返回类型有什么好处-> P
?
1. 不透明的结果类型可以与 PAT 一起使用
当前协议的一个主要限制是 PAT(具有关联类型的协议)不能用作实际类型。尽管这一限制可能会在该语言的未来版本中取消,但由于不透明结果类型实际上只是通用占位符,因此它们现在可以与 PAT 一起使用。
这意味着您可以执行以下操作:
func giveMeACollection() -> some Collection {
return [1, 2, 3]
}
let collection = giveMeACollection()
print(collection.count) // 3
2. 不透明的结果类型有标识
因为不透明结果类型强制返回单个具体类型,所以编译器知道对同一函数的两次调用必须返回相同类型的两个值。
这意味着您可以执行以下操作:
// foo() -> <Output : Equatable> Output {
func foo() -> some Equatable {
return 5 // The opaque result type is inferred to be Int.
}
let x = foo()
let y = foo()
print(x == y) // Legal both x and y have the return type of foo.
这是合法的,因为编译器知道两者x
并且y
具有相同的具体类型。这是一个重要的要求==
,其中两个参数的类型Self
。
protocol Equatable {
static func == (lhs: Self, rhs: Self) -> Bool
}
这意味着它期望两个值都与具体的符合类型相同。即使Equatable
可用作类型,您也无法将两个任意Equatable
符合的值相互比较,例如:
func foo(_ x: Int) -> Equatable { // Assume this is legal.
if x > 10 {
return 0
} else {
return "hello world"
}
}
let x = foo(20)
let y = foo(5)
print(x == y) // Illegal.
由于编译器无法证明两个任意Equatable
值具有相同的底层具体类型。
以类似的方式,如果我们引入另一个不透明类型的返回函数:
// foo() -> <Output1 : Equatable> Output1 {
func foo() -> some Equatable {
return 5 // The opaque result type is inferred to be Int.
}
// bar() -> <Output2 : Equatable> Output2 {
func bar() -> some Equatable {
return "" // The opaque result type is inferred to be String.
}
let x = foo()
let y = bar()
print(x == y) // Illegal, the return type of foo != return type of bar.
该示例变得非法,因为尽管foo
和都bar
返回some Equatable
,但它们的“反向”通用占位符Output1
可以满足Output2
不同的类型。
3. 不透明的结果类型由通用占位符组成
与常规的协议类型值不同,不透明的结果类型与常规的通用占位符组合得很好,例如:
protocol P {
var i: Int { get }
}
struct S : P {
var i: Int
}
func makeP() -> some P { // Opaque result type inferred to be S.
return S(i: .random(in: 0 ..< 10))
}
func bar<T : P>(_ x: T, _ y: T) -> T {
return x.i < y.i ? x : y
}
let p1 = makeP()
let p2 = makeP()
print(bar(p1, p2)) // Legal, T is inferred to be the return type of makeP.
makeP
如果刚刚返回,这将不起作用P
,因为两个P
值可能具有不同的底层具体类型,例如:
struct T : P {
var i: Int
}
func makeP() -> P {
if .random() { // 50:50 chance of picking each branch.
return S(i: 0)
} else {
return T(i: 1)
}
}
let p1 = makeP()
let p2 = makeP()
print(bar(p1, p2)) // Illegal.
为什么在具体类型上使用不透明的结果类型?
此时你可能会想,为什么不把代码写成:
func makeP() -> S {
return S(i: 0)
}
好吧,不透明结果类型的使用允许您S
通过仅公开由 提供的接口来使该类型成为实现细节P
,从而使您可以灵活地在以后更改具体类型,而不会破坏任何依赖于该函数的代码。
例如,您可以替换:
func makeP() -> some P {
return S(i: 0)
}
和:
func makeP() -> some P {
return T(i: 1)
}
不破坏任何调用makeP()
.
有关此功能的更多信息,请参阅语言指南的不透明类型部分和Swift 进化提案。