gpt4 book ai didi

Swift 闭包和一流函数之间有什么区别?

转载 作者:IT王子 更新时间:2023-10-29 05:40:48 27 4
gpt4 key购买 nike

Apple 在 Swift 文档中是这样说的:

Closures are self-contained blocks of functionality that can be passed around and used in your code. Closures in Swift are similar to blocks in C and Objective-C and to lambdas in other programming languages.

我认为这是 First-class functions 的定义

他们也这样说:

Closures can capture and store references to any constants and variables from the context in which they are defined. This is known as closing over those constants and variables. Swift handles all of the memory management of capturing for you.

我认为这是闭包的定义,而另一个定义是针对一等函数的,但 Apple 似乎将它们放在一起并称之为闭包。

我是不是误会了什么?还是 Apple 调用闭包和一流函数闭包?

我已经编写了这个示例代码,只是想知道我在书面评论中是否正确?

// 'a' takes a first class function, which makes 'a' a higher order function
func a(ch: () -> Void){
print("Something")
ch() // 'ch' is a first class function
print("Ended")
}

func closureFunc(){
var num = 2
a({
// access to 'num' is possible by closures
num = num*2
print(num)
})
}

closureFunc()

最佳答案

First Class Function 是一种语言功能,允许将函数分配给变量并像传递任何其他类型的数据一样传递。闭包、lambda 和匿名函数都是“一等函数”。

Anonymous Functions,也称为 Lambda 函数,是没有名称的函数(例如 a(ch:) 有名字)。因为它们没有名称,所以使用它们的唯一方法是将它们存储在变量中或将它们作为参数传递(参数本质上是变量)。因此,所有匿名函数也是一等函数。

闭包 是捕获其周围状态的一流函数。他们可以是匿名的,也可以有名字。命名闭包只是您的常规 func 函数。

a(ch:) 是高阶函数,正确。

ch 是一个一级函数(因为它存储在一个变量中),一个 Lambda(与 FCF 同义),也可能是一个闭包,这取决于它的主体是否引用任何外部变量。

在使用该 block 调用 a(ch:) 的情况下,ch 是一个闭包,因为它正在捕获 num

关于Swift 闭包和一流函数之间有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37531840/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com