Swift 3.0 :理解 Closure

Table of Contents

<a id="1"></a>前言

Closure 是一个函数块,在 Swift 3.0 的官方文档里有详细的说明。从 Swift 2.3 到 Swift 3.0 ,Closure 也有了一些变化。本文主要通过一些例子,谈谈自己的理解。

<a id="2"></a>Closure 的表达形式

Closure 其实就是一段函数。当一个函数的使用范围比较小,没有必要为它进行明确的冗长的声明,这时候,就可以用 Closure 来实现这个函数的功能,使代码更加紧凑,清晰。

<a id="21"></a>排序函数

在官方文档里,通过 sorted(by:) 函数来描述 Closure 的运作过程,一个 closure 作为 sorted(by:) 的参数传入,最终达到利用这个 closure 排序进行的目的。但是 sorted(by:) 函数具体的实现并没有给出,因此,对于初学者来说,并不清楚 sorted(by:) 函数对 closure 做了什么。在这里就通过自己的一个例子来说明,Closure 到底是怎么运作的。

下面为 Array 类自定义了一个排序函数,这个函数以一个函数(或者 closure )为参数,最终返回一组元素。参数列表里的函数需要有两个参数,并返回 Bool 值。

extension Array{
    func mySort(clo:(_ s1: String, _ s2: String)-> Bool)-> [Element]{
        var tempArray = self
        for i in 0...tempArray.count - 1{
            for j in i...tempArray.count - 1{
                if closure(tempArray[i] as! String, tempArray[j] as! String){
                    let temp = tempArray[i]
                    tempArray[i] = tempArray[j]
                    tempArray[j] = temp
                }
            }
        }
        
        return tempArray
    }
}

上面这段代码大致模拟了 closure 在函数里的使用过程。在这个函数中,通过调用参数表里的 clo 函数,利用 clo 函数返回的值对数组元素进行操作,最后返回一组元素。

在函数外,我们可以明确地定义一个比较函数:

func numSort(n1:String, n2:String)->Bool{
    return n1<n2
}

这样我们就能把这个比较函数 numSort: 传入排序函数 mySort(clo:)

let num = ["a","b","c","d"]
let number = num.mySort(clo: numSort)
// number is equal to ["d", "c", "b", "a"].

在上面这段代码中,mySort(clo:) 函数被传入了一个函数作为参数。因此,在完成这个排序功能时,需要额外定义一个比较函数,然后作为参数传入。对与比较函数这样短小的函数,额外的定义显得有些繁琐,不够简练,因此 Swift 提供了 Closure 来简化这个过程:

let numberb = num1.mySort{
    (a,b)->Bool in
    return a<b
}
// numberb is equal to number above.

上面这段代码利用了一个简单的 closure 替换了之前的比较函数,同样实现了排序的功能。在这种情况下,就不需要额外定义比较函数了。

需要注意的是,当 closure 作为函数的最后一个参数时,在调用函数时,可以省去小括号,并把 closure 写在外面。官方文档里称之为 Trailing Closures

上面的例子展示了从函数到 closure 的替换,对于 closure 的表达还能进行简化,直到:

let numberc = num.mySort(clo:<)
// numberc is equal to number and numberb above.

具体的简化过程及解释请参考官方文档。

<a id="3"></a>@autoclosure 和 @escaping

@autoclosure@escaping 可以用来标记 closure 参数的类型。

New in Xcode 8 beta – Swift and Apple LLVM Compilers: Swift Language

The @noescape and @autoclosure attributes must now be written before the parameter type instead of before the parameter name. [SE-0049]

Swift 3: closure parameters attributes are now applied to the parameter type, and not the parameter itself

注意,这里指的是标记参数的类型,在 Swift 3 之前,它们是用来标记参数的。

Swift 2.3 及之前版本:

func doSomething(withParameter parameter: Int, @escaping completion: () -> ()) {
    // ...
}

Swift 3.0:

func doSomething(withParameter parameter: Int, completion: @escaping () -> ()) {
    // ...
}

@autoclosure 标记 clousre 参数的类型后,在函数调用的时候就可以去掉 closure 的花括号,把 closure 以其返回值的形式传入函数中,以下是不带 @autoclosure 和带 @autoclosure 的参数类型及其使用:

// customersInLine is ["Alex", "Ewa", "Barry", "Daniella"]
func serve(customer customerProvider: () -> String) {
    print("Now serving \(customerProvider())!")
}
serve(customer: { customersInLine.remove(at: 0) } )
// Prints "Now serving Alex!”

// 摘录来自: Apple Inc. “The Swift Programming Language (Swift 3)”。 iBooks. 
// customersInLine is ["Ewa", "Barry", "Daniella"]
func serve(customer customerProvider: @autoclosure () -> String) {
    print("Now serving \(customerProvider())!")
}
serve(customer: customersInLine.remove(at: 0))
// Prints "Now serving Ewa!”

// 摘录来自: Apple Inc. “The Swift Programming Language (Swift 3)”。 iBooks. 

@escaping 标记在 Swift 3 之前是没有的,在 Swift 2.3 中,只有 @noescaping

New in Xcode 8 beta 6 - Swift Compiler: Swift Language

Closure parameters are non-escaping by default, rather than explicitly being annotated with @noescape. Use @escaping to indicate that a closure parameter may escape. @autoclosure(escaping) is now written as @autoclosure @escaping. The annotations @noescape and @autoclosure(escaping) are deprecated. (SE-0103)

也就是说,现在 closure 作为函数的参数,默认是 @noescaping 类型的。

@escaping 标记表示 closure 在函数运行结束后再执行,而 @noescaping 标记表示 closure 必须在函数运行结束前执行。一个常见的例子是常见的 completion handle ,它们在函数运行完成后才执行。

UIView 中的 animate 函数,它的 completion handle 就是 @escaping 的。在通常的书写代码的界面中,并没有显式表出来:

class func animate(withDuration duration: TimeInterval, animations: () -> Void, completion: ((Bool) -> Void)? = nil)

但在定义中,可以看出:

open class func animate(withDuration duration: TimeInterval, animations: @escaping () -> Swift.Void, completion: (@escaping (Bool) -> Swift.Void)? = nil)

需要注意的是,当 closure 的类型用 @escaping 标记之后,在 closure 内使用类的属性或方法时,需要用 self 标明。

func someFunctionWithNonescapingClosure(closure: () -> Void) {
    closure()
}
 
class SomeClass {
    var x = 10
    func doSomething() {
        someFunctionWithEscapingClosure { self.x = 100 }
        someFunctionWithNonescapingClosure { x = 200 }
    }
}

// 摘录来自: Apple Inc. “The Swift Programming Language (Swift 3)”。 iBooks. 

<a id="4"></a>Closure playground

关于 Closure ,这里有一个 Swift playground ,里面有一些例子可以参考。

附上我的Github:LinShiwei (Lin Shiwei) · GitHub

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,602评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,442评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,878评论 0 344
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,306评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,330评论 5 373
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,071评论 1 285
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,382评论 3 400
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,006评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,512评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,965评论 2 325
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,094评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,732评论 4 323
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,283评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,286评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,512评论 1 262
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,536评论 2 354
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,828评论 2 345

推荐阅读更多精彩内容