swift 闭包中怎么调用方法

swift 闭包中怎么调用方法


呼唤远方
浏览 562回答 2
2回答

拉风的咖菲猫

12345678func 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 reduce = calc(x: 4, y: 3) { x, y in return x - y } print(add, reduce) 
打开App,查看更多内容
随时随地看视频慕课网APP