在Swift中,没有办法获得返回函数的参数名称?

前端之家收集整理的这篇文章主要介绍了在Swift中,没有办法获得返回函数的参数名称?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
函数的返回值是另一个函数时,没有办法获得返回函数的参数名称.这是一个快速语言的陷阱吗?

例如:

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)会更加明智,对吗?

你是对的.从Swift 3发行说明:

Argument labels have been removed from Swift function types… Unapplied references to functions or initializers no longer carry argument labels.

因此,townPlan的类型,即从调用makeTownGrand返回的类型是(Int,Int) – > Int – 并且不携带外部参数标签信息.

有关基本原理的完整讨论,请参见https://github.com/apple/swift-evolution/blob/545e7bea606f87a7ff4decf656954b0219e037d3/proposals/0111-remove-arg-label-type-significance.md

原文链接:https://www.f2er.com/swift/320061.html

猜你在找的Swift相关文章