//: Playground - noun: a place where people can play import UIKit /*---------------------------返回函数类型-----------------------------*/ // 其实就是将函数当为返回值返回 func tier1MailFee(weight:Int) -> Int { // 第一种邮费计算方式 return 1 * weight } func tier2MailFee(weight:In…
//: Playground - noun: a place where people can play import UIKit func add(a:Int, b:Int) -> Int { return a + b } // 其中, (Int, Int) -> Int 就是显式的声明函数类型 let anotherAdd:(Int, Int) -> Int = add anotherAdd(3, 4) /*--------------------------------------…