首先是函数的创建:
func sayHello (name:String) -> String { return "Hello"+name }
当函数没有返回值的时候可以这样写:
func sayHello (name:String) -> Void { } 或者 func sayHello (name:String) -> () { }
需要注意的是Void 的V是大写的,因为Void是一个类型。
当有多个返回值的时候可以利用元组作为返回类型
func findMaxAndMin(numbers:[Int])->(maxValue:Int,minVlue:Int){
return (maxValue,minVlue)
}
let result = findMaxAndMin([1,2,3,4,5,6])
result.maxValue
result.minValue
返回值需要与声明中的返回值名称一致。
为了防止传入的值为空,需要改为可选型:
func findMaxAndMin(numbers:[Int])->(maxValue:Int,minVlue:Int)?{ guard numbers.count > 0 else{ return nil } return (maxValue,minVlue) }
通过guard关键字进行判断,在可选型中我们已经讲过了
原文链接:/swift/321247.html