swift 闭包中怎么调用方法

swift 闭包中怎么调用方法


慕妹3146593
浏览 1404回答 2
2回答

qq_笑_17

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