函数(Functions)

函数的概念:

函数也叫做方法,是有名字的闭包。

函数的参数:

无参数
func sayHelloWorld() -> String {
        return "hello, world"
}
print(sayHelloWorld())```
#####有多个参数且未定义外部参数

func sayHello(personName: String, alreadyGreeted: Bool) -> String {
if alreadyGreeted {
return sayHelloAgain(personName)
} else {
return sayHello(personName)
}
}
print(sayHello("Tim", alreadyGreeted: true))
//多个参数调用时,如果没有声明外部参数第一个参数不用写外部参数。
// Prints "Hello again, Tim!" ```

有多个参数并且第一个参数定义了外部参数这时第一个参数的外部参数不能省略
func sayHello(personName personName: String,alreadyGreeted alreadyGreeted: Bool) -> String {
      if alreadyGreeted {
               return sayHelloAgain(personName)
        } else {
                return sayHello(personName)
 }
 }
 print(sayHello(personName: "Tim", alreadyGreeted: true))
 //多个参数调用时,如果声明了外部参数第一个参数需要写外部参数。
 // Prints "Hello again, Tim!"```
#####有多个参数且在参数名前面加“_”,调用时不需要写外部参数名

func sayHello(personName: String, _ alreadyGreeted: Bool) -> String {
if alreadyGreeted {
return sayHelloAgain(personName)
} else {
return sayHello(personName)
}
}
print(sayHello("Tim", true))
//多个参数调用时,声明参数名前面加“_”,调用时不需要写外部参数名。
// Prints "Hello again, Tim!"```

带有默认参数调用的时候可以不用传参则使用默认参数
func someFunction(parameterWithDefault: Int = 12) {
 // function body goes here
 // if no arguments are passed to the function call,
 // value of parameterWithDefault is 12
 }
 someFunction(6) // parameterWithDefault is 6
 someFunction() // parameterWithDefault is 12```
#####可变参数,在参数类型后面加“...”代表参数个数可变但是每个函数最多只有一个可变参数

func arithmeticMean(numbers: Double...) -> Double {
var total: Double = 0
for number in numbers {
total += number
}
return total / Double(numbers.count)
}
arithmeticMean(1, 2, 3, 4, 5)
// returns 3.0, which is the arithmetic mean of these five numbers
arithmeticMean(3, 8.25, 18.75)
// returns 10.0, which is the arithmetic mean of these three numbers```

函数通过传引用,通过在参数名前面加上inout关键字
func swapTwoInts(inout a: Int, inout _ b: Int) {
          let temporaryA = a
          a = b
          b = temporaryA
 }
 var someInt = 3
 var anotherInt = 107
 swapTwoInts(&someInt, &anotherInt)
 print("someInt is now \(someInt), and anotherInt is now \(anotherInt)")
 // Prints "someInt is now 107, and anotherInt is now 3"```
####函数的返回值:
#####因为函数没有返回值所以这里不需要写返回值得箭头"->"

func sayGoodbye(personName: String) {
print("Goodbye, (personName)!")
}
sayGoodbye("Dave")
// Prints "Goodbye, Dave!"```

函数只有一个返回值
func printAndCount(stringToPrint: String) -> Int {
       print(stringToPrint)
return stringToPrint.characters.count
}
let count = printAndCount("hello, world")
// prints "hello, world" and returns a value of 12```
#####函数还可以有多个返回值

func minMax(array: [Int]) -> (min: Int, max: Int) {
var currentMin = array[0]
var currentMax = array[0]
for value in array[1..<array.count] {
if value < currentMin {
currentMin = value
} else if value > currentMax {
currentMax = value
}
}
return (currentMin, currentMax)
}
let bounds = minMax([8, -6, 2, 109, 3, 71])
print("min is (bounds.min) and max is (bounds.max)")
// 通过这样的方式接收多个返回值```

函数有可选返回值时在返回值括号外加“?”可以返回nil
func minMax(array: [Int]) -> (min: Int, max: Int)? {
    if array.isEmpty { return nil }
         var currentMin = array[0]
         var currentMax = array[0]
    for value in array[1..<array.count] {
          if value < currentMin {
              currentMin = value
           } else if value > currentMax {
               currentMax = value
        }
   }
     return (currentMin, currentMax)
 }```
####函数类型:
#####函数类型和其他类型一样使用这就意味着函数可以先声明再赋值并且让函数可以像参数一样传递,像参数一样返回
定义一个函数类型为(Int, Int) -> Int的函数他表示有两个Int型参数和一个Int型返回值的类型,addTwoInts对mathFunction这个函数赋值

func addTwoInts(a: Int, _ b: Int) -> Int {
return a + b
}
var mathFunction: (Int, Int) -> Int = addTwoInts
//函数类型做为参数类型使用定义一个名为mathFunction的参数的printMathResult函数并把上文的addTwoInts函数传入其中
func printMathResult(mathFunction: (Int, Int) -> Int, _ a: Int, _ b: Int) {
print("Result: (mathFunction(a, b))")
}
printMathResult(addTwoInts, 3, 5)
// Prints "Result: 8"```

函数类型做为返回值类型使用
//定义chooseStepFunction函数它的返回值是一个参数为Int返回值为Int的函数当Bool为true时返回stepBackward 当Bool为false时返回stepForward
 func stepForward(input: Int) -> Int {
         return input + 1
 }
 func stepBackward(input: Int) -> Int {
         return input - 1
 }
 func chooseStepFunction(backwards: Bool) -> (Int) -> Int {
         return backwards ? stepBackward : stepForward
 }
 var currentValue = 3
 let moveNearerToZero = chooseStepFunction(currentValue > 0)
        // moveNearerToZero now refers to the stepBackward() function```
####函数里面定义函数:
Swift在函数中还可以声明和调用函数,如在chooseStepFunction函数中声明stepForward函数和stepBackward函数。并作为返回值返回

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
}```

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,098评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,213评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,960评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,519评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,512评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,533评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,914评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,574评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,804评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,563评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,644评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,350评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,933评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,908评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,146评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,847评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,361评论 2 342

推荐阅读更多精彩内容

  • [The Swift Programming Language 中文版]本页包含内容: 函数是用来完成特定任务的独...
    风林山火阅读 470评论 0 0
  • 函数是用来完成特定任务的独立的代码块。可以给函数起一个名字,用于标识一个函数,当函数需要执行的时候,这个名字就会用...
    EndEvent阅读 742评论 1 3
  • 86.复合 Cases 共享相同代码块的多个switch 分支 分支可以合并, 写在分支后用逗号分开。如果任何模式...
    无沣阅读 1,340评论 1 5
  • 多重返回值函数 你可以用元组(tuple)类型让多个值作为一个复合值从函数中返回。 下例中定义了一个名为 minM...
    雨影阅读 141评论 0 0
  • 本页包含内容:- 函数定义与调用- 函数参数与返回值- 函数参数标签和参数名称- 函数类型- 嵌套函数 ** 1、...
    平凡之路561阅读 129评论 0 0