gpt4 book ai didi

swift - Swift 上的高阶函数

转载 作者:行者123 更新时间:2023-11-28 08:03:47 26 4
gpt4 key购买 nike

我想使用 this我自己的项目,但我尝试使用它的每个函数,但是当我使用 Derivative 时,我找不到语法

原函数为:

postfix operator ′{}
postfix func ′(function: (Double) -> (Double)) -> (Double) -> (Double) {
let h = 1e-3
return { (x) in
return round((function(x + h) - function(x - h)) / (2 * h) / h) * h
}
}

我找到了 swift 3.0 更新

postfix operator ′
postfix func ′(function: @escaping (Double) -> (Double)) -> (Double) -> (Double) {
let h = 1e-3
return { (x) in
return round((function(x + h) - function(x - h)) / (2 * h) / h) * h
}
}

但我找不到如何使用它,我知道它是一个 HOF,但也许你可以帮助我了解语法?

最佳答案

例子:

let result = ({ (d:Double) -> Double in return d*d }′)(100)

在现实生活中你可能会把它拆开:

func f (d:Double) -> Double { return d*d }
let ff = f′
let result = ff(100) // 200

关于swift - Swift 上的高阶函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45766674/

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