刚接触 Swift 的开发者,很不解的一点是为什么 Swift 的闭包会长下面这样:
Game(numberofCards:4){ index in
return "hello"
}
不理解是正常的,因为上面的闭包其实是经过很多步骤的缩写,最终演化成如此简洁的形式,只要我们把每个简化的步骤一步步写出来,就很好理解了:
正常的函数长这样:
func normal(index: Int) -> String {
return "hello"
}
把前面的func和normal去掉就是匿名函数的样子:
(index: Int) -> String {
return "hello"
}
把匿名函数作为参数传入函数时,
Game(numberofCards:4, content: (index: Int) -> String {
return "hello"
})
再把大括号提前:
Game(numberofCards:4, content: {(index: Int) -> String
return "hello"
})
增加 in 区分参数和函数:
Game(numberofCards:4, content: { (index: Int) -> String in
return "hello"
})
由于编译器知道参数和返回的类型,所以可以省略:
Game(numberofCards:4, content: { index in
return "hello"
})
因为 index 没有用到,可以省略:
Game(numberofCards:4){ _ in
return "hello"
}
本文首发于公众号「原住民的自修室」,记录一名产品经理的生活,随想和思考,欢迎订阅。