Swift 函数类型作为返回值使用

前端之家收集整理的这篇文章主要介绍了Swift 函数类型作为返回值使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

func intcrease(input: Int) ->Int {

return input + 1

}


func reduce(input:Int) ->Int {

return input - 1

}


func chooseFunction(backwards:Bool) -> (Int) -> Int {

return backwards ? reduce : intcrease

}


黄色部分为 函数参数,而绿色部分为返回值,chooseFunction 这个函数中的返回值是一个 参数为Int 返回值为 Int的函数 (Int) -> Int.

原文链接:https://www.f2er.com/swift/327133.html

猜你在找的Swift相关文章