gpt4 book ai didi

swift - Swift 中 auto 和 escaping 闭包的区别和目的是什么?

转载 作者:可可西里 更新时间:2023-10-31 23:56:47 27 4
gpt4 key购买 nike

我正在寻找 Swift 中自动闭包和转义闭包的一些区别/目的。我很清楚转义闭包是我们想要在函数返回后执行的东西,但我没有得到自动闭包的概​​念。

最佳答案

I didn't get the concept of autoclosure closure.

autoclosure 允许函数将表达式包装在闭包中,以便稍后执行或根本不执行。

使用自动关闭 的一个很好的例子是 short-circuit || 发生的行为。

考虑这个例子:

func willCrash() -> Bool {
fatalError()
return true
}

let good = true

if good || willCrash() {
print("made it")
}

输出:

made it

|| 运算符使用短路求值:首先求值左侧 (lhs),只有当 lhs 求值为 false 时才求值右侧 (rhs)。

那么,它是如何实现的呢?好吧,|| 只是一个函数,它接受两个参数,每个参数的计算结果都是一个 Bool 并且 || 将它们组合起来返回一个 bool 。但在 Swift 中函数的正常调用方案中,参数在调用函数之前被求值。如果 || 以显而易见的方式实现:

func ||(lhs: Bool, rhs: Bool) -> Bool {
return lhs ? true : rhs
}

它会因为在 || 被调用之前执行 willCrash() 而崩溃。所以 || 使用 autoclosure 将第二个语句包装在一个闭包中,这样它就可以延迟评估直到在 || 函数中。如果第一个语句(在调用 || 之前评估)是 true 那么 || 的结果是 true 并且不调用闭包,从而避免了本例中的崩溃。

这里是||的定义:

static func ||(lhs: Bool, rhs: @autoclosure () throws -> Bool) rethrows -> Bool

Description Performs a logical OR operation on two Bool values. The logical OR operator (||) combines two Bool values and returns true if at least one of the values is true. If both values are false, the operator returns false.

This operator uses short-circuit evaluation: The left-hand side (lhs) is evaluated first, and the right-hand side (rhs) is evaluated only if lhs evaluates to false.

忽略 throws/rethrows 这是另一个主题,|| 的实现变为:

func ||(lhs: Bool, rhs: @autoclosure () -> Bool) -> Bool {
return lhs ? true : rhs()
}

rhs() 仅在 lhs == false 时调用。

关于swift - Swift 中 auto 和 escaping 闭包的区别和目的是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45658608/

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