Swift是什么?






Swift是苹果于WWDC 2014公布的编程语言,这里引用The Swift Programming Language​ 的原话:


 


 Swift is a new programming language for iOS and OS X apps that builds on the best of C and Objective-C, without the constraints of C compatibility.

 


Swift adopts safe programming patterns and adds modern features to make programming easier, more flexible and more fun.


 


Swift’s clean slate, backed by the mature and much-loved Cocoa and Cocoa Touch frameworks, is an opportunity to imagine how software development works.


 


Swift is the first industrial-quality systems programming language that is as expressive and enjoyable as a scripting language.



 


简单的说:


Swift用来写iOS和OS X程序。(预计也不会支持其他屌丝系统)


Swift吸取了C和Objective-C的长处,且更加强大易用。


Swift能够使用现有的Cocoa和Cocoa Touch框架。


Swift兼具编译语言的高性能(Performance)和脚本语言的交互性(Interactive)。


 



Swift语言概览


 


基本概念


注:这一节的代码源自The Swift Programming Language​ 中的A Swift Tour。


 


Hello, world


类似于脚本语言,以下的代码即是一个完整的Swift程序。

1. println("Hello, world")


 


变量与常量


Swift使用var声明变量,let声明常量。

1. 

2. var myVariable = 42
3. myVariable = 50
4. let myConstant = 42
5.


类型推导


Swift支持类型推导(Type Inference),所以上面的代码不需指定类型,假设须要指定类型:

1. let explicitDouble : Double = 70


Swift不支持隐式类型转换(Implicitly casting),所以以下的代码须要显式类型转换(Explicitly casting):

1. 

2. let label = "The width is "
3. let width = 94
4. let width = label + String(width)
5.


字符串格式化


Swift使用\(item)的形式进行字符串格式化:

1. 

2. let apples = 3
3. let oranges = 5
4. let appleSummary = "I have \(apples) apples."
5. let appleSummary = "I have \(apples + oranges) pieces of fruit."
6.


数组和字典


Swift使用[]操作符声明数组(array)和字典(dictionary):

1. 

2. var shoppingList = ["catfish", "water", "tulips", "blue paint"]
3. shoppingList[1] = "bottle of water"
4.
5. var occupations = [
6. "Malcolm": "Captain",
7. "Kaylee": "Mechanic",
8. ]
9. occupations["Jayne"] = "Public Relations"
10.


一般使用初始化器(initializer)语法创建空数组和空字典:

1. 

2. let emptyArray = String[]()
3. let emptyDictionary = Dictionary<String, Float>()
4.


假设类型信息已知,则能够使用[]声明空数组,使用[:]声明空字典。


 


控制流


概览


Swift的条件语句包括if和switch,循环语句包括for-in、for、while和do-while,循环/推断条件不须要括号,但循环/推断体(body)必需括号:

1. 

2. let individualScores = [75, 43, 103, 87, 12]
3. var teamScore = 0
4. for score in individualScores {
5. if score > 50 {
6. teamScore += 3
7. } else {
8. teamScore += 1
9. }
10. }
11.


可空类型


结合if和let,能够方便的处理可空变量(nullable variable)。对于空值,须要在类型声明后加入?显式标明该类型可空。

1. 

2. var optionalString: String? = "Hello"
3. optionalString == nil
4.
5. var optionalName: String? = "John Appleseed"
6. var gretting = "Hello!"
7. if let name = optionalName {
8. gretting = "Hello, \(name)"
9. }
10.


灵活的switch


Swift中的switch支持各种各样的比較操作:

1. 

2. let vegetable = "red pepper"
3. switch vegetable {
4. case "celery":
5. let vegetableComment = "Add some raisins and make ants on a log."
6. case "cucumber", "watercress":
7. let vegetableComment = "That would make a good tea sandwich."
8. case let x where x.hasSuffix("pepper"):
9. let vegetableComment = "Is it a spicy \(x)?"
10. default:
11. let vegetableComment = "Everything tastes good in soup."
12. }
13.


其他循环


for-in除了遍历数组也能够用来遍历字典:

1. 

2. let interestingNumbers = [
3. "Prime": [2, 3, 5, 7, 11, 13],
4. "Fibonacci": [1, 1, 2, 3, 5, 8],
5. "Square": [1, 4, 9, 16, 25],
6. ]
7. var largest = 0
8. for (kind, numbers) in interestingNumbers {
9. for number in numbers {
10. if number > largest {
11. largest = number
12. }
13. }
14. }
15. largest
16.


while循环和do-while循环:

1. 

2. var n = 2
3. while n < 100 {
4. n = n * 2
5. }
6. n
7.
8. var m = 2
9. do {
10. m = m * 2
11. } while m < 100
12. m
13.


Swift支持传统的for循环,此外也能够通过结合..(生成一个区间)和for-in实现相同的逻辑。

1. 

2. var firstForLoop = 0
3. for i in 0..3 {
4. firstForLoop += i
5. }
6. firstForLoop
7.
8. var secondForLoop = 0
9. for var i = 0; i < 3; ++i {
10. secondForLoop += 1
11. }
12. secondForLoop
13.


注意:Swift除了..还有...:..生成前闭后开的区间,而...生成前闭后闭的区间。


 


函数和闭包


 


函数


Swift使用funckeyword声明函数:

1. 

2. func greet(name: String, day: String) -> String {
3. return "Hello \(name), today is \(day)."
4. }
5. greet("Bob", "Tuesday")
6.


通过元组(Tuple)返回多个值:

1. 

2. func getGasPrices() -> (Double, Double, Double) {
3. return (3.59, 3.69, 3.79)
4. }
5. getGasPrices()
6.


支持带有变长參数的函数:

1. 

2. func sumOf(numbers: Int...) -> Int {
3. var sum = 0
4. for number in numbers {
5. sum += number
6. }
7. return sum
8. }
9. sumOf()
10. sumOf(42, 597, 12)
11.


函数也能够嵌套函数:

1. 

2. func returnFifteen() -> Int {
3. var y = 10
4. func add() {
5. y += 5
6. }
7. add()
8. return y
9. }
10. returnFifteen()
11.


作为头等对象,函数既能够作为返回值,也能够作为參数传递:

1. 

2. func makeIncrementer() -> (Int -> Int) {
3. func addOne(number: Int) -> Int {
4. return 1 + number
5. }
6. return addOne
7. }
8. var increment = makeIncrementer()
9. increment(7)
10.


 

1. 

2. func hasAnyMatches(list: Int[], condition: Int -> Bool) -> Bool {
3. for item in list {
4. if condition(item) {
5. return true
6. }
7. }
8. return false
9. }
10. func lessThanTen(number: Int) -> Bool {
11. return number < 10
12. }
13. var numbers = [20, 19, 7, 12]
14. hasAnyMatches(numbers, lessThanTen)
15.


闭包


本质来说,函数是特殊的闭包,Swift中能够利用{}声明匿名闭包:

1. 

2. numbers.map({
3. (number: Int) -> Int in
4. let result = 3 * number
5. return result
6. })
7.


当闭包的类型已知时,能够使用以下的简化写法:

1. numbers.map({ number in 3 * number })


此外还能够通过參数的位置来使用參数,当函数最后一个參数是闭包时,能够使用以下的语法:

1. sort([1, 5, 3, 12, 2]) { $0 > $1 }


 


类和对象


 


创建和使用类


Swift使用class创建一个类,类能够包括字段和方法:

1. 

2. class Shape {
3. var numberOfSides = 0
4. func simpleDescription() -> String {
5. return "A shape with \(numberOfSides) sides."
6. }
7. }
8.


创建Shape类的实例,并调用其字段和方法。

1. 

2. var shape = Shape()
3. shape.numberOfSides = 7
4. var shapeDescription = shape.simpleDescription()
5.


通过init构建对象,既能够使用self显式引用成员字段(name),也能够隐式引用(numberOfSides)。

1. 

2. class NamedShape {
3. var numberOfSides: Int = 0
4. var name: String
5.
6. init(name: String) {
7. self.name = name
8. }
9.
10. func simpleDescription() -> String {
11. return "A shape with \(numberOfSides) sides."
12. }
13. }
14.


使用deinit进行清理工作。


 


继承和多态


Swift支持继承和多态(override父类方法):

1. 

2. class Square: NamedShape {
3. var sideLength: Double
4.
5. init(sideLength: Double, name: String) {
6. self.sideLength = sideLength
7. super.init(name: name)
8. numberOfSides = 4
9. }
10.
11. func area() -> Double {
12. return sideLength * sideLength
13. }
14.
15. override func simpleDescription() -> String {
16. return "A square with sides of length \(sideLength)."
17. }
18. }
19. let test = Square(sideLength: 5.2, name: "my test square")
20. test.area()
21. test.simpleDescription()
22.


注意:假设这里的simpleDescription方法没有被标识为override,则会引发编译错误。


 


属性


为了简化代码,Swift引入了属性(property),见以下的perimeter字段:

1. 

2. class EquilateralTriangle: NamedShape {
3. var sideLength: Double = 0.0
4.
5. init(sideLength: Double, name: String) {
6. self.sideLength = sideLength
7. super.init(name: name)
8. numberOfSides = 3
9. }
10.
11. var perimeter: Double {
12. get {
13. return 3.0 * sideLength
14. }
15. set {
16. sideLength = newValue / 3.0
17. }
18. }
19.
20. override func simpleDescription() -> String {
21. return "An equilateral triagle with sides of length \(sideLength)."
22. }
23. }
24. var triangle = EquilateralTriangle(sideLength: 3.1, name: "a triangle")
25. triangle.perimeter
26. triangle.perimeter = 9.9
27. triangle.sideLength
28.


 


注意:赋值器(setter)中,接收的值被自己主动命名为newValue。


 


willSet和didSet


EquilateralTriangle的构造器进行了例如以下操作:


1.为子类型的属性赋值。


2.调用父类型的构造器。


3.改动父类型的属性。


 


假设不须要计算属性的值,但须要在赋值前后进行一些操作的话,使用willSet和didSet:

1. 

2. class TriangleAndSquare {
3. var triangle: EquilateralTriangle {
4. willSet {
5. square.sideLength = newValue.sideLength
6. }
7. }
8. var square: Square {
9. willSet {
10. triangle.sideLength = newValue.sideLength
11. }
12. }
13. init(size: Double, name: String) {
14. square = Square(sideLength: size, name: name)
15. triangle = EquilateralTriangle(sideLength: size, name: name)
16. }
17. }
18. var triangleAndSquare = TriangleAndSquare(size: 10, name: "another test shape")
19. triangleAndSquare.square.sideLength
20. triangleAndSquare.square = Square(sideLength: 50, name: "larger square")
21. triangleAndSquare.triangle.sideLength
22.


从而保证triangle和square拥有相等的sideLength。


 


调用方法


Swift中,函数的參数名称仅仅能在函数内部使用,但方法的參数名称除了在内部使用外还能够在外部使用(第一个參数除外),比如:

1. 

2. class Counter {
3. var count: Int = 0
4. func incrementBy(amount: Int, numberOfTimes times: Int) {
5. count += amount * times
6. }
7. }
8. var counter = Counter()
9. counter.incrementBy(2, numberOfTimes: 7)
10.


注意Swift支持为方法參数取别名:在上面的代码里,numberOfTimes面向外部,times面向内部。


 


?的还有一种用途


使用可空值时,?能够出如今方法、属性或下标前面。假设?前的值为nil,那么?后面的表达式会被忽略,而原表达式直接返回nil,比如:

1. 

2. 1
3. 2
4. 3
5. let optionalSquare: Square? = Square(sideLength: 2.5, name: "optional
6. square")
7. let sideLength = optionalSquare?.sideLength
8.


当optionalSquare为nil时,sideLength属性调用会被忽略。


 


枚举和结构


 


枚举


使用enum创建枚举——注意Swift的枚举能够关联方法:

1. 

2. enum Rank: Int {
3. case Ace = 1
4. case Two, Three, Four, Five, Six, Seven, Eight, Nine, Ten
5. case Jack, Queen, King
6. func simpleDescription() -> String {
7. switch self {
8. case .Ace:
9. return "ace"
10. case .Jack:
11. return "jack"
12. case .Queen:
13. return "queen"
14. case .King:
15. return "king"
16. default:
17. return String(self.toRaw())
18. }
19. }
20. }
21. let ace = Rank.Ace
22. let aceRawValue = ace.toRaw()
23.


使用toRaw和fromRaw在原始(raw)数值和枚举值之间进行转换:

1. 

2. if let convertedRank = Rank.fromRaw(3) {
3. let threeDescription = convertedRank.simpleDescription()
4. }
5.


注意:枚举中的成员值(member value)是实际的值(actual value),和原始值(raw value)没有必定关联。


 


一些情况下枚举不存在有意义的原始值,这时能够直接忽略原始值:

1. 

2. enum Suit {
3. case Spades, Hearts, Diamonds, Clubs
4. func simpleDescription() -> String {
5. switch self {
6. case .Spades:
7. return "spades"
8. case .Hearts:
9. return "hearts"
10. case .Diamonds:
11. return "diamonds"
12. case .Clubs:
13. return "clubs"
14. }
15. }
16. }
17. let hearts = Suit.Hearts
18. let heartsDescription = hearts.simpleDescription()
19.


除了能够关联方法,枚举还支持在其成员上关联值,同一枚举的不同成员能够有不同的关联的值:

1. 

2. enum ServerResponse {
3. case Result(String, String)
4. case Error(String)
5. }
6.
7. let success = ServerResponse.Result("6:00 am", "8:09 pm")
8. let failure = ServerResponse.Error("Out of cheese.")
9.
10. switch success {
11. case let .Result(sunrise, sunset):
12. let serverResponse = "Sunrise is at \(sunrise) and sunset is at \(sunset)."
13. case let .Error(error):
14. let serverResponse = "Failure... \(error)"
15. }
16.


结构


Swift使用structkeyword创建结构。结构支持构造器和方法这些类的特性。结构和类的最大差别在于:结构的实例按值传递(passed by value),而类的实例按引用传递(passed by reference)。

1. 

2. struct Card {
3. var rank: Rank
4. var suit: Suit
5. func simpleDescription() -> String {
6. return "The \(rank.simpleDescription()) of \(suit.simpleDescription())"
7. }
8. }
9. let threeOfSpades = Card(rank: .Three, suit: .Spades)
10. let threeOfSpadesDescription = threeOfSpades.simpleDescription()
11.


 


协议(protocol)和扩展(extension)


 


协议


Swift使用protocol定义协议:

1. 

2. protocol ExampleProtocol {
3. var simpleDescription: String { get }
4. mutating func adjust()
5. }
6.


 


类型、枚举和结构都能够实现(adopt)协议:

1. 

2. class SimpleClass: ExampleProtocol {
3. var simpleDescription: String = "A very simple class."
4. var anotherProperty: Int = 69105
5. func adjust() {
6. simpleDescription += " Now 100% adjusted."
7. }
8. }
9. var a = SimpleClass()
10. a.adjust()
11. let aDescription = a.simpleDescription
12.
13. struct SimpleStructure: ExampleProtocol {
14. var simpleDescription: String = "A simple structure"
15. mutating func adjust() {
16. simpleDescription += " (adjusted)"
17. }
18. }
19. var b = SimpleStructure()
20. b.adjust()
21. let bDescription = b.simpleDescription
22.


 


扩展


扩展用于在已有的类型上添加新的功能(比方新的方法或属性),Swift使用extension声明扩展:

1. 

2. extension Int: ExampleProtocol {
3. var simpleDescription: String {
4. return "The number \(self)"
5. }
6. mutating func adjust() {
7. self += 42
8. }
9. }
10. 7.simpleDescription
11.


 


泛型(generics)


Swift使用<>来声明泛型函数或泛型类型:

1. 

2. func repeat<ItemType>(item: ItemType, times: Int) -> ItemType[] {
3. var result = ItemType[]()
4. for i in 0..times {
5. result += item
6. }
7. return result
8. }
9. repeat("knock", 4)
10.


 


Swift也支持在类、枚举和结构中使用泛型:

1. 

2. // Reimplement the Swift standard library's optional type
3. enum OptionalValue<T> {
4. case None
5. case Some(T)
6. }
7. var possibleInteger: OptionalValue<Int> = .None
8. possibleInteger = .Some(100)
9.


 


有时须要对泛型做一些需求(requirements),比方需求某个泛型类型实现某个接口或继承自某个特定类型、两个泛型类型属于同一个类型等等,Swift通过where描写叙述这些需求:

1. 

2. func anyCommonElements <T, U where T: Sequence, U: Sequence, T.GeneratorType.Element: Equatable, T.GeneratorType.Element == U.GeneratorType.Element> (lhs: T, rhs: U) -> Bool {
3. for lhsItem in lhs {
4. for rhsItem in rhs {
5. if lhsItem == rhsItem {
6. return true
7. }
8. }
9. }
10. return false
11. }
12. anyCommonElements([1, 2, 3], [3])
13.


 


Swift语言概览就到这里,有兴趣的朋友请进一步阅读The Swift Programming Language。


 


接下来聊聊个人对Swift的一些感受。


 



个人感受


 


注意:以下的感受纯属个人意见,仅供參考。


 


大杂烩


虽然我接触Swift不足两小时,但非常easy看出Swift吸收了大量其他编程语言中的元素,这些元素包含但不限于:


 


1.属性(Property)、可空值(Nullable type)语法和泛型(Generic Type)语法源自C#。


2.格式风格与Go相仿(没有句末的分号,推断条件不须要括号)。


3.Python风格的当前实例引用语法(使用self)和列表字典声明语法。


4.Haskell风格的区间声明语法(比方1..3,1...3)。


5.协议和扩展源自Objective-C(自家产品随便用)。


6.枚举类型非常像Java(能够拥有成员或方法)。


7.class和struct的概念和C#极其相似。


 


注意这里不是说Swift是抄袭——实际上编程语言能玩的花样基本就这些,况且Swift选的都是在我看来相当不错的特性。


 


并且,这个大杂烩有一个优点——就是不论什么其他编程语言的开发人员都不会认为Swift非常陌生——这一点非常重要。


 


拒绝隐式(Refuse implicity)


Swift去除了一些隐式操作,比方隐式类型转换和隐式方法重载这两个坑,干的美丽。


 


Swift的应用方向


我觉得Swift主要有以下这两个应用方向:


 


教育


我指的是编程教育。现有编程语言最大的问题就是交互性奇差,从而导致学习曲线陡峭。相信Swift及其交互性极强的编程环境可以打破这个局面,让很多其它的人——尤其是青少年,学会编程。


 


这里有必要再次提到Brec Victor的Inventing on Principle,看了这个视频你就会明确一个交互性强的编程环境可以带来什么。


 


应用开发


现有的iOS和OS X应用开发均使用Objective-C,而Objective-C是一门及其繁琐(verbose)且学习曲线比較陡峭的语言,假设Swift可以提供一个同现有Obj-C框架的简易互操作接口,我相信会有大量的程序猿转投Swift;与此同一时候,Swift简易的语法也会带来相当数量的其他平台开发人员。


 


总之,上一次某家大公司大张旗鼓的推出一门编程语言及其编程平台还是在2000年(微软推出C#),将近15年之后,苹果推出Swift——作为开发人员,我非常高兴可以见证一门编程语言的诞生。