Swift 3 函数

Swift 函数用来完成特定任务的独立的代码块

Swift使用一个统一的语法来表示简单的C语言风格的函数到复杂的Objective-C语言风格的方法

  • 函数声明: 告诉编译器函数的名字,返回类型及参数
  • 函数定义: 提供了函数的实体

Swift 函数包含了参数类型及返回值类型:

函数定义

Swift 定义函数使用关键字 func

定义函数的时候,可以指定一个或多个输入参数和一个返回值类型。

每个函数都有一个函数名来描述它的功能。通过函数名以及对应类型的参数值来调用这个函数。函数的参数传递的顺序必须与参数列表相同。

函数的实参传递的顺序必须与形参列表相同, -> 后定义函数的返回值类型

语法

  1. func funcname(形参) -> returntype
  2. {
  3. Statement1
  4. Statement2
  5. ……
  6. Statement N
  7. return parameters
  8. }

范例

下面的代码定义了一个函数名为 hello 的函数

形参的数据类型为 String,返回值也为 String:

  1. import Cocoa
  2. func hello(site: String) -> String {
  3. return (site)
  4. }
  5. print(hello(site: "www.baidu.com"))

编译运行以上 Swift 范例,输出结果为

  1. $ swift main.swift
  2. www.baidu.com

函数调用

可以通过函数名以及对应类型的参数值来调用函数,函数的参数传递的顺序必须与参数列表相同

范例

下面的代码定义了一个函数名为 hello 的函数,形参 site 的数据类型为 String

然后调用函数传递的实参也必须 String 类型,实参传入函数体后,将直接返回,返回的数据类型为 String

  1. import Cocoa
  2. func hello(site: String) -> String
  3. {
  4. return (site)
  5. }
  6. print( hello(site: "www.baidu.com"))

编译运行以上 Swift 范例,输出结果为

  1. $ swift main.swift
  2. www.baidu.com

函数参数

函数可以接受一个或者多个参数,这些参数被包含在函数的括号之中,以逗号分隔

范例

下面的范例向函数 hello 传递站点名 name 和站点地址 site

  1. import Cocoa
  2. func hello(name: String, site: String) -> String
  3. {
  4. return name + site
  5. }
  6. print(hello(name: "baidu:", site: "www.baidu.com"))
  7. print(hello(name: "Google:", site: "www.google.com"))

编译运行以上 Swift 范例,输出结果为

  1. $ swift main.swift
  2. baiduwww.baidu.com
  3. Googlewww.google.com

不带参数函数

可以创建不带参数的函数

语法

  1. func funcname() -> datatype
  2. {
  3. return datatype
  4. }

范例

  1. import Cocoa
  2. func sitename() -> String
  3. {
  4. return "Swift编程"
  5. }
  6. print(sitename())

编译运行以上 Swift 范例,输出结果为

  1. $ swift main.swift
  2. Swift编程

元组作为函数返回值

函数返回值类型可以是字符串,整型,浮点型等

元组与数组类似,不同的是,元组中的元素可以是任意类型,使用的是圆括号

可以用元组(tuple)类型让多个值作为一个复合值从函数中返回

范例

下面的范例定义了一个名为 minMax(_:) 的函数,作用是在一个 Int 数组中找出最小值与最大值

  1. import Cocoa
  2. func minMax(array: [Int]) -> (min: Int, max: Int)
  3. {
  4. var currentMin = array[0]
  5. var currentMax = array[0]
  6. for value in array[1..<array.count] {
  7. if value < currentMin {
  8. currentMin = value
  9. } else if value > currentMax {
  10. currentMax = value
  11. }
  12. }
  13. return (currentMin, currentMax)
  14. }
  15. let bounds = minMax(array: [8, -6, 2, 109, 3, 71])
  16. print("最小值为 \(bounds.min) ,最大值为 \(bounds.max)")

minMax(_:)函数返回一个包含两个 Int 值的元组,这些值被标记为 min 和 max,以便查询函数的返回值时可以通过名字访问它们

编译运行以上 Swift 范例,输出结果为

  1. $ swift main.swift
  2. 最小值为 -6 ,最大值为 109

如果不确定返回的元组一定不为 nil,那么可以返回一个可选的元组类型

可以通过在元组类型的右括号后放置一个问号来定义一个可选元组,例如(Int, Int)? 或 (String, Int, Bool)?

注意可选元组类型如(Int, Int)? 与元组包含可选类型如 (Int?, Int?)是不同的可选的元组类型,整个元组是可选的,而不只是元组中的每个元素值

前面的minMax(:)函数返回了一个包含两个Int值的元组。但是函数不会对传入的数组执行任何安全检查,如果array参数是一个空数组,如上定义的minMax(:)在试图访问array[0]时会触发一个运行时错误。

为了安全地处理这个"空数组"问题,将minMax(_:)函数改写为使用可选元组返回类型,并且当数组为空时返回nil

  1. import Cocoa
  2. func minMax(array: [Int]) -> (min: Int, max: Int)? {
  3. if array.isEmpty { return nil }
  4. var currentMin = array[0]
  5. var currentMax = array[0]
  6. for value in array[1..<array.count] {
  7. if value < currentMin {
  8. currentMin = value
  9. } else if value > currentMax {
  10. currentMax = value
  11. }
  12. }
  13. return (currentMin, currentMax)
  14. }
  15. if let bounds = minMax(array: [8, -6, 2, 109, 3, 71]) {
  16. print("最小值为 \(bounds.min),组大值为 \(bounds.max)")
  17. }

编译运行以上 Swift 范例,输出结果为

  1. $ swift main.swift
  2. 最小值为 -6,组大值为 109

没有返回值函数

下面是 hello(_:) 函数的另一个版本,这个函数接收简单编程官网网址参数,没有指定返回值类型,并直接输出 String 值,而不是返回它

  1. import Cocoa
  2. func hello(site: String) {
  3. print("百度官网:\(site)")
  4. }
  5. hello(site: "https://www.baidu.com")

编译运行以上 Swift 范例,输出结果为

  1. $ swift main.swift
  2. 百度官网:https://www.baidu.com

函数参数名称

函数参数都有一个外部参数名和一个局部参数名

局部参数名

局部参数名在函数的实现内部使用

  1. func sample(number: Int)
  2. {
  3. println(number)
  4. }

上面的代码中,number 为局部参数名,只能在函数体内使用

  1. import Cocoa
  2. func sample(number: Int)
  3. {
  4. print(number)
  5. }
  6. sample(number: 1)
  7. sample(number: 2)
  8. sample(number: 3)

编译运行以上 Swift 范例,输出结果为

  1. $ swift main.swift
  2. 1
  3. 2
  4. 3

外部参数名

可以在局部参数名前指定外部参数名,中间以空格分隔,外部参数名用于在函数调用时传递给函数的参数

范例

下面的代码定义了两个函数参数名并调用它

  1. import Cocoa
  2. func pow(firstArg a: Int, secondArg b: Int) -> Int
  3. {
  4. var res = a
  5. for _ in 1..<b
  6. {
  7. res = res * a
  8. }
  9. print(res)
  10. return res
  11. }
  12. pow(firstArg:5, secondArg:3)

编译运行以上 Swift 范例,输出结果为

  1. $ swift main.swift
  2. 125

注意: 如果提供了外部参数名,那么函数在被调用时,必须使用外部参数名

可变参数

可变参数可以接受零个或多个值

函数调用时,可以用可变参数来指定函数参数,其数量是不确定的

可变参数通过在变量类型名后面加入(…)的方式来定义

  1. import Cocoa
  2. func vari<N>(members: N...){
  3. for i in members {
  4. print(i)
  5. }
  6. }
  7. vari(members: 4,3,5)
  8. vari(members: 4.5, 3.1, 5.6)
  9. vari(members: "Google", "Baidu", "Swift教程")

编译运行以上 Swift 范例,输出结果为

  1. $ swift main.swift
  2. 4
  3. 3
  4. 5
  5. 4.5
  6. 3.1
  7. 5.6
  8. Google
  9. Baidu
  10. Swift教程

常量,变量及 I/O 参数

一般默认在函数中定义的参数都是常量参数,也就是这个参数你只可以查询使用,不能改变它的值

如果想要声明一个变量参数,可以在参数定义前加 inout 关键字,这样就可以改变这个参数的值了

  1. func getName(_ name: inout String).........

此时这个 name 值可以在函数中改变

一般默认的参数传递都是传值调用的,而不是传引用

所以传入的参数在函数内改变,并不影响原来的那个参数。传入的只是这个参数的副本

当传入的参数作为输入输出参数时,需要在参数名前加 & 符,表示这个值可以被函数修改

  1. import Cocoa
  2. func swapTwoInts(_ a: inout Int, _ b: inout Int) {
  3. let temporaryA = a
  4. a = b
  5. b = temporaryA
  6. }
  7. var x = 1
  8. var y = 5
  9. swapTwoInts(&x, &y)
  10. print("x 现在的值 \(x), y 现在的值 \(y)")

swapTwoInts(::) 函数简单地交换 a 与 b 的值。该函数先将 a 的值存到一个临时常量 temporaryA 中,然后将 b 的值赋给 a,最后将 temporaryA 赋值给 b。

需要注意的是,someInt 和 anotherInt 在传入 swapTwoInts(::) 函数前,都加了 & 的前缀。

编译运行以上 Swift 范例,输出结果为

  1. $ swift main.swift
  2. x 现在的值 5, y 现在的值 1

函数类型及使用

每个函数都有种特定的函数类型,由函数的参数类型和返回类型组成

  1. func inputs(no1: Int, no2: Int) -> Int
  2. {
  3. return no1/no2
  4. }

inputs 函数类型有两个 Int 型的参数(no1、no2)并返回一个 Int 型的值

  1. import Cocoa
  2. func inputs(no1: Int, no2: Int) -> Int
  3. {
  4. return no1/no2
  5. }
  6. print(inputs(no1: 20, no2: 10))
  7. print(inputs(no1: 36, no2: 6))

编译运行以上 Swift 范例,输出结果为

  1. $ swift main.swift
  2. 2
  3. 6

以上函数定义了两个 Int 参数类型,返回值也为 Int 类型

接下来我们看下如下函数,函数定义了参数为 String 类型,返回值为 String 类型

  1. func inputstr(name: String) -> String
  2. {
  3. return name
  4. }

函数也可以定义一个没有参数,也没有返回值的函数

  1. import Cocoa
  2. func inputstr()
  3. {
  4. print("baidu")
  5. print("www.baidu.com")
  6. }
  7. inputstr()

编译运行以上 Swift 范例,输出结果为

  1. $ swift main.swift
  2. baidu
  3. www.baidu.com

使用函数类型

在 Swift 中,使用函数类型就像使用其他类型一样

例如,可以定义一个类型为函数的常量或变量,并将适当的函数赋值给它

  1. var addition: (Int, Int) -> Int = sum

定义一个叫做 addition 的变量,参数与返回值类型均是 Int,并让这个新变量指向 sum 函数

sumaddition 有同样的类型,所以以上操作是合法的

现在可以用 addition 来调用被赋值的函数了

  1. import Cocoa
  2. func sum(a: Int, b: Int) -> Int
  3. {
  4. return a + b
  5. }
  6. var addition: (Int, Int) -> Int = sum
  7. print("输出结果: \(addition(40, 89))")

编译运行以上 Swift 范例,输出结果为

  1. $ swift main.swift
  2. 输出结果: 129

函数类型作为参数类型、函数类型作为返回类型

可以将函数作为参数传递给另外一个参数

  1. import Cocoa
  2. func sum(a: Int, b: Int) -> Int
  3. {
  4. return a + b
  5. }
  6. var addition: (Int, Int) -> Int = sum
  7. print("输出结果: \(addition(40, 89))")
  8. func another(addition: (Int, Int) -> Int, a: Int, b: Int)
  9. {
  10. print("输出结果: \(addition(a, b))")
  11. }
  12. another(addition: sum, a: 10, b: 20)

编译运行以上 Swift 范例,输出结果为

  1. $ swift main.swift
  2. 输出结果: 129
  3. 输出结果: 30

函数嵌套

函数嵌套指的是函数内定义一个新的函数,外部的函数可以调用函数内定义的函数

  1. import Cocoa
  2. func calcDecrement(forDecrement total: Int) -> () -> Int
  3. {
  4. var overallDecrement = 0
  5. func decrementer() -> Int
  6. {
  7. overallDecrement -= total
  8. return overallDecrement
  9. }
  10. return decrementer
  11. }
  12. let decrem = calcDecrement(forDecrement: 30)
  13. print(decrem())

编译运行以上 Swift 范例,输出结果为

  1. $ swift main.swift
  2. -30