我正在使用完成处理程序来总结数字.我不明白的是,如果我在2行中破解我的代码,执行次数将从6变为7!为什么?
原文链接:https://www.f2er.com/swift/320135.htmlfunc summer (from : Int,to: Int,handler: (Int) -> (Int)) -> Int { var sum = 0 for i in from...to { sum += handler(i) } return sum } summer(1,to:6){ //Shows '21' return $0} // shows '(6 times)' // Same code,but in 1 line summer(1,to:6){return $0} // shows '(7 times)'