diff --git a/a_swift_tour.html b/a_swift_tour.html index 94c2f070..bf53046b 100644 --- a/a_swift_tour.html +++ b/a_swift_tour.html @@ -44,7 +44,7 @@ -
+
@@ -187,7 +187,7 @@
-
+

Swift初见

通常来说,编程语言教程中的第一个程序应该在屏幕上打印“Hello, world”。在Swift中,可以用一行代码实现:

@@ -197,6 +197,499 @@

注意:为了获得最好的体验,在Xcode当中使用代码预览功能。代码预览功能可以让你编辑代码并实时看到运行结果。

+

简单值

+

使用let来声明常量,使用var来声明变量。一个常量的值在编译时并不需要获取,但是你只能为它赋值以此。也就是说你可以用常量来表示这样一个值:你只需要决定一次,但是需要使用很多次。

+
var myVariable = 42
+myVariable = 50
+let myConstant = 42
+

常量或者变量的类型必须和你赋给它们的值一样。然而,声明时类型是可选的,声明的同时赋值的话,编译器会自动推断类型。在上面的例子中,编译器推断出myVariable是一个整数(integer)因为它的初始值是整数。

+

如果初始值没有提供足够的信息(或者没有初始值),那你需要在变量后面声明类型,用冒号分割。

+
let implicitInteger = 70
+let implicitDouble = 70.0
+let explicitDouble: Double = 70
+
+

练习:创建一个常量,显式指定类型为Float并指定初始值为4。

+
+

值永远不会被隐式转换为其他类型。如果你需要把一个值转换成其他类型,请显式转换。

+
let label = "The width is"
+let width = 94
+let widthLabel = label + String(width)
+
+

练习:删除最后一行中的String,错误提示是什么?

+
+

有一种更简单的把值转换成字符串的方法:把值写到括号中,并且在括号之前写一个反斜杠。例如:

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

练习:使用\()来把一个浮点计算转换成字符串,并加上某人的名字,和他打个招呼。

+
+

使用方括号[]来创建数组和字典,并使用下标或者键(key)来访问元素。

+
var shoppingList = ["catfish", "water", "tulips", "blue paint"]
+shoppingList[1] = "bottle of water"
+
+var occupations = [
+    "Malcolm": "Captain",
+    "Kaylee": "Mechanic",
+]
+occupations["Jayne"] = "Public Relations"
+

要创建一个空数组或者字典,使用初始化语法。

+
let emptyArray = String[]()
+let emptyDictionary = Dictionary<String, Float>()
+

如果类型信息可以被推断出来,你可以用[][:]来创建空数组和空字典——就像你声明变量或者给函数传参数的时候一样。

+
shoppingList = []   // 去逛街并买点东西
+

控制流

+

使用ifswitch来进行条件操作,使用for-inforwhiledo-while来进行循环。包裹条件和循环变量括号可以省略,但是语句体的大括号是必须的。

+
let individualScores = [75, 43, 103, 87, 12]
+var teamScore = 0
+for score in individualScores {
+    if score > 50 {
+        teamScore += 3
+    } else {
+        teamScore += 1
+    }
+}
+teamScore
+

if语句中,条件必须是一个布尔表达式——像if score { ... }这样的代码是错误的。

+

你可以一起使用iflet来处理值缺失的情况。有些变量的值是可选的。一个可选的值可能是一个具体的值或者是nil,表示值缺失。在类型后面加一个问号来标记这个变量的值是可选的。

+
var optionalString: String? = "Hello"
+optionalString == nil
+
+var optionalName: String? = "John Appleseed"
+var greeting = "Hello!"
+if let name = optionalName {
+    greeting = "Hello, \(name)"
+}
+
+

练习:把optionalName改成nil,greeting会是什么?添加一个else语句,当optionalNamenil时给greeting赋一个不同的值。

+
+

如果变量的可选值是nil,条件会判断为false,大括号中的代码会被跳过。如果不是nil,会将值赋给let后面的常量,这样代码块中就可以使用这个值了。

+

switch支持任意类型的数据以及各种比较操作——不仅仅是整数以及测试相等。

+
let vegetable = "red pepper"
+switch vegetable {
+case "celery":
+    let vegetableComment = "Add some raisins and make ants on a log."
+case "cucumber", "watercress":
+    let vegetableComment = "That would make a good tea sandwich."
+case let x where x.hasSuffix("pepper"):
+    let vegetableComment = "Is it a spicy \(x)?"
+default:
+    let vegetableComment = "Everything tastes good in soup."
+}
+
+

练习:删除default语句,看看会有什么错误?

+
+

运行switch中匹配到的子句之后,程序会退出switch语句,并不会继续向下运行,所以不需要在每个子句结尾写break

+

你可以使用for-in来遍历字典,需要两个变量来表示每个键值对。

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

练习:添加另一个变量来记录哪种类型的数字是最大的。

+
+

使用while来重复运行一段代码直到不满足条件。循环条件可以在开头也可以在结尾。

+
var n = 2
+while n < 100 {
+    n = n * 2
+}
+n
+
+var m = 2
+do {
+    m = m * 2
+} while m < 100
+m
+

你可以在循环中使用..来表示范围,也可以使用传统的写法,两者是等价的:

+
var firstForLoop = 0
+for i in 0..3 {
+    firstForLoop += i
+}
+firstForLoop
+
+var secondForLoop = 0
+for var i = 0; i < 3; ++i {
+    secondForLoop += 1
+}
+secondForLoop
+

使用..创建的范围不包含上界,如果想包含的话需要使用...

+

函数和闭包

+

使用func来声明一个函数,使用名字和参数来调用函数。使用->来指定函数返回值。

+
unc greet(name: String, day: String) -> String {
+    return "Hello \(name), today is \(day)."
+}
+greet("Bob", "Tuesday")
+
+

练习:删除day参数,添加一个参数来表示今天吃了什么午饭。

+
+

使用一个元组来返回多个值。

+
func getGasPrices() -> (Double, Double, Double) {
+    return (3.59, 3.69, 3.79)
+}
+getGasPrices()
+

函数的参数数量是可变的,用一个数组来获取它们:

+
func sumOf(numbers: Int...) -> Int {
+    var sum = 0
+    for number in numbers {
+        sum += number
+    }
+    return sum
+}
+sumOf()
+sumOf(42, 597, 12)
+
+

练习:写一个计算参数平均值的函数。

+
+

函数可以嵌套。被嵌套的函数可以访问外侧函数的变量,你可以使用嵌套函数来重构一个太长或者太复杂的函数。

+
func returnFifteen() -> Int {
+    var y = 10
+        func add() {
+        y += 5
+    }
+    add()
+    return y
+}
+returnFifteen()
+

函数是一等公民,这意味着函数可以作为另一个函数的返回值。

+
func makeIncrementer() -> (Int -> Int) {
+    func addOne(number: Int) -> Int {
+        return 1 + number
+    }
+    return addOne
+}
+var increment = makeIncrementer()
+increment(7)
+

函数也可以当做参数传入另一个函数。

+
func hasAnyMatches(list: Int[], condition: Int -> Bool) -> Bool {
+    for item in list {
+        if condition(item) {
+            return true
+        }
+    }
+    return false
+}
+func lessThanTen(number: Int) -> Bool {
+    return number < 10
+}
+var numbers = [20, 19, 7, 12]
+hasAnyMatches(numbers, lessThanTen)
+

函数实际上是一种特殊的闭包,你可以使用{}来创建一个匿名闭包。使用in来分割参数并返回类型。

+
numbers.map({
+    (number: Int) -> Int in
+    let result = 3 * number
+    return result
+    })
+
+

练习:重写闭包,对所有奇数返回0.

+
+

有很多种创建闭包的方法。如果一个闭包的类型已知,比如作为一个回调函数,你可以忽略参数的类型和返回值。单个语句闭包会把它语句的值当做结果返回。

+

你可以获取参数的数量——这个方法在非常短的闭包中很有用。一个被作为最后一个参数传入函数的时候可以直接出现在括号后面。

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

对象和类

+

使用class和类名来创建一个类。类中属性的声明和常量、变量声明一样,唯一的区别就是它们的上下文是类。同样,方法和函数声明也一样。

+
class Shape {
+    var numberOfSides = 0
+    func simpleDescription() -> String {
+        return "A shape with \(numberOfSides) sides."
+    }
+}
+
+

练习:使用let添加一个常量属性,再添加一个接收一个参数的方法。

+
+

要创建一个类的实例,在类名后面加上括号。使用点语法来访问实例的属性和方法。

+
var shape = Shape()
+shape.numberOfSides = 7
+var shapeDescription = shape.simpleDescription()
+

这个版本的Shape类缺少了一些重要的东西:一个构造函数来初始化类实例。使用init来创建一个构造器。

+
class NamedShape {
+    var numberOfSides: Int = 0
+    var name: String
+
+    init(name: String) {
+        self.name = name
+    }
+
+    func simpleDescription() -> String {
+        return "A shape with \(numberOfSides) sides."
+    }
+}
+

注意self被用来区别实例变量。当你创建实例的时候,像传入函数参数一样给类传入构造器的参数。每个属性都需要赋值——无论是通过声明(就像numberOfSides)还是通过构造器(就像name)。

+

如果你需要在删除对象之前进行一些清理工作,使用deinit创建一个析构函数。

+

子类的定义方法是在它们的类名后面加上父类的名字,用冒号分割。创建类的时候并不需要一个标准的根类,所以你可以忽略父类。

+

子类如果要重写父类的方法的话,需要用override标记——如果没有添加override就重写父类方法的话编译器会报错。编译器同样会检测override标记的方法是否确实在父类中。

+
class Square: NamedShape {
+    var sideLength: Double
+
+    init(sideLength: Double, name: String) {
+        self.sideLength = sideLength
+        super.init(name: name)
+        numberOfSides = 4
+    }
+
+    func area() ->  Double {
+        return sideLength * sideLength
+    }
+
+    override func simpleDescription() -> String {
+        return "A square with sides of length \(sideLength)."
+    }
+}
+let test = Square(sideLength: 5.2, name: "my test square")
+test.area()
+test.simpleDescription()
+
+

练习:创建NamedShape的另一个子类Circle,构造器接收两个参数,一个是半径一个是名称,实现areadescribe方法。

+
+

属性可以有getter和setter。

+
class EquilateralTriangle: NamedShape {
+    var sideLength: Double = 0.0
+
+    init(sideLength: Double, name: String) {
+        self.sideLength = sideLength
+        super.init(name: name)
+        numberOfSides = 3
+    }
+
+    var perimeter: Double {
+    get {
+        return 3.0 * sideLength
+    }
+    set {
+                sideLength = newValue / 3.0
+    }
+    }
+
+    override func simpleDescription() -> String {
+        return "An equilateral triagle with sides of length \(sideLength)."
+    }
+}
+var triangle = EquilateralTriangle(sideLength: 3.1, name: "a triangle")
+triangle.perimeter
+triangle.perimeter = 9.9
+triangle.sideLength
+

perimeter的setter中,新值的名字是newValue。你可以在set之后显示的设置一个名字。

+

注意EquilateralTriangle类的构造器执行了三步:

+
    +
  1. 设置子类声明的属性值
  2. +
  3. 调用父类的构造器
  4. +
  5. 改变父类定义的属性值。其他的工作比如调用方法、getters和setters也可以在这个阶段完成。
  6. +
+

如果你不需要计算属性但是需要在设置一个新值之前运行一些代码,使用willSetdidSet

+

比如,下面的类确保三角形的边长总是和正方形的边长相同。

+
class TriangleAndSquare {
+    var triangle: EquilateralTriangle {
+    willSet {
+        square.sideLength = newValue.sideLength
+    }
+    }
+    var square: Square {
+    willSet {
+        triangle.sideLength = newValue.sideLength
+    }
+    }
+    init(size: Double, name: String) {
+        square = Square(sideLength: size, name: name)
+        triangle = EquilateralTriangle(sideLength: size, name: name)
+    }
+}
+var triangleAndSquare = TriangleAndSquare(size: 10, name: "another test shape")
+triangleAndSquare.square.sideLength
+triangleAndSquare.triangle.sideLength
+triangleAndSquare.square = Square(sideLength: 50, name: "larger square")
+triangleAndSquare.triangle.sideLength
+

类中的方法和一般的函数有一个重要的区别,函数的参数名只在函数内部使用,但是方法的参数名需要在调用的时候显式说明(除了第一个参数)。默认情况下,方法的参数名和它在方法内部的名字一样,不过你也可以定义第二个名字,这个名字被用在方法内部。

+
class Counter {
+    var count: Int = 0
+    func incrementBy(amount: Int, numberOfTimes times: Int) {
+        count += amount * times
+    }
+}
+var counter = Counter()
+counter.incrementBy(2, numberOfTimes: 7)
+

处理变量的可选值时,你可以在操作(比如方法、属性和子脚本)之前加?。如果?之前的值是nil?后面的东西都会被忽略,并且整个表达式返回nil。否则,?之后的东西都会被运行。在这两种情况下,整个表达式的值也是一个可选值。

+

枚举和结构体

+

使用enum来创建一个枚举。就像类和其他所有命名类型一样,枚举可以包含方法。

+
enum Rank: Int {
+    case Ace = 1
+    case Two, Three, Four, Five, Six, Seven, Eight, Nine, Ten
+    case Jack, Queen, King
+    func simpleDescription() -> String {
+        switch self {
+        case .Ace:
+            return "ace"
+        case .Jack:
+            return "jack"
+        case .Queen:
+            return "queen"
+        case .King:
+            return "king"
+        default:
+            return String(self.toRaw())
+        }
+    }
+}
+let ace = Rank.Ace
+let aceRawValue = ace.toRaw()
+
+

练习:写一个函数,通过比较它们的原始值来比较两个Rank值。

+
+

在上面的例子中,枚举原始值的类型是Int,所以你只需要设置第一个原始值。剩下的原始值会按照顺序赋值。你也可以使用字符串或者浮点数作为枚举的原始值。

+

使用toRawfromRaw函数来在原始值和枚举值之间进行转换。

+
if let convertedRank = Rank.fromRaw(3) {
+    let threeDescription = convertedRank.simpleDescription()
+}
+

枚举的成员值是实际值,并不是原始值的另一种表达方法。实际上,如果原始值没有意义,你不需要设置。

+
enum Suit {
+    case Spades, Hearts, Diamonds, Clubs
+    func simpleDescription() -> String {
+        switch self {
+        case .Spades:
+            return "spades"
+        case .Hearts:
+            return "hearts"
+        case .Diamonds:
+            return "diamonds"
+        case .Clubs:
+            return "clubs"
+        }
+    }
+
+}
+let hearts = Suit.Hearts
+let heartsDescription = hearts.simpleDescription()
+
+

练习:给Suit添加一个color方法,对spadesclubs返回“black”,对heartsdiamonds返回“red”。

+
+

注意,有两种方式可以引用Hearts成员:给hearts常量赋值时,枚举成员Suit.Hearts需要用全名来引用,因为常量没有显式指定类型。在switch里,枚举成员使用缩写.Hearts来引用,因为self的值已经知道是一个suit。已知变量类型的情况下你可以使用缩写。

+

使用struct来创建一个结构体。结构体和类有很多相同的地方,比如方法和构造器。它们结构体之间最大的一个区别就是 +结构体是传值,类是传引用。

+
struct Card {
+    var rank: Rank
+    var suit: Suit
+    func simpleDescription() -> String {
+        return "The \(rank.simpleDescription()) of \
+        (suit.simpleDescription())"
+    }
+}
+let threeOfSpades = Card(rank: .Three, suit: .Spades)
+let threeOfSpadesDescription = threeOfSpades.simpleDescription()
+
+

练习:给Card添加一个方法,创建一副完整的扑克牌并把每张牌的rank和suit对应起来。

+
+

一个枚举成员的实例可以有实例值。相同枚举成员的实例可以有不同的值。创建实例的时候传入值即可。实例值和原始值是不同的:枚举成员的原始值对于所有实例都是相同的,而且你是在定义枚举的时候设置原始值。

+

例如,考虑从服务器获取日出和日落的时间。服务器会返回正常结果或者错误信息。

+
enum ServerResponse {
+    case Result(String, String)
+    case Error(String)
+}
+
+let success = ServerResponse.Result("6:00 am", "8:09 pm")
+let failure = ServerResponse.Error("Out of cheese.")
+
+switch success {
+case let .Result(sunrise, sunset):
+    let serverResponse = "Sunrise is at \(sunrise) and sunset is at \(sunset)."
+case let .Error(error):
+    let serverResponse = "Failure...  \(error)"
+}
+
+

练习:给ServerResponseswitch添加第三种情况。

+
+

注意如何从ServerResponse中提取日升和日落时间。

+

接口和扩展

+

使用protocol来声明一个接口。

+
protocol ExampleProtocol {
+    var simpleDescription: String { get }
+    mutating func adjust()
+}
+

类、枚举和结构体都可以实现接口。

+
class SimpleClass: ExampleProtocol {
+    var simpleDescription: String = "A very simple class."
+    var anotherProperty: Int = 69105
+    func adjust() {
+        simpleDescription += "  Now 100% adjusted."
+    }
+}
+var a = SimpleClass()
+a.adjust()
+let aDescription = a.simpleDescription
+
+struct SimpleStructure: ExampleProtocol {
+    var simpleDescription: String = "A simple structure"
+    mutating func adjust() {
+        simpleDescription += " (adjusted)"
+    }
+}
+var b = SimpleStructure()
+b.adjust()
+let bDescription = b.simpleDescription
+
+

练习:写一个实现这个接口的枚举。

+
+

注意声明SimpleStructure时候mutating关键字用来标记一个会修改结构体的方法。SimpleClass的声明不需要标记任何方法因为类中的方法经常会修改类。

+

使用extension来为现有的类型添加功能,比如添加一个计算属性的方法。你可以使用扩展来给任意类型添加协议,甚至是你从外部库或者框架中导入的类型。

+
extension Int: ExampleProtocol {
+    var simpleDescription: String {
+    return "The number \(self)"
+    }
+    mutating func adjust() {
+        self += 42
+    }
+}
+7.simpleDescription
+
+

练习:给Double类型写一个扩展,添加absoluteValue功能。

+
+

你可以像使用其他命名类型一样使用接口名——例如,创建一个有不同类型但是都实现一个接口的对象集合。当你处理类型是接口的值时,接口外定义的方法不可用。

+
let protocolValue: ExampleProtocol = a
+protocolValue.simpleDescription
+// protocolValue.anotherProperty  // Uncomment to see the error
+

即使protocolValue变量运行时的类型是simpleClass,编译器会把它的类型当做ExampleProtocol。这表示你不能调用类在它实现的接口之外实现的方法或者属性。

+

泛型

+

在尖括号里写一个名字来创建一个泛型函数或者类型。

+
func repeat<ItemType>(item: ItemType, times: Int) -> ItemType[] {
+    var result = ItemType[]()
+    for i in 0..times {
+        result += item
+    }
+    return result
+}
+repeat("knock", 4)
+

你也可以创建泛型类、枚举和结构体。

+
// Reimplement the Swift standard library's optional type
+enum OptionalValue<T> {
+    case None
+    case Some(T)
+}
+var possibleInteger: OptionalValue<Int> = .None
+possibleInteger = .Some(100)
+

在类型名后面使用where来指定一个需求列表——例如,要限定实现一个协议的类型,需要限定两个类型要相同,或者限定一个类必须有一个特定的父类。

+
func anyCommonElements <T, U where T: Sequence, U: Sequence, T.GeneratorType.Element: Equatable, T.GeneratorType.Element == U.GeneratorType.Element> (lhs: T, rhs: U) -> Bool {
+    for lhsItem in lhs {
+        for rhsItem in rhs {
+            if lhsItem == rhsItem {
+                return true
+            }
+        }
+    }
+    return false
+}
+anyCommonElements([1, 2, 3], [3])
+
+

练习:修改anyCommonElements函数来创建一个函数,返回一个数组,内容是两个序列的共有元素。

+
+

简单起见,你可以忽略where,只在冒号后面写接口或者类名。<T: Equatable><T where T: Equatable>是等价的。

diff --git a/index.html b/index.html index 4b6971ca..0365e108 100644 --- a/index.html +++ b/index.html @@ -44,7 +44,7 @@ -
+
@@ -187,7 +187,7 @@
-
+

Swift编程语言

Swift是苹果在WWDC2014上发布的一款全新的编程语言,本书译自苹果官方的Swift教程《The Swift Programming Language》。

diff --git a/manifest.appcache b/manifest.appcache index 9d13b047..46cc3f81 100644 --- a/manifest.appcache +++ b/manifest.appcache @@ -1,5 +1,5 @@ CACHE MANIFEST -# Revision 1401778634649 +# Revision 1401784865323 CACHE: index.html diff --git a/search_index.json b/search_index.json index badd579e..09a4526d 100644 --- a/search_index.json +++ b/search_index.json @@ -1 +1 @@ -{"version":"0.5.2","fields":[{"name":"title","boost":10},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"index.html#gitbook_630":["languag","program","swift","swift是苹果在wwdc2014上发布的一款全新的编程语言,本书译自苹果官方的swift教程《th","undefinedundefin"],"a_swift_tour.html#gitbook_631":["c或者objective-c代码,那你应该很熟悉这种形式——在swift中,这行代码就是一个完整的程序。你不需要为了输入输出或者字符串处理导入一个单独的库。全局作用域中的代码会被自动当做程序的入口点,所以你也不需要main","hello","println(\"hello","swift","undefinedundefin","world","world”。在swift","xcode"],"swift/README.html#gitbook_632":["swift","swift的特性和开发历史,并对swift","undefinedundefin"],"swift/swift.html#gitbook_633":["arc)来简化内存管理。我们在foundation和cocoa的基础上构建框架栈并将其标准化。objective-c","count","objective-c开发者对于swift并不会感到陌生。它采用了objective-c的命名参数以及动态对象模型,可以无缝对接到现有的cocoa框架,并且可以兼容objective-c代码。在此基础之上,swift","refer","swift","swift对于初学者来说也很友好。它是第一个既满足工业标准又像脚本语言一样充满表现力和趣味的编程语言。它支持代码预览,这个革命性的特性可以允许程序员在不编译和运行应用程序的前提下运行swift","swift将现代编程语言的精华和苹果工程师文化的智慧结合了起来。编译器对性能进行了优化,编程语言对开发进行了优化,两者互不干扰,鱼与熊掌兼得。swift即可以用于开发“hello","swift是一种新的编程语言,用于编写ios和o","swift的开发从很久之前就开始了。为了给swift打好基础,苹果公司改进了编译器,调试器和框架结构。我们使用自动引用计数(automat","swift编写ios和o","touch框架。拥有了这些特性,swift","undefinedundefin","world”这样的小程序,也可以用于开发一个完整的操作系统。所有的这些特性让swift","x应用将是一场美妙的体验,swift之后也会不断开发新特性和兼容性。我们对swift","x应用程序。swift结合了c和objective-c的优点并且不受c的兼容性的限制。swift使用安全的编程模式并添加了很多新特性,这将使编程更简单,扩展性更强,也更有趣。除此之外,swift还支持人见人爱的cocoa和cocoa"]},"length":4},"tokenStore":{"root":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"index.html#gitbook_630":{"ref":"index.html#gitbook_630","tf":0.16666666666666666}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"index.html#gitbook_630":{"ref":"index.html#gitbook_630","tf":0.16666666666666666}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"a_swift_tour.html#gitbook_631":{"ref":"a_swift_tour.html#gitbook_631","tf":0.1111111111111111}}}}}}}}}}}}}}}},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"index.html#gitbook_630":{"ref":"index.html#gitbook_630","tf":10.333333333333334},"a_swift_tour.html#gitbook_631":{"ref":"a_swift_tour.html#gitbook_631","tf":10.222222222222221},"swift/README.html#gitbook_632":{"ref":"swift/README.html#gitbook_632","tf":10.333333333333334},"swift/swift.html#gitbook_633":{"ref":"swift/swift.html#gitbook_633","tf":10.066666666666666}},"是":{"docs":{},"苹":{"docs":{},"果":{"docs":{},"在":{"docs":{},"w":{"docs":{},"w":{"docs":{},"d":{"docs":{},"c":{"2":{"0":{"1":{"4":{"docs":{},"上":{"docs":{},"发":{"docs":{},"布":{"docs":{},"的":{"docs":{},"一":{"docs":{},"款":{"docs":{},"全":{"docs":{},"新":{"docs":{},"的":{"docs":{},"编":{"docs":{},"程":{"docs":{},"语":{"docs":{},"言":{"docs":{},",":{"docs":{},"本":{"docs":{},"书":{"docs":{},"译":{"docs":{},"自":{"docs":{},"苹":{"docs":{},"果":{"docs":{},"官":{"docs":{},"方":{"docs":{},"的":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"教":{"docs":{},"程":{"docs":{},"《":{"docs":{},"t":{"docs":{},"h":{"docs":{"index.html#gitbook_630":{"ref":"index.html#gitbook_630","tf":0.16666666666666666}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}},"一":{"docs":{},"种":{"docs":{},"新":{"docs":{},"的":{"docs":{},"编":{"docs":{},"程":{"docs":{},"语":{"docs":{},"言":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"编":{"docs":{},"写":{"docs":{},"i":{"docs":{},"o":{"docs":{},"s":{"docs":{},"和":{"docs":{},"o":{"docs":{"swift/swift.html#gitbook_633":{"ref":"swift/swift.html#gitbook_633","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"特":{"docs":{},"性":{"docs":{},"和":{"docs":{},"开":{"docs":{},"发":{"docs":{},"历":{"docs":{},"史":{"docs":{},",":{"docs":{},"并":{"docs":{},"对":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"swift/README.html#gitbook_632":{"ref":"swift/README.html#gitbook_632","tf":0.3333333333333333}}}}}}}}}}}}}}}}},"开":{"docs":{},"发":{"docs":{},"从":{"docs":{},"很":{"docs":{},"久":{"docs":{},"之":{"docs":{},"前":{"docs":{},"就":{"docs":{},"开":{"docs":{},"始":{"docs":{},"了":{"docs":{},"。":{"docs":{},"为":{"docs":{},"了":{"docs":{},"给":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"打":{"docs":{},"好":{"docs":{},"基":{"docs":{},"础":{"docs":{},",":{"docs":{},"苹":{"docs":{},"果":{"docs":{},"公":{"docs":{},"司":{"docs":{},"改":{"docs":{},"进":{"docs":{},"了":{"docs":{},"编":{"docs":{},"译":{"docs":{},"器":{"docs":{},",":{"docs":{},"调":{"docs":{},"试":{"docs":{},"器":{"docs":{},"和":{"docs":{},"框":{"docs":{},"架":{"docs":{},"结":{"docs":{},"构":{"docs":{},"。":{"docs":{},"我":{"docs":{},"们":{"docs":{},"使":{"docs":{},"用":{"docs":{},"自":{"docs":{},"动":{"docs":{},"引":{"docs":{},"用":{"docs":{},"计":{"docs":{},"数":{"docs":{},"(":{"docs":{},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"swift/swift.html#gitbook_633":{"ref":"swift/swift.html#gitbook_633","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"对":{"docs":{},"于":{"docs":{},"初":{"docs":{},"学":{"docs":{},"者":{"docs":{},"来":{"docs":{},"说":{"docs":{},"也":{"docs":{},"很":{"docs":{},"友":{"docs":{},"好":{"docs":{},"。":{"docs":{},"它":{"docs":{},"是":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"既":{"docs":{},"满":{"docs":{},"足":{"docs":{},"工":{"docs":{},"业":{"docs":{},"标":{"docs":{},"准":{"docs":{},"又":{"docs":{},"像":{"docs":{},"脚":{"docs":{},"本":{"docs":{},"语":{"docs":{},"言":{"docs":{},"一":{"docs":{},"样":{"docs":{},"充":{"docs":{},"满":{"docs":{},"表":{"docs":{},"现":{"docs":{},"力":{"docs":{},"和":{"docs":{},"趣":{"docs":{},"味":{"docs":{},"的":{"docs":{},"编":{"docs":{},"程":{"docs":{},"语":{"docs":{},"言":{"docs":{},"。":{"docs":{},"它":{"docs":{},"支":{"docs":{},"持":{"docs":{},"代":{"docs":{},"码":{"docs":{},"预":{"docs":{},"览":{"docs":{},",":{"docs":{},"这":{"docs":{},"个":{"docs":{},"革":{"docs":{},"命":{"docs":{},"性":{"docs":{},"的":{"docs":{},"特":{"docs":{},"性":{"docs":{},"可":{"docs":{},"以":{"docs":{},"允":{"docs":{},"许":{"docs":{},"程":{"docs":{},"序":{"docs":{},"员":{"docs":{},"在":{"docs":{},"不":{"docs":{},"编":{"docs":{},"译":{"docs":{},"和":{"docs":{},"运":{"docs":{},"行":{"docs":{},"应":{"docs":{},"用":{"docs":{},"程":{"docs":{},"序":{"docs":{},"的":{"docs":{},"前":{"docs":{},"提":{"docs":{},"下":{"docs":{},"运":{"docs":{},"行":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"swift/swift.html#gitbook_633":{"ref":"swift/swift.html#gitbook_633","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"将":{"docs":{},"现":{"docs":{},"代":{"docs":{},"编":{"docs":{},"程":{"docs":{},"语":{"docs":{},"言":{"docs":{},"的":{"docs":{},"精":{"docs":{},"华":{"docs":{},"和":{"docs":{},"苹":{"docs":{},"果":{"docs":{},"工":{"docs":{},"程":{"docs":{},"师":{"docs":{},"文":{"docs":{},"化":{"docs":{},"的":{"docs":{},"智":{"docs":{},"慧":{"docs":{},"结":{"docs":{},"合":{"docs":{},"了":{"docs":{},"起":{"docs":{},"来":{"docs":{},"。":{"docs":{},"编":{"docs":{},"译":{"docs":{},"器":{"docs":{},"对":{"docs":{},"性":{"docs":{},"能":{"docs":{},"进":{"docs":{},"行":{"docs":{},"了":{"docs":{},"优":{"docs":{},"化":{"docs":{},",":{"docs":{},"编":{"docs":{},"程":{"docs":{},"语":{"docs":{},"言":{"docs":{},"对":{"docs":{},"开":{"docs":{},"发":{"docs":{},"进":{"docs":{},"行":{"docs":{},"了":{"docs":{},"优":{"docs":{},"化":{"docs":{},",":{"docs":{},"两":{"docs":{},"者":{"docs":{},"互":{"docs":{},"不":{"docs":{},"干":{"docs":{},"扰":{"docs":{},",":{"docs":{},"鱼":{"docs":{},"与":{"docs":{},"熊":{"docs":{},"掌":{"docs":{},"兼":{"docs":{},"得":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"即":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"于":{"docs":{},"开":{"docs":{},"发":{"docs":{},"“":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"swift/swift.html#gitbook_633":{"ref":"swift/swift.html#gitbook_633","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"编":{"docs":{},"写":{"docs":{},"i":{"docs":{},"o":{"docs":{},"s":{"docs":{},"和":{"docs":{},"o":{"docs":{"swift/swift.html#gitbook_633":{"ref":"swift/swift.html#gitbook_633","tf":0.06666666666666667}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"index.html#gitbook_630":{"ref":"index.html#gitbook_630","tf":0.16666666666666666},"a_swift_tour.html#gitbook_631":{"ref":"a_swift_tour.html#gitbook_631","tf":0.1111111111111111},"swift/README.html#gitbook_632":{"ref":"swift/README.html#gitbook_632","tf":0.3333333333333333},"swift/swift.html#gitbook_633":{"ref":"swift/swift.html#gitbook_633","tf":0.06666666666666667}}}}}}}}}}}}}}}}}},"c":{"docs":{},"或":{"docs":{},"者":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"代":{"docs":{},"码":{"docs":{},",":{"docs":{},"那":{"docs":{},"你":{"docs":{},"应":{"docs":{},"该":{"docs":{},"很":{"docs":{},"熟":{"docs":{},"悉":{"docs":{},"这":{"docs":{},"种":{"docs":{},"形":{"docs":{},"式":{"docs":{},"—":{"docs":{},"—":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"中":{"docs":{},",":{"docs":{},"这":{"docs":{},"行":{"docs":{},"代":{"docs":{},"码":{"docs":{},"就":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"完":{"docs":{},"整":{"docs":{},"的":{"docs":{},"程":{"docs":{},"序":{"docs":{},"。":{"docs":{},"你":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"为":{"docs":{},"了":{"docs":{},"输":{"docs":{},"入":{"docs":{},"输":{"docs":{},"出":{"docs":{},"或":{"docs":{},"者":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"处":{"docs":{},"理":{"docs":{},"导":{"docs":{},"入":{"docs":{},"一":{"docs":{},"个":{"docs":{},"单":{"docs":{},"独":{"docs":{},"的":{"docs":{},"库":{"docs":{},"。":{"docs":{},"全":{"docs":{},"局":{"docs":{},"作":{"docs":{},"用":{"docs":{},"域":{"docs":{},"中":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"会":{"docs":{},"被":{"docs":{},"自":{"docs":{},"动":{"docs":{},"当":{"docs":{},"做":{"docs":{},"程":{"docs":{},"序":{"docs":{},"的":{"docs":{},"入":{"docs":{},"口":{"docs":{},"点":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"你":{"docs":{},"也":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"a_swift_tour.html#gitbook_631":{"ref":"a_swift_tour.html#gitbook_631","tf":0.1111111111111111}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"swift/swift.html#gitbook_633":{"ref":"swift/swift.html#gitbook_633","tf":0.06666666666666667}}}}}}},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"a_swift_tour.html#gitbook_631":{"ref":"a_swift_tour.html#gitbook_631","tf":0.1111111111111111}}}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"a_swift_tour.html#gitbook_631":{"ref":"a_swift_tour.html#gitbook_631","tf":0.1111111111111111}},"”":{"docs":{},"。":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_631":{"ref":"a_swift_tour.html#gitbook_631","tf":0.1111111111111111}}}}}}}}},"这":{"docs":{},"样":{"docs":{},"的":{"docs":{},"小":{"docs":{},"程":{"docs":{},"序":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"于":{"docs":{},"开":{"docs":{},"发":{"docs":{},"一":{"docs":{},"个":{"docs":{},"完":{"docs":{},"整":{"docs":{},"的":{"docs":{},"操":{"docs":{},"作":{"docs":{},"系":{"docs":{},"统":{"docs":{},"。":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"这":{"docs":{},"些":{"docs":{},"特":{"docs":{},"性":{"docs":{},"让":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"swift/swift.html#gitbook_633":{"ref":"swift/swift.html#gitbook_633","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_631":{"ref":"a_swift_tour.html#gitbook_631","tf":0.1111111111111111}}}}}},"应":{"docs":{},"用":{"docs":{},"将":{"docs":{},"是":{"docs":{},"一":{"docs":{},"场":{"docs":{},"美":{"docs":{},"妙":{"docs":{},"的":{"docs":{},"体":{"docs":{},"验":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"之":{"docs":{},"后":{"docs":{},"也":{"docs":{},"会":{"docs":{},"不":{"docs":{},"断":{"docs":{},"开":{"docs":{},"发":{"docs":{},"新":{"docs":{},"特":{"docs":{},"性":{"docs":{},"和":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"性":{"docs":{},"。":{"docs":{},"我":{"docs":{},"们":{"docs":{},"对":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"swift/swift.html#gitbook_633":{"ref":"swift/swift.html#gitbook_633","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"程":{"docs":{},"序":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"结":{"docs":{},"合":{"docs":{},"了":{"docs":{},"c":{"docs":{},"和":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"的":{"docs":{},"优":{"docs":{},"点":{"docs":{},"并":{"docs":{},"且":{"docs":{},"不":{"docs":{},"受":{"docs":{},"c":{"docs":{},"的":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"性":{"docs":{},"的":{"docs":{},"限":{"docs":{},"制":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"使":{"docs":{},"用":{"docs":{},"安":{"docs":{},"全":{"docs":{},"的":{"docs":{},"编":{"docs":{},"程":{"docs":{},"模":{"docs":{},"式":{"docs":{},"并":{"docs":{},"添":{"docs":{},"加":{"docs":{},"了":{"docs":{},"很":{"docs":{},"多":{"docs":{},"新":{"docs":{},"特":{"docs":{},"性":{"docs":{},",":{"docs":{},"这":{"docs":{},"将":{"docs":{},"使":{"docs":{},"编":{"docs":{},"程":{"docs":{},"更":{"docs":{},"简":{"docs":{},"单":{"docs":{},",":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"性":{"docs":{},"更":{"docs":{},"强":{"docs":{},",":{"docs":{},"也":{"docs":{},"更":{"docs":{},"有":{"docs":{},"趣":{"docs":{},"。":{"docs":{},"除":{"docs":{},"此":{"docs":{},"之":{"docs":{},"外":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"还":{"docs":{},"支":{"docs":{},"持":{"docs":{},"人":{"docs":{},"见":{"docs":{},"人":{"docs":{},"爱":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"a":{"docs":{},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"a":{"docs":{"swift/swift.html#gitbook_633":{"ref":"swift/swift.html#gitbook_633","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},")":{"docs":{},"来":{"docs":{},"简":{"docs":{},"化":{"docs":{},"内":{"docs":{},"存":{"docs":{},"管":{"docs":{},"理":{"docs":{},"。":{"docs":{},"我":{"docs":{},"们":{"docs":{},"在":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"a":{"docs":{},"的":{"docs":{},"基":{"docs":{},"础":{"docs":{},"上":{"docs":{},"构":{"docs":{},"建":{"docs":{},"框":{"docs":{},"架":{"docs":{},"栈":{"docs":{},"并":{"docs":{},"将":{"docs":{},"其":{"docs":{},"标":{"docs":{},"准":{"docs":{},"化":{"docs":{},"。":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"swift/swift.html#gitbook_633":{"ref":"swift/swift.html#gitbook_633","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"开":{"docs":{},"发":{"docs":{},"者":{"docs":{},"对":{"docs":{},"于":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"并":{"docs":{},"不":{"docs":{},"会":{"docs":{},"感":{"docs":{},"到":{"docs":{},"陌":{"docs":{},"生":{"docs":{},"。":{"docs":{},"它":{"docs":{},"采":{"docs":{},"用":{"docs":{},"了":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"的":{"docs":{},"命":{"docs":{},"名":{"docs":{},"参":{"docs":{},"数":{"docs":{},"以":{"docs":{},"及":{"docs":{},"动":{"docs":{},"态":{"docs":{},"对":{"docs":{},"象":{"docs":{},"模":{"docs":{},"型":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"无":{"docs":{},"缝":{"docs":{},"对":{"docs":{},"接":{"docs":{},"到":{"docs":{},"现":{"docs":{},"有":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"a":{"docs":{},"框":{"docs":{},"架":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"可":{"docs":{},"以":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"代":{"docs":{},"码":{"docs":{},"。":{"docs":{},"在":{"docs":{},"此":{"docs":{},"基":{"docs":{},"础":{"docs":{},"之":{"docs":{},"上":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"swift/swift.html#gitbook_633":{"ref":"swift/swift.html#gitbook_633","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"swift/swift.html#gitbook_633":{"ref":"swift/swift.html#gitbook_633","tf":0.06666666666666667}}}}}}},"t":{"docs":{},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"框":{"docs":{},"架":{"docs":{},"。":{"docs":{},"拥":{"docs":{},"有":{"docs":{},"了":{"docs":{},"这":{"docs":{},"些":{"docs":{},"特":{"docs":{},"性":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"swift/swift.html#gitbook_633":{"ref":"swift/swift.html#gitbook_633","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}},"length":31},"corpusTokens":["arc)来简化内存管理。我们在foundation和cocoa的基础上构建框架栈并将其标准化。objective-c","count","c或者objective-c代码,那你应该很熟悉这种形式——在swift中,这行代码就是一个完整的程序。你不需要为了输入输出或者字符串处理导入一个单独的库。全局作用域中的代码会被自动当做程序的入口点,所以你也不需要main","hello","languag","objective-c开发者对于swift并不会感到陌生。它采用了objective-c的命名参数以及动态对象模型,可以无缝对接到现有的cocoa框架,并且可以兼容objective-c代码。在此基础之上,swift","println(\"hello","program","refer","swift","swift对于初学者来说也很友好。它是第一个既满足工业标准又像脚本语言一样充满表现力和趣味的编程语言。它支持代码预览,这个革命性的特性可以允许程序员在不编译和运行应用程序的前提下运行swift","swift将现代编程语言的精华和苹果工程师文化的智慧结合了起来。编译器对性能进行了优化,编程语言对开发进行了优化,两者互不干扰,鱼与熊掌兼得。swift即可以用于开发“hello","swift是一种新的编程语言,用于编写ios和o","swift是苹果在wwdc2014上发布的一款全新的编程语言,本书译自苹果官方的swift教程《th","swift的开发从很久之前就开始了。为了给swift打好基础,苹果公司改进了编译器,调试器和框架结构。我们使用自动引用计数(automat","swift的特性和开发历史,并对swift","swift编写ios和o","touch框架。拥有了这些特性,swift","undefinedundefin","world","world”。在swift","world”这样的小程序,也可以用于开发一个完整的操作系统。所有的这些特性让swift","xcode","x应用将是一场美妙的体验,swift之后也会不断开发新特性和兼容性。我们对swift","x应用程序。swift结合了c和objective-c的优点并且不受c的兼容性的限制。swift使用安全的编程模式并添加了很多新特性,这将使编程更简单,扩展性更强,也更有趣。除此之外,swift还支持人见人爱的cocoa和cocoa"],"pipeline":["trimmer","stopWordFilter","stemmer"]} \ No newline at end of file +{"version":"0.5.2","fields":[{"name":"title","boost":10},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"index.html#gitbook_6110":["languag","program","swift","swift是苹果在wwdc2014上发布的一款全新的编程语言,本书译自苹果官方的swift教程《th","undefinedundefin"],"a_swift_tour.html#gitbook_6111":["0","0..3","0..time","0.0","1","10","100","103","11","12","13","16","19","2","20","25","3","3.0","3.1","3.59","3.69","3.79","4","42","43","5","5.2","50","597","69105","7","7.simpledescript","70","70.0","75","8","87","8:09","9","9.9","94","a.adjust","a.simpledescript","ac","ace.toraw","acerawvalu","add","addon","addone(numb","adescript","adjust","amount","anoth","anotherproperti","ant","anycommonel","anycommonelements([1","appl","applese","applesummari","area","b","b.adjust","b.simpledescript","bdescript","blue","bool","bottl","captain","card","card(rank","card添加一个方法,创建一副完整的扑克牌并把每张牌的rank和suit","case","catfish","celeri","chees","class","club","condit","condition(item","convertedrank","convertedrank.simpledescript","count","counter","counter.incrementby(2","cucumb","c或者objective-c代码,那你应该很熟悉这种形式——在swift中,这行代码就是一个完整的程序。你不需要为了输入输出或者字符串处理导入一个单独的库。全局作用域中的代码会被自动当做程序的入口点,所以你也不需要main","dai","default","deinit","diamond","dictionary(item","result","result(str","result(sunris","return","returnfifteen","rh","rhsitem","sandwich","score","secondforloop","see","self","self.nam","self.sidelength","self被用来区别实例变量。当你创建实例的时候,像传入函数参数一样给类传入构造器的参数。每个属性都需要赋值——无论是通过声明(就像numberofsides)还是通过构造器(就像nam","sequenc","serverrespons","serverresponse.error(\"out","serverresponse.result(\"6:00","serverresponse和switch","set","seven","shape","shape.numberofsid","shape.simpledescript","shapedescript","shape类缺少了一些重要的东西:一个构造函数来初始化类实例。使用init","shoppinglist","shoppinglist[1","side","sidelength","simpl","simpleclass","simpledescript","simplestructur","simplestructure时候mutating关键字用来标记一个会修改结构体的方法。simpleclass","six","size","some(100","some(t","sort([1","soup","spade","spici","squar","square(sidelength","square.sidelength","standard","string","string(self.toraw","string(width","struct","structur","success","suit","suit.heart","suit.simpledescript","suit添加一个color方法,对spades和clubs返回“black”,对hearts和diamonds返回“r","sum","sumof","sumof(42","sumof(numb","sunris","sunset","super.init(nam","swift","switch","switch中匹配到的子句之后,程序会退出switch语句,并不会继续向下运行,所以不需要在每个子句结尾写break","t","t.generatortype.el","tast","tea","teamscor","ten","test","test.area","test.simpledescript","three","threedescript","threeofspad","threeofspades.simpledescript","threeofspadesdescript","time","todai","toraw和fromraw","triagl","triangl","triangle.perimet","triangle.sidelength","triangleandsquar","triangleandsquare(s","triangleandsquare.squar","triangleandsquare.square.sidelength","triangleandsquare.triangle.sidelength","true","tuesdai","tulip","two","type","u","u.generatortype.el","unc","uncom","undefinedundefin","var","veget","vegetablecom","veri","water","watercress","where,只在冒号后面写接口或者类名。<t","width","widthlabel","willset","willset和didset","world","world”。在swift","x","x.hassuffix(\"pepp","xcode","y"],"swift/README.html#gitbook_6112":["swift","swift的特性和开发历史,并对swift","undefinedundefin"],"swift/swift.html#gitbook_6113":["arc)来简化内存管理。我们在foundation和cocoa的基础上构建框架栈并将其标准化。objective-c","count","objective-c开发者对于swift并不会感到陌生。它采用了objective-c的命名参数以及动态对象模型,可以无缝对接到现有的cocoa框架,并且可以兼容objective-c代码。在此基础之上,swift","refer","swift","swift对于初学者来说也很友好。它是第一个既满足工业标准又像脚本语言一样充满表现力和趣味的编程语言。它支持代码预览,这个革命性的特性可以允许程序员在不编译和运行应用程序的前提下运行swift","swift将现代编程语言的精华和苹果工程师文化的智慧结合了起来。编译器对性能进行了优化,编程语言对开发进行了优化,两者互不干扰,鱼与熊掌兼得。swift即可以用于开发“hello","swift是一种新的编程语言,用于编写ios和o","swift的开发从很久之前就开始了。为了给swift打好基础,苹果公司改进了编译器,调试器和框架结构。我们使用自动引用计数(automat","swift编写ios和o","touch框架。拥有了这些特性,swift","undefinedundefin","world”这样的小程序,也可以用于开发一个完整的操作系统。所有的这些特性让swift","x应用将是一场美妙的体验,swift之后也会不断开发新特性和兼容性。我们对swift","x应用程序。swift结合了c和objective-c的优点并且不受c的兼容性的限制。swift使用安全的编程模式并添加了很多新特性,这将使编程更简单,扩展性更强,也更有趣。除此之外,swift还支持人见人爱的cocoa和cocoa"]},"length":4},"tokenStore":{"root":{"0":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.013189448441247002}},".":{"0":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{},".":{"3":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}},"1":{"0":{"0":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}}},"3":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}}},"1":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"2":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.004796163069544364}}},"3":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"6":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"9":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.009592326139088728}}},"2":{"0":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"5":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.009592326139088728}}},"3":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.011990407673860911}},".":{"0":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}},"1":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"5":{"9":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{}},"6":{"9":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{}},"7":{"9":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{}},"docs":{}}},"4":{"2":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}}},"3":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}}},"5":{"0":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}}},"9":{"7":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{}},"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.005995203836930456}},".":{"2":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{}}},"6":{"9":{"1":{"0":{"5":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"7":{"0":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},".":{"0":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{}}},"5":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.004796163069544364}},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}},"8":{"7":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},":":{"0":{"9":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{}},"docs":{}}},"9":{"4":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},".":{"9":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{}}},"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"index.html#gitbook_6110":{"ref":"index.html#gitbook_6110","tf":0.16666666666666666}}}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"s":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.004796163069544364}}}}}}}},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}},"t":{"docs":{},"来":{"docs":{},"声":{"docs":{},"明":{"docs":{},"常":{"docs":{},"量":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}},"h":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}}},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"'":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}},"s":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}},"o":{"docs":{},"g":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"index.html#gitbook_6110":{"ref":"index.html#gitbook_6110","tf":0.16666666666666666}}}}}},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"e":{"docs":{},".":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}},"变":{"docs":{},"量":{"docs":{},"运":{"docs":{},"行":{"docs":{},"时":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},",":{"docs":{},"编":{"docs":{},"译":{"docs":{},"器":{"docs":{},"会":{"docs":{},"把":{"docs":{},"它":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"当":{"docs":{},"做":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}},"e":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},",":{"docs":{},"新":{"docs":{},"值":{"docs":{},"的":{"docs":{},"名":{"docs":{},"字":{"docs":{},"是":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"e":{"docs":{},"c":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}},"m":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"index.html#gitbook_6110":{"ref":"index.html#gitbook_6110","tf":10.333333333333334},"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":10.003597122302159},"swift/README.html#gitbook_6112":{"ref":"swift/README.html#gitbook_6112","tf":10.333333333333334},"swift/swift.html#gitbook_6113":{"ref":"swift/swift.html#gitbook_6113","tf":10.066666666666666}},"是":{"docs":{},"苹":{"docs":{},"果":{"docs":{},"在":{"docs":{},"w":{"docs":{},"w":{"docs":{},"d":{"docs":{},"c":{"2":{"0":{"1":{"4":{"docs":{},"上":{"docs":{},"发":{"docs":{},"布":{"docs":{},"的":{"docs":{},"一":{"docs":{},"款":{"docs":{},"全":{"docs":{},"新":{"docs":{},"的":{"docs":{},"编":{"docs":{},"程":{"docs":{},"语":{"docs":{},"言":{"docs":{},",":{"docs":{},"本":{"docs":{},"书":{"docs":{},"译":{"docs":{},"自":{"docs":{},"苹":{"docs":{},"果":{"docs":{},"官":{"docs":{},"方":{"docs":{},"的":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"教":{"docs":{},"程":{"docs":{},"《":{"docs":{},"t":{"docs":{},"h":{"docs":{"index.html#gitbook_6110":{"ref":"index.html#gitbook_6110","tf":0.16666666666666666}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}},"一":{"docs":{},"种":{"docs":{},"新":{"docs":{},"的":{"docs":{},"编":{"docs":{},"程":{"docs":{},"语":{"docs":{},"言":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"编":{"docs":{},"写":{"docs":{},"i":{"docs":{},"o":{"docs":{},"s":{"docs":{},"和":{"docs":{},"o":{"docs":{"swift/swift.html#gitbook_6113":{"ref":"swift/swift.html#gitbook_6113","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"特":{"docs":{},"性":{"docs":{},"和":{"docs":{},"开":{"docs":{},"发":{"docs":{},"历":{"docs":{},"史":{"docs":{},",":{"docs":{},"并":{"docs":{},"对":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"swift/README.html#gitbook_6112":{"ref":"swift/README.html#gitbook_6112","tf":0.3333333333333333}}}}}}}}}}}}}}}}},"开":{"docs":{},"发":{"docs":{},"从":{"docs":{},"很":{"docs":{},"久":{"docs":{},"之":{"docs":{},"前":{"docs":{},"就":{"docs":{},"开":{"docs":{},"始":{"docs":{},"了":{"docs":{},"。":{"docs":{},"为":{"docs":{},"了":{"docs":{},"给":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"打":{"docs":{},"好":{"docs":{},"基":{"docs":{},"础":{"docs":{},",":{"docs":{},"苹":{"docs":{},"果":{"docs":{},"公":{"docs":{},"司":{"docs":{},"改":{"docs":{},"进":{"docs":{},"了":{"docs":{},"编":{"docs":{},"译":{"docs":{},"器":{"docs":{},",":{"docs":{},"调":{"docs":{},"试":{"docs":{},"器":{"docs":{},"和":{"docs":{},"框":{"docs":{},"架":{"docs":{},"结":{"docs":{},"构":{"docs":{},"。":{"docs":{},"我":{"docs":{},"们":{"docs":{},"使":{"docs":{},"用":{"docs":{},"自":{"docs":{},"动":{"docs":{},"引":{"docs":{},"用":{"docs":{},"计":{"docs":{},"数":{"docs":{},"(":{"docs":{},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"swift/swift.html#gitbook_6113":{"ref":"swift/swift.html#gitbook_6113","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"对":{"docs":{},"于":{"docs":{},"初":{"docs":{},"学":{"docs":{},"者":{"docs":{},"来":{"docs":{},"说":{"docs":{},"也":{"docs":{},"很":{"docs":{},"友":{"docs":{},"好":{"docs":{},"。":{"docs":{},"它":{"docs":{},"是":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"既":{"docs":{},"满":{"docs":{},"足":{"docs":{},"工":{"docs":{},"业":{"docs":{},"标":{"docs":{},"准":{"docs":{},"又":{"docs":{},"像":{"docs":{},"脚":{"docs":{},"本":{"docs":{},"语":{"docs":{},"言":{"docs":{},"一":{"docs":{},"样":{"docs":{},"充":{"docs":{},"满":{"docs":{},"表":{"docs":{},"现":{"docs":{},"力":{"docs":{},"和":{"docs":{},"趣":{"docs":{},"味":{"docs":{},"的":{"docs":{},"编":{"docs":{},"程":{"docs":{},"语":{"docs":{},"言":{"docs":{},"。":{"docs":{},"它":{"docs":{},"支":{"docs":{},"持":{"docs":{},"代":{"docs":{},"码":{"docs":{},"预":{"docs":{},"览":{"docs":{},",":{"docs":{},"这":{"docs":{},"个":{"docs":{},"革":{"docs":{},"命":{"docs":{},"性":{"docs":{},"的":{"docs":{},"特":{"docs":{},"性":{"docs":{},"可":{"docs":{},"以":{"docs":{},"允":{"docs":{},"许":{"docs":{},"程":{"docs":{},"序":{"docs":{},"员":{"docs":{},"在":{"docs":{},"不":{"docs":{},"编":{"docs":{},"译":{"docs":{},"和":{"docs":{},"运":{"docs":{},"行":{"docs":{},"应":{"docs":{},"用":{"docs":{},"程":{"docs":{},"序":{"docs":{},"的":{"docs":{},"前":{"docs":{},"提":{"docs":{},"下":{"docs":{},"运":{"docs":{},"行":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"swift/swift.html#gitbook_6113":{"ref":"swift/swift.html#gitbook_6113","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"将":{"docs":{},"现":{"docs":{},"代":{"docs":{},"编":{"docs":{},"程":{"docs":{},"语":{"docs":{},"言":{"docs":{},"的":{"docs":{},"精":{"docs":{},"华":{"docs":{},"和":{"docs":{},"苹":{"docs":{},"果":{"docs":{},"工":{"docs":{},"程":{"docs":{},"师":{"docs":{},"文":{"docs":{},"化":{"docs":{},"的":{"docs":{},"智":{"docs":{},"慧":{"docs":{},"结":{"docs":{},"合":{"docs":{},"了":{"docs":{},"起":{"docs":{},"来":{"docs":{},"。":{"docs":{},"编":{"docs":{},"译":{"docs":{},"器":{"docs":{},"对":{"docs":{},"性":{"docs":{},"能":{"docs":{},"进":{"docs":{},"行":{"docs":{},"了":{"docs":{},"优":{"docs":{},"化":{"docs":{},",":{"docs":{},"编":{"docs":{},"程":{"docs":{},"语":{"docs":{},"言":{"docs":{},"对":{"docs":{},"开":{"docs":{},"发":{"docs":{},"进":{"docs":{},"行":{"docs":{},"了":{"docs":{},"优":{"docs":{},"化":{"docs":{},",":{"docs":{},"两":{"docs":{},"者":{"docs":{},"互":{"docs":{},"不":{"docs":{},"干":{"docs":{},"扰":{"docs":{},",":{"docs":{},"鱼":{"docs":{},"与":{"docs":{},"熊":{"docs":{},"掌":{"docs":{},"兼":{"docs":{},"得":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"即":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"于":{"docs":{},"开":{"docs":{},"发":{"docs":{},"“":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"swift/swift.html#gitbook_6113":{"ref":"swift/swift.html#gitbook_6113","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"编":{"docs":{},"写":{"docs":{},"i":{"docs":{},"o":{"docs":{},"s":{"docs":{},"和":{"docs":{},"o":{"docs":{"swift/swift.html#gitbook_6113":{"ref":"swift/swift.html#gitbook_6113","tf":0.06666666666666667}}}}}}}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.005995203836930456}},"中":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"到":{"docs":{},"的":{"docs":{},"子":{"docs":{},"句":{"docs":{},"之":{"docs":{},"后":{"docs":{},",":{"docs":{},"程":{"docs":{},"序":{"docs":{},"会":{"docs":{},"退":{"docs":{},"出":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"语":{"docs":{},"句":{"docs":{},",":{"docs":{},"并":{"docs":{},"不":{"docs":{},"会":{"docs":{},"继":{"docs":{},"续":{"docs":{},"向":{"docs":{},"下":{"docs":{},"运":{"docs":{},"行":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"每":{"docs":{},"个":{"docs":{},"子":{"docs":{},"句":{"docs":{},"结":{"docs":{},"尾":{"docs":{},"写":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"w":{"docs":{},"i":{"docs":{},"c":{"docs":{},"h":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}}}}}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}}}}}}}}}}}}},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"l":{"docs":{},"f":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.004796163069544364}},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}}}}}}}},"被":{"docs":{},"用":{"docs":{},"来":{"docs":{},"区":{"docs":{},"别":{"docs":{},"实":{"docs":{},"例":{"docs":{},"变":{"docs":{},"量":{"docs":{},"。":{"docs":{},"当":{"docs":{},"你":{"docs":{},"创":{"docs":{},"建":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},",":{"docs":{},"像":{"docs":{},"传":{"docs":{},"入":{"docs":{},"函":{"docs":{},"数":{"docs":{},"参":{"docs":{},"数":{"docs":{},"一":{"docs":{},"样":{"docs":{},"给":{"docs":{},"类":{"docs":{},"传":{"docs":{},"入":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"。":{"docs":{},"每":{"docs":{},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},"都":{"docs":{},"需":{"docs":{},"要":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"—":{"docs":{},"—":{"docs":{},"无":{"docs":{},"论":{"docs":{},"是":{"docs":{},"通":{"docs":{},"过":{"docs":{},"声":{"docs":{},"明":{"docs":{},"(":{"docs":{},"就":{"docs":{},"像":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},")":{"docs":{},"还":{"docs":{},"是":{"docs":{},"通":{"docs":{},"过":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"(":{"docs":{},"就":{"docs":{},"像":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.004796163069544364}},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"6":{"docs":{},":":{"0":{"0":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}},"和":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}},"h":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.007194244604316547}},".":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}},"类":{"docs":{},"缺":{"docs":{},"少":{"docs":{},"了":{"docs":{},"一":{"docs":{},"些":{"docs":{},"重":{"docs":{},"要":{"docs":{},"的":{"docs":{},"东":{"docs":{},"西":{"docs":{},":":{"docs":{},"一":{"docs":{},"个":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"来":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"类":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"使":{"docs":{},"用":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},"[":{"1":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.004796163069544364}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.011990407673860911}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.015587529976019185}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},"e":{"docs":{},"时":{"docs":{},"候":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"用":{"docs":{},"来":{"docs":{},"标":{"docs":{},"记":{"docs":{},"一":{"docs":{},"个":{"docs":{},"会":{"docs":{},"修":{"docs":{},"改":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},"。":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"z":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"0":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{}},"docs":{}},"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"[":{"1":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{}}}}},"u":{"docs":{},"p":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.004796163069544364}}}}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.009592326139088728}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}}}}}}}}}}}}},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.02877697841726619}},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}},"u":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}},"i":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.004796163069544364}},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}},"添":{"docs":{},"加":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"对":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"和":{"docs":{},"c":{"docs":{},"l":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"返":{"docs":{},"回":{"docs":{},"“":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"”":{"docs":{},",":{"docs":{},"对":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"返":{"docs":{},"回":{"docs":{},"“":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}},"o":{"docs":{},"f":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"(":{"4":{"2":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{}},"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}},"n":{"docs":{},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}}}}}}}}}}},"u":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"index.html#gitbook_6110":{"ref":"index.html#gitbook_6110","tf":0.16666666666666666},"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091},"swift/README.html#gitbook_6112":{"ref":"swift/README.html#gitbook_6112","tf":0.3333333333333333},"swift/swift.html#gitbook_6113":{"ref":"swift/swift.html#gitbook_6113","tf":0.06666666666666667}}}}}}}}}}}}}}}},"c":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"o":{"docs":{},"m":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}},"c":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.004796163069544364}},"e":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}},"d":{"docs":{},"d":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}},"o":{"docs":{},"n":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.007194244604316547}}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},"[":{"1":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.004796163069544364}},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"u":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}},"c":{"docs":{},")":{"docs":{},"来":{"docs":{},"简":{"docs":{},"化":{"docs":{},"内":{"docs":{},"存":{"docs":{},"管":{"docs":{},"理":{"docs":{},"。":{"docs":{},"我":{"docs":{},"们":{"docs":{},"在":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"a":{"docs":{},"的":{"docs":{},"基":{"docs":{},"础":{"docs":{},"上":{"docs":{},"构":{"docs":{},"建":{"docs":{},"框":{"docs":{},"架":{"docs":{},"栈":{"docs":{},"并":{"docs":{},"将":{"docs":{},"其":{"docs":{},"标":{"docs":{},"准":{"docs":{},"化":{"docs":{},"。":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"swift/swift.html#gitbook_6113":{"ref":"swift/swift.html#gitbook_6113","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.004796163069544364}}}},"t":{"docs":{},"t":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}},"r":{"docs":{},"d":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"(":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}},"添":{"docs":{},"加":{"docs":{},"一":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"副":{"docs":{},"完":{"docs":{},"整":{"docs":{},"的":{"docs":{},"扑":{"docs":{},"克":{"docs":{},"牌":{"docs":{},"并":{"docs":{},"把":{"docs":{},"每":{"docs":{},"张":{"docs":{},"牌":{"docs":{},"的":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"和":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.025179856115107913}}}},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"s":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.01079136690647482}}}}},"u":{"docs":{},"b":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}}}}},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182},"swift/swift.html#gitbook_6113":{"ref":"swift/swift.html#gitbook_6113","tf":0.06666666666666667}},"e":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"(":{"2":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}},"或":{"docs":{},"者":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"代":{"docs":{},"码":{"docs":{},",":{"docs":{},"那":{"docs":{},"你":{"docs":{},"应":{"docs":{},"该":{"docs":{},"很":{"docs":{},"熟":{"docs":{},"悉":{"docs":{},"这":{"docs":{},"种":{"docs":{},"形":{"docs":{},"式":{"docs":{},"—":{"docs":{},"—":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"中":{"docs":{},",":{"docs":{},"这":{"docs":{},"行":{"docs":{},"代":{"docs":{},"码":{"docs":{},"就":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"完":{"docs":{},"整":{"docs":{},"的":{"docs":{},"程":{"docs":{},"序":{"docs":{},"。":{"docs":{},"你":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"为":{"docs":{},"了":{"docs":{},"输":{"docs":{},"入":{"docs":{},"输":{"docs":{},"出":{"docs":{},"或":{"docs":{},"者":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"处":{"docs":{},"理":{"docs":{},"导":{"docs":{},"入":{"docs":{},"一":{"docs":{},"个":{"docs":{},"单":{"docs":{},"独":{"docs":{},"的":{"docs":{},"库":{"docs":{},"。":{"docs":{},"全":{"docs":{},"局":{"docs":{},"作":{"docs":{},"用":{"docs":{},"域":{"docs":{},"中":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"会":{"docs":{},"被":{"docs":{},"自":{"docs":{},"动":{"docs":{},"当":{"docs":{},"做":{"docs":{},"程":{"docs":{},"序":{"docs":{},"的":{"docs":{},"入":{"docs":{},"口":{"docs":{},"点":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"你":{"docs":{},"也":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"m":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}}}},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}},"i":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}}}}}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"<":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.013189448441247002}},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"写":{"docs":{},"一":{"docs":{},"个":{"docs":{},"扩":{"docs":{},"展":{"docs":{},",":{"docs":{},"添":{"docs":{},"加":{"docs":{},"a":{"docs":{},"b":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.005995203836930456}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},";":{"docs":{},"和":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.005995203836930456}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}}},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}},"l":{"docs":{},"s":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}},"i":{"docs":{},"b":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"i":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"并":{"docs":{},"指":{"docs":{},"定":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{},"为":{"4":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}},"u":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}},"r":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.027577937649880094}},"来":{"docs":{},"声":{"docs":{},"明":{"docs":{},"一":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"名":{"docs":{},"字":{"docs":{},"和":{"docs":{},"参":{"docs":{},"数":{"docs":{},"来":{"docs":{},"调":{"docs":{},"用":{"docs":{},"函":{"docs":{},"数":{"docs":{},"。":{"docs":{},"使":{"docs":{},"用":{"docs":{},"-":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"g":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"和":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}},"和":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}},"o":{"docs":{},"o":{"docs":{},"d":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},"(":{"docs":{},"\"":{"docs":{},"b":{"docs":{},"o":{"docs":{},"b":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.004796163069544364}},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}},"成":{"docs":{},"员":{"docs":{},":":{"docs":{},"给":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},"常":{"docs":{},"量":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"时":{"docs":{},",":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"成":{"docs":{},"员":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},"需":{"docs":{},"要":{"docs":{},"用":{"docs":{},"全":{"docs":{},"名":{"docs":{},"来":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"常":{"docs":{},"量":{"docs":{},"没":{"docs":{},"有":{"docs":{},"显":{"docs":{},"式":{"docs":{},"指":{"docs":{},"定":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"里":{"docs":{},",":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"成":{"docs":{},"员":{"docs":{},"使":{"docs":{},"用":{"docs":{},"缩":{"docs":{},"写":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},"来":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"的":{"docs":{},"值":{"docs":{},"已":{"docs":{},"经":{"docs":{},"知":{"docs":{},"道":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.005995203836930456}}}}}}},"i":{"docs":{},"f":{"docs":{},"和":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"来":{"docs":{},"处":{"docs":{},"理":{"docs":{},"值":{"docs":{},"缺":{"docs":{},"失":{"docs":{},"的":{"docs":{},"情":{"docs":{},"况":{"docs":{},"。":{"docs":{},"有":{"docs":{},"些":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"值":{"docs":{},"是":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"值":{"docs":{},"可":{"docs":{},"能":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"具":{"docs":{},"体":{"docs":{},"的":{"docs":{},"值":{"docs":{},"或":{"docs":{},"者":{"docs":{},"是":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"来":{"docs":{},"进":{"docs":{},"行":{"docs":{},"条":{"docs":{},"件":{"docs":{},"操":{"docs":{},"作":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{},"、":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"、":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"和":{"docs":{},"d":{"docs":{},"o":{"docs":{},"-":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"语":{"docs":{},"句":{"docs":{},"中":{"docs":{},",":{"docs":{},"条":{"docs":{},"件":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"布":{"docs":{},"尔":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"—":{"docs":{},"—":{"docs":{},"像":{"docs":{},"i":{"docs":{},"f":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"(":{"7":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{}},"b":{"docs":{},"y":{"docs":{},"(":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}},"s":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}}}}}}}}}},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.025179856115107913}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}}}}},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}},"k":{"docs":{},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}},"e":{"docs":{},"i":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"g":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}}}}}},"m":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.005995203836930456}},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}}}}}}}},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"m":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}}}}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"整":{"docs":{},"数":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.005995203836930456}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.02158273381294964}},"d":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"p":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}},"e":{"docs":{},"的":{"docs":{},"另":{"docs":{},"一":{"docs":{},"个":{"docs":{},"子":{"docs":{},"类":{"docs":{},"c":{"docs":{},"i":{"docs":{},"r":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"接":{"docs":{},"收":{"docs":{},"两":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"一":{"docs":{},"个":{"docs":{},"是":{"docs":{},"半":{"docs":{},"径":{"docs":{},"一":{"docs":{},"个":{"docs":{},"是":{"docs":{},"名":{"docs":{},"称":{"docs":{},",":{"docs":{},"实":{"docs":{},"现":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"和":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},",":{"docs":{},"?":{"docs":{},"后":{"docs":{},"面":{"docs":{},"的":{"docs":{},"东":{"docs":{},"西":{"docs":{},"都":{"docs":{},"会":{"docs":{},"被":{"docs":{},"忽":{"docs":{},"略":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"整":{"docs":{},"个":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"返":{"docs":{},"回":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}}}},"条":{"docs":{},"件":{"docs":{},"会":{"docs":{},"判":{"docs":{},"断":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},",":{"docs":{},"大":{"docs":{},"括":{"docs":{},"号":{"docs":{},"中":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"会":{"docs":{},"被":{"docs":{},"跳":{"docs":{},"过":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"不":{"docs":{},"是":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},",":{"docs":{},"会":{"docs":{},"将":{"docs":{},"值":{"docs":{},"赋":{"docs":{},"给":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}},"w":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.016786570743405275}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.007194244604316547}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}},"s":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"[":{"docs":{},"\"":{"docs":{},"j":{"docs":{},"a":{"docs":{},"y":{"docs":{},"n":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"a":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},"e":{"docs":{},"改":{"docs":{},"成":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},",":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"会":{"docs":{},"是":{"docs":{},"什":{"docs":{},"么":{"docs":{},"?":{"docs":{},"添":{"docs":{},"加":{"docs":{},"一":{"docs":{},"个":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},",":{"docs":{},"当":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"是":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},"时":{"docs":{},"给":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"<":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},"e":{"docs":{},"标":{"docs":{},"记":{"docs":{},"—":{"docs":{},"—":{"docs":{},"如":{"docs":{},"果":{"docs":{},"没":{"docs":{},"有":{"docs":{},"添":{"docs":{},"加":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"就":{"docs":{},"重":{"docs":{},"写":{"docs":{},"父":{"docs":{},"类":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"话":{"docs":{},"编":{"docs":{},"译":{"docs":{},"器":{"docs":{},"会":{"docs":{},"报":{"docs":{},"错":{"docs":{},"。":{"docs":{},"编":{"docs":{},"译":{"docs":{},"器":{"docs":{},"同":{"docs":{},"样":{"docs":{},"会":{"docs":{},"检":{"docs":{},"测":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"开":{"docs":{},"发":{"docs":{},"者":{"docs":{},"对":{"docs":{},"于":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"并":{"docs":{},"不":{"docs":{},"会":{"docs":{},"感":{"docs":{},"到":{"docs":{},"陌":{"docs":{},"生":{"docs":{},"。":{"docs":{},"它":{"docs":{},"采":{"docs":{},"用":{"docs":{},"了":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"的":{"docs":{},"命":{"docs":{},"名":{"docs":{},"参":{"docs":{},"数":{"docs":{},"以":{"docs":{},"及":{"docs":{},"动":{"docs":{},"态":{"docs":{},"对":{"docs":{},"象":{"docs":{},"模":{"docs":{},"型":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"无":{"docs":{},"缝":{"docs":{},"对":{"docs":{},"接":{"docs":{},"到":{"docs":{},"现":{"docs":{},"有":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"a":{"docs":{},"框":{"docs":{},"架":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"可":{"docs":{},"以":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"代":{"docs":{},"码":{"docs":{},"。":{"docs":{},"在":{"docs":{},"此":{"docs":{},"基":{"docs":{},"础":{"docs":{},"之":{"docs":{},"上":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"swift/swift.html#gitbook_6113":{"ref":"swift/swift.html#gitbook_6113","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}}}}}}},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}},"n":{"docs":{},"k":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.004796163069544364}},".":{"docs":{},"a":{"docs":{},"c":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"(":{"3":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"docs":{}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}},"<":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},">":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.005995203836930456}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}},"u":{"docs":{},"n":{"docs":{},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.03597122302158273}},"f":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}}}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"swift/swift.html#gitbook_6113":{"ref":"swift/swift.html#gitbook_6113","tf":0.06666666666666667}}}}}},"h":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}}}},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.004796163069544364}},".":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}},"e":{"docs":{},"a":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"m":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.004796163069544364}}}}}}}},"n":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}},"s":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}},".":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}}}}},"o":{"docs":{},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"和":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"框":{"docs":{},"架":{"docs":{},"。":{"docs":{},"拥":{"docs":{},"有":{"docs":{},"了":{"docs":{},"这":{"docs":{},"些":{"docs":{},"特":{"docs":{},"性":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"swift/swift.html#gitbook_6113":{"ref":"swift/swift.html#gitbook_6113","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"g":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.004796163069544364}},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}},".":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}}}}},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}},"l":{"docs":{},"i":{"docs":{},"p":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}},"w":{"docs":{},"o":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.050359712230215826}}}},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.004796163069544364}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},",":{"docs":{},"只":{"docs":{},"在":{"docs":{},"冒":{"docs":{},"号":{"docs":{},"后":{"docs":{},"面":{"docs":{},"写":{"docs":{},"接":{"docs":{},"口":{"docs":{},"或":{"docs":{},"者":{"docs":{},"类":{"docs":{},"名":{"docs":{},"。":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}},"”":{"docs":{},"。":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}},"这":{"docs":{},"样":{"docs":{},"的":{"docs":{},"小":{"docs":{},"程":{"docs":{},"序":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"于":{"docs":{},"开":{"docs":{},"发":{"docs":{},"一":{"docs":{},"个":{"docs":{},"完":{"docs":{},"整":{"docs":{},"的":{"docs":{},"操":{"docs":{},"作":{"docs":{},"系":{"docs":{},"统":{"docs":{},"。":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"这":{"docs":{},"些":{"docs":{},"特":{"docs":{},"性":{"docs":{},"让":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"swift/swift.html#gitbook_6113":{"ref":"swift/swift.html#gitbook_6113","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.002398081534772182}},".":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"p":{"docs":{},"e":{"docs":{},"p":{"docs":{},"p":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.001199040767386091}}}}}},"应":{"docs":{},"用":{"docs":{},"将":{"docs":{},"是":{"docs":{},"一":{"docs":{},"场":{"docs":{},"美":{"docs":{},"妙":{"docs":{},"的":{"docs":{},"体":{"docs":{},"验":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"之":{"docs":{},"后":{"docs":{},"也":{"docs":{},"会":{"docs":{},"不":{"docs":{},"断":{"docs":{},"开":{"docs":{},"发":{"docs":{},"新":{"docs":{},"特":{"docs":{},"性":{"docs":{},"和":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"性":{"docs":{},"。":{"docs":{},"我":{"docs":{},"们":{"docs":{},"对":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"swift/swift.html#gitbook_6113":{"ref":"swift/swift.html#gitbook_6113","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"程":{"docs":{},"序":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"结":{"docs":{},"合":{"docs":{},"了":{"docs":{},"c":{"docs":{},"和":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"的":{"docs":{},"优":{"docs":{},"点":{"docs":{},"并":{"docs":{},"且":{"docs":{},"不":{"docs":{},"受":{"docs":{},"c":{"docs":{},"的":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"性":{"docs":{},"的":{"docs":{},"限":{"docs":{},"制":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"使":{"docs":{},"用":{"docs":{},"安":{"docs":{},"全":{"docs":{},"的":{"docs":{},"编":{"docs":{},"程":{"docs":{},"模":{"docs":{},"式":{"docs":{},"并":{"docs":{},"添":{"docs":{},"加":{"docs":{},"了":{"docs":{},"很":{"docs":{},"多":{"docs":{},"新":{"docs":{},"特":{"docs":{},"性":{"docs":{},",":{"docs":{},"这":{"docs":{},"将":{"docs":{},"使":{"docs":{},"编":{"docs":{},"程":{"docs":{},"更":{"docs":{},"简":{"docs":{},"单":{"docs":{},",":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"性":{"docs":{},"更":{"docs":{},"强":{"docs":{},",":{"docs":{},"也":{"docs":{},"更":{"docs":{},"有":{"docs":{},"趣":{"docs":{},"。":{"docs":{},"除":{"docs":{},"此":{"docs":{},"之":{"docs":{},"外":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"还":{"docs":{},"支":{"docs":{},"持":{"docs":{},"人":{"docs":{},"见":{"docs":{},"人":{"docs":{},"爱":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"a":{"docs":{},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"a":{"docs":{"swift/swift.html#gitbook_6113":{"ref":"swift/swift.html#gitbook_6113","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{"a_swift_tour.html#gitbook_6111":{"ref":"a_swift_tour.html#gitbook_6111","tf":0.0035971223021582736}}}},"length":378},"corpusTokens":["0","0..3","0..time","0.0","1","10","100","103","11","12","13","16","19","2","20","25","3","3.0","3.1","3.59","3.69","3.79","4","42","43","5","5.2","50","597","69105","7","7.simpledescript","70","70.0","75","8","87","8:09","9","9.9","94","a.adjust","a.simpledescript","ac","ace.toraw","acerawvalu","add","addon","addone(numb","adescript","adjust","amount","anoth","anotherproperti","ant","anycommonel","anycommonelements([1","appl","applese","applesummari","arc)来简化内存管理。我们在foundation和cocoa的基础上构建框架栈并将其标准化。objective-c","area","b","b.adjust","b.simpledescript","bdescript","blue","bool","bottl","captain","card","card(rank","card添加一个方法,创建一副完整的扑克牌并把每张牌的rank和suit","case","catfish","celeri","chees","class","club","condit","condition(item","convertedrank","convertedrank.simpledescript","count","counter","counter.incrementby(2","cucumb","c或者objective-c代码,那你应该很熟悉这种形式——在swift中,这行代码就是一个完整的程序。你不需要为了输入输出或者字符串处理导入一个单独的库。全局作用域中的代码会被自动当做程序的入口点,所以你也不需要main","dai","default","deinit","diamond","dictionary(item","result","result(str","result(sunris","return","returnfifteen","rh","rhsitem","sandwich","score","secondforloop","see","self","self.nam","self.sidelength","self被用来区别实例变量。当你创建实例的时候,像传入函数参数一样给类传入构造器的参数。每个属性都需要赋值——无论是通过声明(就像numberofsides)还是通过构造器(就像nam","sequenc","serverrespons","serverresponse.error(\"out","serverresponse.result(\"6:00","serverresponse和switch","set","seven","shape","shape.numberofsid","shape.simpledescript","shapedescript","shape类缺少了一些重要的东西:一个构造函数来初始化类实例。使用init","shoppinglist","shoppinglist[1","side","sidelength","simpl","simpleclass","simpledescript","simplestructur","simplestructure时候mutating关键字用来标记一个会修改结构体的方法。simpleclass","six","size","some(100","some(t","sort([1","soup","spade","spici","squar","square(sidelength","square.sidelength","standard","string","string(self.toraw","string(width","struct","structur","success","suit","suit.heart","suit.simpledescript","suit添加一个color方法,对spades和clubs返回“black”,对hearts和diamonds返回“r","sum","sumof","sumof(42","sumof(numb","sunris","sunset","super.init(nam","swift","swift对于初学者来说也很友好。它是第一个既满足工业标准又像脚本语言一样充满表现力和趣味的编程语言。它支持代码预览,这个革命性的特性可以允许程序员在不编译和运行应用程序的前提下运行swift","swift将现代编程语言的精华和苹果工程师文化的智慧结合了起来。编译器对性能进行了优化,编程语言对开发进行了优化,两者互不干扰,鱼与熊掌兼得。swift即可以用于开发“hello","swift是一种新的编程语言,用于编写ios和o","swift是苹果在wwdc2014上发布的一款全新的编程语言,本书译自苹果官方的swift教程《th","swift的开发从很久之前就开始了。为了给swift打好基础,苹果公司改进了编译器,调试器和框架结构。我们使用自动引用计数(automat","swift的特性和开发历史,并对swift","swift编写ios和o","switch","switch中匹配到的子句之后,程序会退出switch语句,并不会继续向下运行,所以不需要在每个子句结尾写break","t","t.generatortype.el","tast","tea","teamscor","ten","test","test.area","test.simpledescript","three","threedescript","threeofspad","threeofspades.simpledescript","threeofspadesdescript","time","todai","toraw和fromraw","touch框架。拥有了这些特性,swift","triagl","triangl","triangle.perimet","triangle.sidelength","triangleandsquar","triangleandsquare(s","triangleandsquare.squar","triangleandsquare.square.sidelength","triangleandsquare.triangle.sidelength","true","tuesdai","tulip","two","type","u","u.generatortype.el","unc","uncom","undefinedundefin","var","veget","vegetablecom","veri","water","watercress","where,只在冒号后面写接口或者类名。<t","width","widthlabel","willset","willset和didset","world","world”。在swift","world”这样的小程序,也可以用于开发一个完整的操作系统。所有的这些特性让swift","x","x.hassuffix(\"pepp","xcode","x应用将是一场美妙的体验,swift之后也会不断开发新特性和兼容性。我们对swift","x应用程序。swift结合了c和objective-c的优点并且不受c的兼容性的限制。swift使用安全的编程模式并添加了很多新特性,这将使编程更简单,扩展性更强,也更有趣。除此之外,swift还支持人见人爱的cocoa和cocoa","y"],"pipeline":["trimmer","stopWordFilter","stemmer"]} \ No newline at end of file diff --git a/swift/README.html b/swift/README.html index 7f6d8444..30416ac7 100644 --- a/swift/README.html +++ b/swift/README.html @@ -46,7 +46,7 @@ -
+
@@ -189,7 +189,7 @@
-
+

欢迎使用Swift

在本章中您将了解Swift的特性和开发历史,并对Swift有一个初步的了解。

diff --git a/swift/swift.html b/swift/swift.html index 4470b0d8..7f9a1501 100644 --- a/swift/swift.html +++ b/swift/swift.html @@ -46,7 +46,7 @@ -
+
@@ -189,7 +189,7 @@
-
+

关于Swift

Swift是一种新的编程语言,用于编写iOS和OS X应用程序。Swift结合了C和Objective-C的优点并且不受C的兼容性的限制。Swift使用安全的编程模式并添加了很多新特性,这将使编程更简单,扩展性更强,也更有趣。除此之外,Swift还支持人见人爱的Cocoa和Cocoa Touch框架。拥有了这些特性,Swift将重新定义软件开发。