【LearnSwift】函数和闭包

下载源码

下载地址

源码

import UIKit

// 省略外部参数名用"_"
func someFunction(firstParameterName: Int, _ secondParameterName: Int) {

    print("\(firstParameterName),\(secondParameterName)")
}

// 函数参数增加缺省值
func aFunction(paremeterWithDefault: Int = 12) {

    print("\(paremeterWithDefault)")
}

// 参数数量可变
func arithmeticMean(numbers: Double...) -> Double {

    var total: Double = 0
    
    for number in numbers {
    
        total += number
    }
    
    return total / Double(numbers.count)
}

// 形参作为变量
func aliginRight(var string: String, totalLength: Int, pad: Character) -> String {

    let amountToPad = totalLength - string.characters.count
    
    if amountToPad < 1 {
    
       return string
    }
    
    let padString = String(pad)
    
    for _ in 1 ... amountToPad {
    
        string = padString + string
    }
    
    return string
}

// 函数操作实参
func swapTwoInts(inout a: Int, inout b: Int) {

    let temporyA = a
    
    a = b
    
    b = temporyA
}

// 函数类型
func addTwoInts(a: Int, _ b: Int) -> Int {

    return a + b
}

func multiplyTwoInts(a: Int, b: Int) -> Int {

    return a * b
}

// 函数作为参数
func printMathResult(mathFunction: (Int, Int) -> Int, _ a: Int, _ b: Int) {

    print("Result: \(mathFunction(a, b))")
}

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
}

// 嵌套函数
func anotherChooseStepFunction(backwards: Bool) -> (Int) -> Int {

    func stepForward(input: Int) -> Int {
    
        return input + 1
    }
    
    func stepBackward(input: Int) -> Int {
    
        return input - 1
    }
    
    return backwards ? stepBackward : stepForward
}

// 闭包
// 闭包形式
//    {(<#parameters#>) -> <#returen type#> in
//    
//        <#statements#>
//    }

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

    return s1 > s2
}


class ViewController: UIViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        
       /* ------------------------------------------
        * 省略外部参数名
        * ------------------------------------------*/
        someFunction(1, 2)
        // 打印 "1,2"
        
        /* ------------------------------------------
        * 函数参数增加缺省值
        * ------------------------------------------*/
        aFunction()
        // 打印 "12"
        
        aFunction(22)
        // 打印 "22"
        
        /* ------------------------------------------
        * 参数数量可变
        * ------------------------------------------*/
        print("\(arithmeticMean(1, 2, 3, 4, 5))")
        // 打印 "3.0"
    
        /* ------------------------------------------
        * 形参作为变量
        * ------------------------------------------*/
        let aliginString = aliginRight("hello", totalLength: 10, pad: "*")
        
        print(aliginString)
       // 打印 "*****hello"
        
        /* ------------------------------------------
        * 函数操作实参
        * ------------------------------------------*/
        var someInt = 3
        
        var anotherInt = 10
        
        swapTwoInts(&someInt, b: &anotherInt)
        
        print(" now someInt is \(someInt),anotherInt is \(anotherInt) ")
        // 打印 " now someInt is 10,anotherInt is 3"
        
        /* ------------------------------------------
        * 函数作为数据类型
        * ------------------------------------------*/
        var mathFunction:(Int, Int) -> Int = addTwoInts
        
        print("Result: \(mathFunction(2, 3))")
        // 打印 "Result: 5"
        
        mathFunction = multiplyTwoInts
        print("Result: \(mathFunction(2, 3))")
        // 打印 "Result: 6"
        
        /* ------------------------------------------
        * 函数作为参数
        * ------------------------------------------*/
        printMathResult(addTwoInts, 3, 5)
        // 打印 "Result: 8"
        
        /* ------------------------------------------
        * 函数作为返回值
        * ------------------------------------------*/
        var currentValue = 3
        
        let moveNearerToZero = chooseStepFunction(currentValue > 0)
        
        while currentValue != 0 {
        
            print("\(currentValue)...")
            
            currentValue = moveNearerToZero(currentValue)
        }
        
        print("Zero!")
        
        /* ------------------------------------------
        * 闭包
        * ------------------------------------------*/
        let names = ["Chris", "Alex", "Ewa", "Barry", "Daniella"]
        
        var reversed = names.sort(backwards)

        print(reversed)
        // 打印 "["Ewa", "Daniella", "Chris", "Barry", "Alex"]"
        
        // 闭包实现
        reversed = names.sort({
            
            (s1: String, s2: String) -> Bool in return s1 > s2
        })
        
        // 简化
        reversed = names.sort({
        
            s1, s2 in return s1 > s2
        })
        
        // 单行表达式可以进一步简化
        reversed = names.sort({
        
            s1, s2 in s1 > s2
        })
        
        // 再次简化
        reversed = names.sort({
        
            $0 > $1
        })
        
        // 最简
        reversed = names.sort(>)
        
        /* ------------------------------------------
        * 尾随闭包(Trailing Closure)
        * ------------------------------------------*/
        
        //拥有闭包的函数
        func someFunctionThatTakesAClosure(closure: () -> Void) {
        
            // 函数体
        }
        
        // 没有使用尾随
        someFunctionThatTakesAClosure({
        
            // 实现
        })
        
        // 使用尾随
        someFunctionThatTakesAClosure() {
        
            // 实现
        }
        
        // 尾随举例
        reversed = names.sort() {$0 > $1}
        
        // 如果闭包是函数的唯一参数,则函数的括号可省
        reversed = names.sort {$0 > $1}
        
        let digitNames = [
        
            0: "Zero",
            1: "One",
            2: "Two",
            3: "Three",
            4: "Four",
            5: "Five",
            6: "Six",
            7: "Seven",
            8: "Eight",
            9: "Nine"
        ]
        
        let numbers = [16, 58, 510]
        
        let stringNumbers = numbers.map {
        
            (var number) -> String in
            
            var output = ""
            
            while number > 0 {
            
                output = digitNames[number % 10]! + output
                
                number /= 10
            }
            
            return output
        }
        
        print(stringNumbers)
        
    // 函数和闭包是值类型,意味着它可以捕获并引用上下文变量的值
        
        var runningTotal = 0
        
        func makeIncreamenter(forIncrement amout: Int) -> () -> Int {
        
            
            
            func increment() -> Int {
            
                runningTotal += amout
                
                return runningTotal
            }
            
            return increment
        }
        
        let incrementByTen = makeIncreamenter(forIncrement: 10)
        
        print(incrementByTen())
        // 打印 "10"
        
        print(incrementByTen())
        // 打印 "20"
        
        print(runningTotal)
        // 打印 "20"
        
        runningTotal = 100
        
        print(incrementByTen())
        // 打印 "110"
        
        var customersInLine = ["Chris", "Alex", "Ewa", "Barry", "Daniella"]
        
        func serveCustomer(customerProvider: () -> String) {
        
            print("Now serving \(customerProvider())!")
        }
        
        serveCustomer({ customersInLine.removeAtIndex(0) })
        
        // @autoclosure 改变上面的函数,可以省略{}
        func anoterServeCustomers(@autoclosure customerProvider: () -> String) {
        
            print("Now serving \(customerProvider())!")
        }
        
        anoterServeCustomers(customersInLine.removeAtIndex(0))
        
        // @autoclosure默认@noescape,即闭包不可让外部使用
        // 若让外部使用,则用@autoclosure(escaping)修饰
        var customerProviders: [() -> String] = []
        
        func collectCustmoerProviders(@autoclosure(escaping) customerProvider: () -> String) {
        
            customerProviders.append(customerProvider)
            
            print("Collected \(customerProviders.count) closure")
        }
        
        collectCustmoerProviders(customersInLine.removeAtIndex(0))
        
        collectCustmoerProviders(customersInLine.removeAtIndex(0))
        
        for customerProvider in customerProviders {
        
            print("Now serving \(customerProvider())!")
        }
        
        
    }


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

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,506评论 25 707
  • 第一部分 插件的介绍 Google 在2013年5月的I/O开发者大会推出了基于IntelliJ IDEA Jav...
    Jannonx阅读 2,298评论 0 13
  • 我有一个朋友,年过三十,依然是一个人。 她长得很美,眼睛明亮,身材高挑。最重要的是,这个姑娘有温柔娴静的气质,待人...
    雨小影阅读 1,750评论 26 33
  • 时璟坐到副驾驶,等着于一肆和申莫梵一起回警局,他掏出手机点开微信,找到霓望的头像,手指点了几下,发过去一条消息:在...
    不想栽树阅读 266评论 0 2
  • 任何一个世界都有自己的度量单位和价值尺度。有车族会考虑某物价格大概等于加几桶油,瘦身一族看食物看到的都是卡路里,购...
    思潇爱墨阅读 303评论 0 3