var someInt: Int = 7
Int 就是表示someInt的类型,同理,这个Int也可以换成函数类型,所以也可以像其他类型那样使用函数类型
函数类型主要由三种用途:(一)就是上面说的了 (二)作为参数(三)作为返回类型
再加一个,就是函数也可以嵌套(nested)
let math: (Int,Int) -> Int = addTwoInts printMathResult(math,a: 9,b: 9) //printMathResult(math,9,9)
func addTwoInts(a:Int,b:Int) -> Int { return a + b }
func printMathResult(mathFunction: (Int,Int) -> Int,a: Int,b: Int) { print("mathResult:\(mathFunction(a,b))") } // func printMathResult(mathFunction: (Int,_ a: Int,_ b: Int) { print("mathResult:\(mathFunction(a,b))") }let math: (Int,Int) -> Int = addTwoInts 这里就定义了math 为一个接收两个Int型参数并且有返回值且返回为Int型的函数类型
addTwoInts就是定义一个普通函数
printMathResult由函数名字就猜得到这个函数实现的打印功能,并且接收三个参数,第一个参数类型要是函数类型,第二和第三个是两个Int型
两处加//处的地方和上面一行是等效的,只是形参名字省不省略而已
线面看一个嵌套的例子(嵌套就是在一个函数里面可以继续写函数)
var currentValue = -4 let moveNearZero = chooseStepFunction(currentValue > 0) while currentValue != 0 { print("\(currentValue)..") currentValue = moveNearZero(currentValue) } print("zero!") } func chooseStepFunction(backwards: Bool) -> (Int) -> Int { func stepForward(input: Int) -> Int { return input + 1 } func stepBackward(input: Int) -> Int { return input - 1 } return backwards ? stepBackward : stepForward }
这里面既包括了函数嵌套,也包括了函数可以作为返回类型
下面我会好好研究下闭包,在写博客,谢谢
原文链接:https://www.f2er.com/swift/326407.html