微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

在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

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐