为什么这段
代码不起作用?
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)