Swift返回值
示例
函数可以通过在参数列表后指定类型来返回值。
func findHypotenuse(a: Double, b: Double) -> Double { return sqrt((a * a) + (b * b)) } let c = findHypotenuse(3, b: 5) //c=5.830951894845301
函数也可以使用元组返回多个值。
func maths(number: Int) -> (times2: Int, times3: Int) { let two = number * 2 let three = number * 3 return (two, three) } let resultTuple = maths(5) //resultTuple=(10,15)