Swift函数和闭包

 在 Swift 中,函数和闭包都是引用类型

常量形式参数

    func greet(from person: String = "Jack") -> String {

            "\(person) say: hello world"

        }

        print(greet(from: "Tom"))

可变形式参数

    func arithmeticMean(_ numbers: Double...) -> Double {

            var total: Double = 0

            for num in numbers {

                total+= num

            }

            return total / Double(numbers.count)

        }

        print(arithmeticMean(1, 2, 3, 5))

输入输出形式参数不能有默认值,可变形式参数不能标记为 inout

        var num1 = 1

        var num2 = 2

        func swapTwoInts(_ a: inout Int, _ b: inout Int) {

            let temp = a

            a = b

            b = temp

        }

        swapTwoInts(&num1, &num2)

        print("num1: \(num1), num2: \(num2)")

函数类型

每一个函数都有一个特定的函数类型,它由形式参数类型,返回类型组成

可以作为形式参数类型,作为返回类型,可以给一个常量或变量定义一个函数类型,并且为变量指定一个相应的函数

        typealias addTwoFunc = (Int, Int) -> Int

        func addTwoInts(_ a: Int, _ b: Int) -> Int {

            a+ b

        }

        let addTwo: addTwoFunc = addTwoInts

        print(addTwo(1, 2))

闭包

闭包是可以在你的代码中被传递和引用的功能性独立代码块。

闭包能够捕获和存储定义在其上下文中的任何常量和变量的引用

全局和内嵌函数,实际上是特殊的闭包。闭包符合如下三种形式中的一种:

1. 全局函数是一个有名字但不会捕获任何值的闭包;

2. 内嵌函数是一个有名字且能从其上层函数捕获值的闭包;

3. 闭包表达式是一个轻量级语法所写的可以捕获其上下文中常量或变量值的没有名字的闭包。

        var names = ["zhangsan", "lisi", "wangwu", "zhaoliu"]

常规写法

        func backward(_ s1: String, _ s2: String) -> Bool {

            s1< s2 // 单表达式闭包隐式返回

        }

        names.sort(by: backward)

        print(names)

使用闭包表达式

        names.sort(by: {(s1: String, s2: String) -> Bool in s1 < s2})

        print(names)

 从语境中推断类型

        names.sort(by: {s1, s2 in s1 < s2})

        print(names)

 Swift 自动对行内闭包提供简写实际参数名,可以通过 $0 , $1 , $2 等名字来引用闭包的实际参数值

        names.sort(by: {$0 < $1})

        print(names)

 尾随闭包,如果你需要将一个很长的闭包表达式作为函数最后一个实际参数传递给函数,使用尾随闭包将增强函数的可读性。尾随闭包是一个被书写在函数形式参数的括号外面(后面)的闭包表达式。

        names.sort{$0 < $1}

        print(names)

逃逸闭包:当闭包作为一个实际参数传递给一个函数的时候,并且它会在函数返回之后调用,我们就说这个闭包逃逸了。当你声明一个接受闭包作为形式参数的函数时,你可以在形式参数前写 @escaping 来明确闭包是允许逃逸的

自动闭包是一种自动创建的用来把作为实际参数传递给函数的表达式打包的闭包。它不接受任何实际参数,并且当它被调用时,它会返回内部打包的表达式的值(没有参数) 你可以在形式参数前写 @autoclosure 来明确自动闭包

自动闭包允许你延迟处理,因此闭包内部的代码直到你调用它的时候才会运行。对于有副作用或者占用资源的代码来说很有用

        var customers = ["a", "b"]

        //自动+逃逸

        var customerProviders: [() -> String] = []

        func collectCustomerProviders(_ customerProvider: @autoclosure @escaping () -> String) {

            customerProviders.append(customerProvider)

        }

        collectCustomerProviders(customers.remove(at: 0))

//        collectCustomerProviders({customers.remove(at: 0)}) //没有 @autoclosure

        for customerProvider in customerProviders {

            print(customerProvider())

        }

高阶函数

map: 对于原始集合里的每一个元素,以一个变换后的元素替换之形成一个新的集合

filter: 对于原始集合里的每一个元素,通过判定来将其丢弃或者放进新集合

reduce: 对于原始集合里的每一个元素,作用于当前累积的结果上

flatMap: 对于元素是集合的集合,可以得到单级的集合

compactMap: 过滤空值

函数式编程

需求:读入一个文本文件,确定所有单词的使用频率并从高到低排序,打印出所有单词及其频率的排序列表

let NON_Words: Set<String> = ["the", "and", "of", "to", "a", "i", "it", "in",

        "or", "is", "as", "so", "but", "be"]

        let words = """

        There are moments in life when you miss someone so much that you just want to pick them from your dreams and hug them for real Dream what you want to dream go where you want to go be what you want to be because you have only one life and one chance to do all the things you want to do

        """

        func wordFreq(words: String) -> [String: Int] {

            var wordDict: [String: Int] = [:]

            let wordList = words.split(separator: " ")

            wordList.map({$0.lowercased()})

                .filter({!NON_Words.contains($0)})

                .forEach({

                    wordDict[$0] = (wordDict[$0] ??0) + 1

                })

            return wordDict

        }

        print(wordFreq(words: words))

函数式语⾔提倡在有限的⼏种关键数据结构(如 list、set、map)上运⽤针对这些数据结构⾼度优化过的操作,以此构成基本的运转机构。开发者再根据具体⽤途,插⼊⾃⼰的数据结构和⾼阶函数去调整机构的运转⽅式。

你可能感兴趣的:(Swift函数和闭包)