swift 之 如何在函数中把闭包作为参数 进行回
发布网友
发布时间:2023-10-16 15:46
我来回答
共1个回答
热心网友
时间:2024-12-01 08:32
func calc(x: Int, y: Int, callback: @escaping (Int, Int) -> Int) -> Int {
return callback(x, y)
}
let add = calc(x: 1, y: 2) { return $0 + $1 }
let rece = calc(x: 4, y: 3) { x, y in return x - y }
print(add, rece)