前端之家收集整理的这篇文章主要介绍了
swift – 匿名闭包参数未包含在闭包中,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
为什么这段
代码不起作用?
func function (param1 : Int,param2 : Int) -> Int {
return $0 + $1
}
它会产生错误:
Error: Anonymous closure argument not contained in a closure
看来你只能通过匿名闭包中的数字访问参数,而不是
函数.
例如:
var sevenMultiplyedByThree: Int = {
return $0 * 3
}(7)
此外,这仅适用于匿名参数,因此以下代码不起作用:
var sevenMultiplyedByThree: Int = {
(namedParameter : Int) -> Int in
return $0 * 3
}(7)
原文链接:https://www.f2er.com/swift/319520.html