当函数的返回值是另一个函数时,无法获取返回函数的参数名称。这是一个快速语言的陷阱吗?
例如:
func makeTownGrand(budget:Int,condition: (Int)->Bool) -> ((Int,Int)->Int)?
{
guard condition(budget) else {
return nil;
}
func buildRoads(lightsToAdd: Int, toLights: Int) -> Int
{
return toLights+lightsToAdd
}
return buildRoads
}
func evaluateBudget(budget:Int) -> Bool
{
return budget > 10000
}
var stopLights = 0
if let townPlan = makeTownGrand(budget: 30000, condition: evaluateBudget)
{
stopLights = townPlan(3, 8)
}
请注意townPlan
,townPlan(lightsToAdd: 3, toLights: 8)
对townPlan(3, 8)
更为明智,对吗?
答案 0 :(得分:2)
你是对的。从Swift 3发行说明:
已从Swift函数类型中删除了参数标签...对函数或初始值设定项的未应用引用不再带有参数标签。
因此,townPlan
的类型,即从调用makeTownGrand
返回的类型,是(Int,Int) -> Int
- 并且不带有外部参数标签信息。