你要知道的Swift闭包

前言

Swift的闭包在capture变量时,跟oc的还是有些区别的。下面来讲讲。

一览Swift的闭包

在closure中使用外部变量,swift默认会capture该变量的reference,之后会细说。为了避免在闭包执行时,变量释放,所以会retain该变量。来看个例子。

Animal类。

class Animal:CustomDebugStringConvertible {
    let name: String
    init(name: String) {
        self.name = name
    }

    var debugDescription: String {
        return "<Animal \(name)>"
    }
    deinit {
        print("\(self) dealloc")
    }
}

delay函数

func delay(seconds: NSTimeInterval, closure: ()->()) {

    let time = dispatch_time(DISPATCH_TIME_NOW, Int64(seconds * Double(NSEC_PER_SEC)))

    dispatch_after(time, dispatch_get_main_queue()) {
        closure()
    }
}
func demo1() {
    let animal = Animal(name: "cat")
    print("before closure:\(animal)")

    delay(1) {
        // retain animal
        print("inside closure:\(animal)")
    }

    print("bye")
}

output:

 before closure:<Animal cat>
 bye
 inside closure:<Animal cat>
 <Animal cat> dealloc

这里,我们用dispatch_after延迟执行一个闭包。当demo1执行完后,animal是还没有dealloc的,因为被闭包retain了。只有当闭包执行完后,才会释放掉。

好了。知道了上述理论后,来看看刚刚提到的reference。

reference

闭包默认持有变量的reference,而不是变量本身。什么意思呢?看个例子。请注意inside closure打印的那行

// caputure value evaluted when closure is executed
func demo2() {
    var animal = Animal(name: "cat")
    print("before closure:\(animal)")

    delay(1) { 
        print("inside closure:\(animal)")
    }

    animal = Animal(name: "dog")
    print("after closure:\(animal)")
}

ouput:

 before closure:<Animal cat>
 <Animal cat> dealloc
 after closure:<Animal dog>
 inside closure:<Animal dog>
 <Animal dog> dealloc

是不是觉得有点奇怪?这就是持有reference的作用。
可以看成其持有的是指向animal的指针p,即使animal所指向的obj在变,但其实p的指针是始终不变的。看2张图应该就明白了。

p就是图中的reference。

cat.png
dog.png

如果熟悉c的指针的话,跟下面的代码意思类似。

char a = 'a';
char *p1 = &a;

char **p2 = &p1;
printf("%c", **p2);

char b = 'b';
p1 = &b;

// 此时**p2的值会为'b',虽然p1的指向在变,但p2-->p1的指向关系始终不变
printf("%c", **p2);

除了reference之外,还有提到的是。

1)capture的变量在闭包执行的时候才计算

在这个例子中,我们修改了animal为dog,闭包中打印的也是成了dog。

如果改成这样,猜猜会打印出什么?

delay(1) { 
        animal = Animal(name:"duck")
        print("inside closure:\(animal)")
    }
  1. animal的dealloc。在demo2执行完后,cat就dealloc了。而dog还被持有。看上图,animal--->cat之前的关联已经断了,所以会dealloc,而此时animal指向了dog,所以dog仍会等到闭包执行完后销毁。

value type

那么对于值类型的捕获呢,是否不一样?很遗憾,仍然是reference。意思是:不是简单的捕获当前的值,存起来,亘古不变了。跟上面一样,value变了之后,闭包中的值跟着变。

func demo3() {
    var a = 40
    print("before closure:\(a)")
    delay(1) { 
        print("inside closure:\(a)")
    }

    a = 50
    print("after closure:\(a)")
}

output:

 before closure:40
 after closure:50
 inside closure:50
value.png

在闭包中修改值

可以在直接闭包中修改捕获的值,并且后续获取到的就是新值。仍然是reference的功劳。而在oc中,需要声明为__block。

func demo4() {
    var a = 40
    print("before closure:\(a)")
    delay(1) {
        print("inside closure1, before change:\(a)")
        a = 60
        print("inside closure1, after change:\(a)")
    }

    delay(2) {
        print("inside closure2:\(a)")
    }
}

如何做到和oc的捕获一样

如果只想capture变量在创建闭包时的值,使用capture list。它会copy一份变量,而非采用reference的方式。或者先声明个变量 let copyValue = a,跟capture list效果一样。

func demo5() {
    var a = 40
    print("before closure:\(a)")
    
    let copyValue = a
    delay(1) { [constantValue = a] in
        print("inside closure:\(constantValue)")
        print("inside closure:\(copyValue)")
    }

    a = 50
    print("after closure:\(a)")
}

同样对于class类型的,也一样

func demo6() {
    var animal = Animal(name: "cat")
    print("before closure:\(animal)")

    let animalCopy = animal

    delay(1) { [constantAnimal = animal] in
        print("inside closure constantAnimal:\(constantAnimal)")
        print("inside closure constantAnimal:\(animalCopy)")
    }

    animal = Animal(name: "dog")
    print("after closure:\(animal)")
}

终极混合

来个各种混合的。

func demo7() {
    var animal = Animal(name: "cat")
    print("before closure:\(animal)")

    delay(1) { [constantAnimal = animal] in
        print("inside closure1 constantAnimal:\(constantAnimal)")
        print("inside closure1:\(animal)")

        animal = Animal(name: "snake")
        print("inside closure1 animal changed:\(animal)")
    }

    animal = Animal(name: "dog")
    print("animal changed:\(animal)")

    delay(2) { [constantAnimal = animal] in
        print("inside closure2 constantAnimal:\(constantAnimal)")
        print("inside closure2:\(animal)")

        animal = Animal(name: "bear")
        print("inside closure2 animal changed:\(animal)")
    }
}

看看会是神马结果??

后语

  1. swift闭包默认持有变量的reference
  2. swift闭包默认在执行时才计算捕获变量的值
  3. 可在swift闭包中修改捕获变量的值
  4. 使用capture list,做变量的constant copy捕获。

原文在此

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

推荐阅读更多精彩内容

  • 以下翻译自Apple官方文档,结合自己的理解记录下来。翻译基于 swift 3.0.1 原文地址 Closure...
    艺术农阅读 1,526评论 0 3
  • 本章将会介绍 闭包表达式尾随闭包值捕获闭包是引用类型逃逸闭包自动闭包枚举语法使用Switch语句匹配枚举值关联值原...
    寒桥阅读 1,558评论 0 3
  • 闭包是自包含的函数代码块,可以在代码中被传递和使用。Swift 中的闭包与 C 和 Objective-C 中的代...
    穷人家的孩纸阅读 1,704评论 1 5
  • 我喜欢书法与盆景 但我特别喜欢写单字 如:龙、虎、鳯、舞、……等! 今睌写个虎字 发扵爱好书法的友人 共同交流学习!
    老武家阅读 4,105评论 2 4
  • 二阶段 片段一 《作业》 I:有效的对话尤其是和上司应该是从结论开始的,这种对话的方式有三种,1、用习惯性的说话方...
    麦冬1108阅读 202评论 1 0