在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

相关文章

软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘...
现实生活中,我们听到的声音都是时间连续的,我们称为这种信...
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿...
【Android App】实战项目之仿抖音的短视频分享App(附源码和...
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至...
因为我既对接过session、cookie,也对接过JWT,今年因为工作...