diff --git a/chapter1/01_swift.html b/chapter1/01_swift.html index f71877e8..d85bbb11 100644 --- a/chapter1/01_swift.html +++ b/chapter1/01_swift.html @@ -46,7 +46,7 @@ -
+
@@ -587,7 +587,7 @@
-
+

关于 Swift


diff --git a/chapter1/02_a_swift_tour.html b/chapter1/02_a_swift_tour.html index 8b01c747..a9478449 100644 --- a/chapter1/02_a_swift_tour.html +++ b/chapter1/02_a_swift_tour.html @@ -46,7 +46,7 @@ -
+
@@ -587,7 +587,7 @@
-
+

Swift 初见


diff --git a/chapter1/chapter1.html b/chapter1/chapter1.html index 54ebb6ea..f45208a1 100644 --- a/chapter1/chapter1.html +++ b/chapter1/chapter1.html @@ -46,7 +46,7 @@ -
+
@@ -587,7 +587,7 @@
-
+

欢迎使用 Swift

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

diff --git a/chapter2/01_The_Basics.html b/chapter2/01_The_Basics.html index d2d8b481..7abffb5a 100644 --- a/chapter2/01_The_Basics.html +++ b/chapter2/01_The_Basics.html @@ -46,7 +46,7 @@ -
+
@@ -587,7 +587,7 @@
-
+

基础部分


diff --git a/chapter2/02_Basic_Operators.html b/chapter2/02_Basic_Operators.html index 71c6cbcb..a9b7b696 100644 --- a/chapter2/02_Basic_Operators.html +++ b/chapter2/02_Basic_Operators.html @@ -46,7 +46,7 @@ -
+
@@ -587,7 +587,7 @@
-
+

基本运算符


diff --git a/chapter2/03_Strings_and_Characters.html b/chapter2/03_Strings_and_Characters.html index dec8a9e4..e747b56e 100644 --- a/chapter2/03_Strings_and_Characters.html +++ b/chapter2/03_Strings_and_Characters.html @@ -46,7 +46,7 @@ -
+
@@ -587,7 +587,7 @@
-
+

字符串和字符 (Strings and Characters)


diff --git a/chapter2/04_Collection_Types.html b/chapter2/04_Collection_Types.html index 0689556c..9a1df1f7 100644 --- a/chapter2/04_Collection_Types.html +++ b/chapter2/04_Collection_Types.html @@ -46,7 +46,7 @@ -
+
@@ -587,7 +587,7 @@
-
+

集合类型 (Collection Types)


diff --git a/chapter2/05_Control_Flow.html b/chapter2/05_Control_Flow.html index bad4d0fc..d3856ae2 100644 --- a/chapter2/05_Control_Flow.html +++ b/chapter2/05_Control_Flow.html @@ -46,7 +46,7 @@ -
+
@@ -587,7 +587,7 @@
-
+

控制流


diff --git a/chapter2/06_Functions.html b/chapter2/06_Functions.html index 51dc717b..cf58bc71 100644 --- a/chapter2/06_Functions.html +++ b/chapter2/06_Functions.html @@ -46,7 +46,7 @@ -
+
@@ -587,7 +587,7 @@
-
+

函数(Functions)


diff --git a/chapter2/07_Closures.html b/chapter2/07_Closures.html index 71329899..61581c64 100644 --- a/chapter2/07_Closures.html +++ b/chapter2/07_Closures.html @@ -46,7 +46,7 @@ -
+
@@ -587,7 +587,7 @@
-
+

闭包


diff --git a/chapter2/08_Enumerations.html b/chapter2/08_Enumerations.html index fe2d8ebc..44883554 100644 --- a/chapter2/08_Enumerations.html +++ b/chapter2/08_Enumerations.html @@ -46,7 +46,7 @@ -
+
@@ -587,7 +587,7 @@
-
+

枚举(Enumerations)


diff --git a/chapter2/09_Classes_and_Structures.html b/chapter2/09_Classes_and_Structures.html index 30c45948..1646d5a1 100644 --- a/chapter2/09_Classes_and_Structures.html +++ b/chapter2/09_Classes_and_Structures.html @@ -46,7 +46,7 @@ -
+
@@ -587,7 +587,7 @@
-
+

类和结构体

本页包含内容:

@@ -598,6 +598,261 @@
  • 类和结构体的选择
  • 集合(collection)类型的赋值与复制行为
  • +

    类和结构体是人们构建代码所用的一种通用且灵活的构造体。为了在类和结构体中实现各种功能,我们必须要严格按照对于常量,变量以及函数所规定的语法规则来定义属性和添加方法。

    +

    与其他编程语言所不同的是,Swift 并不要求你为自定义类和结构去创建独立的接口和实现文件。你所要做的是在一个单一文件中定义一个类或者结构体,系统将会自动生成面向其它代码的外部接口。

    +
    +

    通常一个的实例被称为对象。然而在Swift 中,类和结构体的关系要比在其他语言中更加的密切,本章中所讨论的大部分功能都可以用在类和结构体上。因此,我们会主要使用实例而不是对象

    +
    +

    类和结构体对比

    +

    Swift 中类和结构体有很多共同点。共同处在于:

    +
      +
    • 定义属性用于储存值
    • +
    • 定义方法用于提供功能
    • +
    • 定义下标用于通过下标语法访问值
    • +
    • 定义初始化器用于生成初始化值
    • +
    • 通过扩展以增加默认实现的功能
    • +
    • 符合协议以对某类提供标准功能
    • +
    +

    更多信息请参见 属性方法下标初始化扩展,和协议

    +

    与结构体相比,类还有如下的附加功能:

    +
      +
    • 继承允许一个类继承另一个类的特征
    • +
    • 类型转换允许在运行时检查和解释一个类实例的类型
    • +
    • 取消初始化器允许一个类实例释放任何其所被分配的资源
    • +
    • 引用计数允许对一个类的多次引用
    • +
    +

    更多信息请参见继承类型转换初始化,和自动引用计数

    +
    +

    结构体总是通过被复制的方式在代码中传递,因此请不要使用引用计数。

    +
    +

    定义

    +

    类和结构体有着类似的定义方式。我们通过关键字classstruct来分别表示类和结构体,并在一对大括号中定义它们的具体内容:

    +
    class SomeClass {
    +    // class definition goes here
    +}
    +struct SomeStructure {
    +    // structure definition goes here
    +}
    +
    +

    在你每次定义一个新类或者结构体的时候,实际上你是有效地定义了一个新的Swift 类型。因此请使用 UpperCamelCase 这种方式来命名(如 SomeClassSomeStructure等),以便符合标准Swift 类型的大写命名风格(如StringIntBool)。相反的,请使用lowerCamelCase这种方式为属性和方法命名(如framerateincrementCount),以便和类区分。

    +
    +

    以下是定义结构体和定义类的示例:

    +
    struct Resolution {
    +    var width = 0
    +    var heigth = 0
    +}
    +class VideoMode {
    +    var resolution = Resolution()
    +    var interlaced = false
    +    var frameRate = 0.0
    +    var name: String?
    +}
    +

    在上面的示例中我们定义了一个名为Resolution的结构体,用来描述一个显示器的像素分辨率。这个结构体包含了两个名为widthheight的储存属性。储存属性是捆绑和储存在类或结构体中的常量或变量。当这两个属性被初始化为整数0的时候,它们会被推断为Int类型。

    +

    在上面的示例中我们还定义了一个名为VideoMode的类,用来描述一个视频显示器的特定模式。这个类包含了四个储存属性变量。第一个是分辨率,它被初始化为一个新的Resolution结构体的实例,具有Resolution的属性类型。新VideoMode实例同时还会初始化其它三个属性,它们分别是,初始值为false(意为“non-interlaced video”)的inteflaced,回放帧率初始值为0.0frameRate和值为可选Stringnamename属性会被自动赋予一个默认值nil,意为“没有name值”,因它是一个可选类型。

    +

    类和结构体实例

    +

    Resolution结构体和VideoMode类的定义仅描述了什么是ResolutionVideoMode。它们并没有描述一个特定的分辨率(resolution)或者视频模式(video mode)。为了描述一个特定的分辨率或者视频模式,我们需要生成一个它们的实例。

    +

    生成结构体和类实例的语法非常相似:

    +
    let someResolution = Resolution()
    +let someVideoMode = VideoMode()
    +

    结构体和类都使用初始化器语法来生成新的实例。初始化器语法的最简单形式是在结构体或者类的类型名称后跟随一个空括弧,如Resolution()VideoMode()。通过这种方式所创建的类或者结构体实例,其属均会被初始化为默认值。Initialization章节会对类和结构体的初始化进行更详细的讨论。

    +

    属性访问

    +

    通过使用点语法dot syntax),你可以访问实例中所含有的属性。其语法规则是,实例名后面紧跟属性名,两者通过点号(.)连接:

    +
    println("The width of someResolution is \(someResolution.width)")
    +// prints "The width of someResolution is 0"
    +

    在上面的例子中,someResolution.width引用someResolutionwidth属性,返回width的初始值0

    +

    你也可以访问子属性,如何VideoModeResolution属性的width属性:

    +
    println("The width of someVideoMode is \(someVideoMode.resolution.width)")
    +// prints "The width of someVideoMode is 0"
    +

    你也可以使用点语法为属性变量赋值:

    +
    someVideoMode.resolution.width = 12880
    +println("The width of someVideoMode is now \(someVideoMode.resolution.width)")
    +// prints "The width of someVideoMode is now 1280"
    +
    +

    与Objective-C 语言不同的是,Swift 允许直接设置结构体属性的子属性。上面的最后一个例子,就是直接设置了someVideoModeresolution属性的width这个子属性,以上操作并不需要从新设置resolution属性。

    +
    +

    结构体类型的成员逐一初始化器

    +

    //Memberwise Initializers for structure Types

    +

    所有结构体都有一个自动生成的成员逐一初始化器,用于初始化新结构体实例中成员的属性。新实例中各个属性的初始值可以通过属性的名称传递到成员逐一初始化器之中:

    +
    let vga = resolution(width:640, heigth: 480)
    +

    与结构体不同,类实例没有默认的成员逐一初始化器。Initialization章节会对初始化器进行更详细的讨论。

    +

    结构体和枚举是值类型

    +

    值类型被赋予给一个变量,常数或者本身被传递给一个函数的时候,实际上操作的是其的拷贝。

    +

    在之前的章节中,我们已经大量使用了值类型。实际上,在Swift 中,所有的基本类型:整数(Integer)、浮点数(floating-point)、布尔值(Booleans)、字符串(string)、数组(array)和字典(dictionaries),都是值类型,并且都是以结构体的形式在后台所实现。

    +

    在Swift中,所有的结构体和枚举都是值类型。这意味着它们的实例,以及实例中所包含的任何值类型属性,在代码中传递的时候都会被复制。

    +

    请看下面这个示例,其使用了前一个示例中Resolution结构体:

    +
    let hd = Resolution(width: 1920, height: 1080)
    +var cinema = hd
    +

    在以上示例中,声明了一个名为hd的常量,其值为一个初始化为全高清视频分辨率(1920像素宽,1080像素高)的Resolution实例。

    +

    然后示例中又声明了一个名为cinema的变量,其值为之前声明的hd。因为Resolution是一个结构体,所以cinema的值其实是hd的一个拷贝副本,而不是hd本身。尽管hdcinema有着相同的宽(width)和高(height)属性,但是在后台中,它们是两个完全不同的实例。

    +

    下面,为了符合数码影院放映的需求(2048像素宽,1080像素高),cinemawidth属性需要作如下修改:

    +
    cinema.width = 2048
    +

    这里,将会显示cinemawidth属性确已改为了2048

    +
    println("cinema is now  \(cinema.width) pixels wide")
    +// prints "cinema is now 2048 pixels wide"
    +

    然而,初始的hd实例中width属性还是1920

    +
    println("hd is still \(hd.width    ) pixels wide")
    +// prints "hd is still 1920 pixels wide"
    +

    在将hd赋予给cinema的时候,实际上是将hd中所储存的值(values)进行拷贝,然后将拷贝的数据储存到新的cinema实例中。结果就是两个完全独立的实例碰巧包含有相同的数值。由于两者相互独立,因此将cinemawidth修改为2048并不会影响hd中的宽(width)。

    +

    枚举也遵循相同的行为准则:

    +
    enum CompassPoint {
    +    case North, South, East, West
    +}
    +var currentDirection = CompassPoint.West
    +let rememberedDirection = currentDirection
    +currentDirection = .East
    +if rememberDirection == .West {
    +    println("The remembered direction is still .West")
    +}
    +// prints "The remembered direction is still .West"
    +

    上例中rememberedDirection被赋予了currentDirection的值(value),实际上它被赋予的是值(value)的一个拷贝。赋值过程结束后再修改currentDirection的值并不影响rememberedDirection所储存的原始值(value)的拷贝。

    +

    类是引用类型

    +

    与值类型不同,引用类型在被赋予到一个变量,常量或者被传递到一个函数时,操作的并不是其拷贝。因此,引用的是已存在的实例本身而不是其拷贝。

    +

    请看下面这个示例,其使用了之前定义的VideoMode类:

    +
    let tenEighty = VideoMode()
    +tenEighty.resolution = hd
    +tenEighty.interlaced = true
    +tenEighty.name = "1080i"
    +tenEighty.frameRate = 25.0
    +

    以上示例中,声明了一个名为tenEighty的常量,其引用了一个VideoMode类的新实例。在之前的示例中,这个视频模式(video mode)被赋予了HD分辨率(1920*1080)的一个拷贝(hd)。同时设置为交错(interlaced),命名为“1080i”。最后,其帧率是25.0帧每秒。

    +

    然后,tenEighty 被赋予名为alsoTenEighty的新常量,同时对alsoTenEighty的帧率进行修改:

    +
    let alsoTenEighty = tenEighty
    +alsoTenEighty.frameRate = 30.0
    +

    因为类是引用类型,所以tenEightalsoTenEight实际上引用的是相同的VideoMode实例。换句话说,它们只是同一个实例的两种叫法。

    +

    下面,通过查看tenEightyframeRate属性,我们会发现它正确的显示了基本VideoMode实例的新帧率,其值为30.0

    +
    println("The frameRate property of tenEighty is now \(tenEighty.frameRate)")
    +// prints "The frameRate property of theEighty is now 30.0"
    +

    需要注意的是tenEightyalsoTenEighty被声明为常量(constants)而不是变量。然而你依然可以改变tenEighty.frameRatealsoTenEighty.frameRate,因为这两个常量本身不会改变。它们并不储存这个VideoMode实例,在后台仅仅是对VideoMode实例的引用。所以,改变的是被引用的基础VideoModeframeRate参数,而不改变常量的值。

    +

    恒等运算符

    +

    因为类是引用类型,有可能有多个常量和变量在后台同时引用某一个类实例。(对于结构体和枚举来说,这并不成立。因为它们作值类型,在被赋予到常量,变量或者传递到函数时,总是会被拷贝。)

    +

    如果能够判定两个常量或者变量是否引用同一个类实例将会很有帮助。为了达到这个目的,Swift 内建了两个恒等运算符:

    +
      +
    • 等价于 ( === )
    • +
    • 不等价于 ( !== )
    • +
    +

    以下是运用这两个运算符检测两个常量或者变量是否引用同一个实例:

    +
    if tenEighty === alsoTenTighty {
    +    println("tenTighty and alsoTenEighty refer to the same Resolution instance.")
    +}
    +//prints "tenEighty and alsoTenEighty refer to the same Resolution instance."
    +

    请注意“等价于”(用三个等号表示,===) 与“等于”(用两个等号表示,==)的不同:

    +
      +
    • “等价于”表示两个类类型(class type)的常量或者变量引用同一个类实例。
    • +
    • “等于”表示两个实例的值“相等”或“相同”,判定时要遵照类设计者定义定义的评判标准,因此相比于“相等”,这是一种更加合适的叫法。
    • +
    +

    当你在定义你的自定义类和结构体的时候,你有义务来决定判定两个实例“相等”的标准。在章节Equivalence Operators中将会详细介绍实现自定义“等于”和“不等于”运算符的流程。

    +

    指针

    +

    如果你有C,C++或者Objective-C语言的经验,那么你也许会知道这些语言使用指针来引用内存中的地址。一个Swift 常量或者变量引用一个引用类型的实例与C语言中的指针类似,不同的是并不直接指向内存中的某个地址,而且也不要求你使用星号(*)来表明你在创建一个引用。Swift 中这些引用与其它的常量或变量的定义方式相同。

    +

    类和结构体的选择

    +

    在你的代码中,你可以使用类和结构体来定义你的自定义数据类型。

    +

    然而,结构体实例总是通过值传递,类实例总是通过引用传递。这意味两者适用不同的任务。当你的在考虑一个工程项目的数据构造和功能的时候,你需要决定每个数据构造是定义成类还是结构体。

    +

    按照通用的准则,当符合一条或多条以下条件时,请考虑构建结构体:

    +
      +
    • 结构体的主要目的是用来封装少量相关简单数据值。
    • +
    • 有理由预计一个结构体实例在赋值或传递时,封装的数据将会被拷贝而不是被引用。
    • +
    • 任何在结构体中储存的值类型属性,也将会被拷贝,而不是被引用。
    • +
    • 结构体不需要去继承另一个已存在类型的属性或者行为。
    • +
    +

    合适的结构体候选者包括:

    +
      +
    • 几何形状的大小,封装一个width属性和height属性,两者均为Double类型。
    • +
    • 一定范围内的路径,封装一个start属性和length属性,两者均为Int类型。
    • +
    • 三维坐标系内一点,封装xyz属性,三者均为Double类型。
    • +
    +

    在所有其它案例中,定义一个类,生成一个它的实例,并通过引用来管理和传递。实际中,这意味着绝大部分的自定义数据构造都应该是类,而非结构体。

    +

    集合(Collection)类型的赋值和拷贝行为

    +

    Swift 中数组(Array)字典(Dictionary)类型均以结构体的形式实现。然而当数组被赋予一个常量或变量,或被传递给一个函数或方法时,其拷贝行为与字典和其它结构体有些许不同。

    +

    以下对数组结构体的行为描述与对NSArrayNSDictionary的行为描述在本质上不同,后者是以类的形式实现,前者是以结构体的形式实现。NSArrayNSDictionary实例总是以对已有实例引用,而不是拷贝的方式被赋值和传递。

    +
    +

    以下是对于数组,字典,字符串和其它值的拷贝的描述。 +在你的代码中,拷贝好像是确实是在有拷贝行为的地方产生过。然而,在Swift 的后台中,只有确有必要,实际(actual)拷贝才会被执行。Swift 管理所有的值拷贝以确保性能最优化的性能,所以你也没有必要去避免赋值以保证最优性能。(实际赋值由系统管理优化)

    +
    +

    字典类型的赋值和拷贝行为

    +

    无论何时将一个字典实例赋给一个常量或变量,或者传递给一个函数或方法,这个字典会即会在赋值或调用发生时被拷贝。在章节Structures and Enumerations Are Value Types中将会对此过程进行详细介绍。

    +

    如果字典实例中所储存的键(keys)和/或值(values)是值类型(结构体或枚举),当赋值或调用发生时,它们都会被拷贝。相反,如果键(keys)和/或值(values)是引用类型,被拷贝的将会是引用,而不是被它们引用的类实例或函数。字典的键和值的拷贝行为与结构体所储存的属性的拷贝行为相同。

    +

    下面的示例定义了一个名为ages的字典,其中储存了四个人的名字和年龄。ages字典被赋予了一个名为copiedAges的新变量,同时ages在赋值的过程中被拷贝。赋值结束后,agescopiedAges成为两个相互独立的字典。

    +
    var ages = ["Peter": 23, "Wei": 35, "Anish": 65, "Katya": 19]
    +var copiedAges = ages
    +

    这个字典的键(keys)是字符串(String)类型,值(values)是整(Int)类型。这两种类型在Swift 中都是值类型(value types),所以当字典被拷贝时,两者都会被拷贝。

    +

    我们可以通过改变一个字典中的年龄值(age value),检查另一个字典中所对应的值,来证明ages字典确实是被拷贝了。如果在copiedAges字典中将Peter的值设为24,那么ages字典仍然会返回修改前的值23

    +
    copiedAges["Peter"] = 24
    +println(ages["Peter"])
    +// prints "23"
    +

    数组的赋值和拷贝行为

    +

    在Swift 中,数组(Arrays)类型的赋值和拷贝行为要比字典(Dictionary)类型的复杂的多。当操作数组内容时,数组(Array)能提供接近C语言的的性能,并且拷贝行为只有在必要时才会发生。

    +

    如果你将一个数组(Array)实例赋给一个变量或常量,或者将其作为参数传递给函数或方法调用,在事件发生时数组的内容会被拷贝。相反,数组公用相同的元素序列。当你在一个数组内修改某一元素,修改结果也会在另一数组显示。

    +

    对数组来说,拷贝行为仅仅当操作有可能修改数组长度时才会发生。这种行为包括了附加(appending),插入(inserting),删除(removing)或者使用范围下标(ranged subscript)去替换这一范围内的元素。只有当数组拷贝确要发生时,数组内容的行为规则与字典中键值的相同,参见章节Assignment and Copy Behavior for Dictionaries

    +

    下面的示例将一个整数(Int)数组赋给了一个名为a的变量,继而又被赋给了变量bc

    +
    var a = [1, 2, 3]
    +var b = a
    +var c = a
    +

    我们可以在a,b,c上使用下标语法以得到数组的第一个元素:

    +
    println(a[0])
    +// 1
    +println(b[0])
    +// 1
    +println(c[0])
    +// 1
    +

    如果通过下标语法修改数组中某一元素的值,那么a,b,c中的相应值都会发生改变。请注意当你用下标语法修改某一值时,并没有拷贝行为伴随发生,因为下表语法修改值时没有改变数组长度的可能:

    +
    a[0] = 42
    +println(a[0])
    +// 42
    +println(b[0])
    +// 42
    +println(c[0])
    +// 42
    +

    然而,当你给a附加新元素时,数组的长度改变。 +当附加元素这一事件发生时,Swift 语言会创建这个数组的一个拷贝。从此以后,a将会是原数组的一个独立拷贝。

    +

    拷贝发生后,如果再修改a中元素值的话,a将会返回与bc不同的结果,因为后两者引用的是原来的数组:

    +
    a.append(4)
    +a[0] = 777
    +println(a[0])
    +// 777
    +println(b[0])
    +// 42
    +println(c[0])
    +// 42
    +

    确保数组的唯一性

    +

    在操作一个数组,或将其传递给函数以及方法调用之前是很有必要先确定这个数组是有一个唯一拷贝的。通过在数组变量上调用unshare方法来确定数组引用的唯一性。(当数组赋给常量时,不能调用unshare方法)

    +

    如果一个数组被多个变量引用,在其中的一个变量上调用unshare方法,则会拷贝此数组,此时这个变量将会有属于它自己的独立数组拷贝。当数组仅被一个变量引用时,则不会有拷贝发生。

    +

    在上一个示例的最后,bc都引用了同一个数组。此时在b上调用unshare方法则会将b变成一个唯一个拷贝:

    +
    b.unshare()
    +

    unshare方法调用后再修改b中第一个元素的值,这三个数组(a,b,c)会返回不同的三个值:

    +
    b[0] = -105
    +println(a[0])
    +// 77
    +println(b[0])
    +// -105
    +println(c[0])
    +// 42
    +

    判定两个数组是否共用相同元素

    +

    我们通过使用恒等运算符(identity operators)( === and !==)来判定两个数组或子数组共用相同的储存空间或元素。

    +

    下面这个示例使用了“恒等于(identical to)” 运算符(===) 来判定bc是否共用相同的数组元素:

    +
    if b === c {
    +    println("b and c still share the same array elements.")
    +} else {
    +    println("b and c now refer to two independent sets of array elements.")
    +}
    +
    +// prints "b and c now refer totwo independent sets of array elements."
    +

    此外,我们还可以使用恒等运算符来判定两个子数组是否共用相同的元素。下面这个示例中,比较了b的两个相等的子数组,并且确定了这两个子数组都引用相同的元素:

    +
    if b[0...1] === b[0...1] {
    +    println("These two subarrays share the same elements.")
    +} else {
    +    println("These two subarrays do not share the same elements.")
    +}
    +// prints "These two subarrays share the same elements."
    +

    强制复制数组

    +

    我们通过调用数组的copy方法进行强制显性复制。这个方法对数组进行了浅拷贝(shallow copy),并且返回一个包含此拷贝的新数组。

    +

    下面这个示例中定义了一个names数组,其包含了七个人名。还定义了一个copiedNames变量,用以储存在names上调用copy方法所返回的结果:

    +
    var names = ["Mohsen", "Hilary", "Justyn", "Amy", "Rich", "Graham", "Vic"]
    +var copiedNames = names.copy
    +

    我们可以通过修改一个数组中某元素,并且检查另一个数组中对应元素的方法来判定names数组确已被复制。如果你将copiedNames中第一个元素从"Mohsen"修改为"Mo",则names数组返回的仍是拷贝发生前的"Mohsen":

    +
    copiedName[0] = "Mo"
    +println(name[0])
    +// prints "Mohsen"
    +
    +

    如果你仅需要确保你对数组的引用是唯一引用,请调用unshare方法,而不是copy方法。unshare方法仅会在确有必要时才会创建数组拷贝。copy方法会在任何时候都创建一个新的拷贝,即使引用已经是唯一引用。

    +
    diff --git a/chapter2/10_Properties.html b/chapter2/10_Properties.html index cdd38088..33d16aa6 100644 --- a/chapter2/10_Properties.html +++ b/chapter2/10_Properties.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    属性 (Properties)


    diff --git a/chapter2/11_Methods.html b/chapter2/11_Methods.html index 258e2fb8..8b07aa03 100644 --- a/chapter2/11_Methods.html +++ b/chapter2/11_Methods.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    方法(Methods)


    diff --git a/chapter2/12_Subscripts.html b/chapter2/12_Subscripts.html index f3aafb5d..1212cb0a 100644 --- a/chapter2/12_Subscripts.html +++ b/chapter2/12_Subscripts.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    下标(Subscripts)


    diff --git a/chapter2/13_Inheritance.html b/chapter2/13_Inheritance.html index 25cb6257..ab20a3d8 100644 --- a/chapter2/13_Inheritance.html +++ b/chapter2/13_Inheritance.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    继承


    diff --git a/chapter2/14_Initialization.html b/chapter2/14_Initialization.html index 2a6fd009..3ddd35fa 100644 --- a/chapter2/14_Initialization.html +++ b/chapter2/14_Initialization.html @@ -46,7 +46,7 @@ -
    +
    diff --git a/chapter2/15_Deinitialization.html b/chapter2/15_Deinitialization.html index 390a832f..3be2dd90 100644 --- a/chapter2/15_Deinitialization.html +++ b/chapter2/15_Deinitialization.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    析构过程


    diff --git a/chapter2/16_Automatic_Reference_Counting.html b/chapter2/16_Automatic_Reference_Counting.html index 8fe6ef90..e75fa97d 100644 --- a/chapter2/16_Automatic_Reference_Counting.html +++ b/chapter2/16_Automatic_Reference_Counting.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    自动引用计数


    diff --git a/chapter2/17_Optional_Chaining.html b/chapter2/17_Optional_Chaining.html index f730e89c..163615c4 100644 --- a/chapter2/17_Optional_Chaining.html +++ b/chapter2/17_Optional_Chaining.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    Optional Chaining


    diff --git a/chapter2/18_Type_Casting.html b/chapter2/18_Type_Casting.html index 0ccbb6fe..0f33bc78 100644 --- a/chapter2/18_Type_Casting.html +++ b/chapter2/18_Type_Casting.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    类型检查(Type Casting)


    diff --git a/chapter2/19_Nested_Types.html b/chapter2/19_Nested_Types.html index caae0ef7..fcf8810a 100644 --- a/chapter2/19_Nested_Types.html +++ b/chapter2/19_Nested_Types.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    类型嵌套


    diff --git a/chapter2/20_Extensions.html b/chapter2/20_Extensions.html index d661bfa3..08486d8a 100644 --- a/chapter2/20_Extensions.html +++ b/chapter2/20_Extensions.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    扩展(Extensions)


    diff --git a/chapter2/21_Protocols.html b/chapter2/21_Protocols.html index cd5f7000..8b945afb 100644 --- a/chapter2/21_Protocols.html +++ b/chapter2/21_Protocols.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    协议


    diff --git a/chapter2/22_Generics.html b/chapter2/22_Generics.html index 6a338b38..b22f6531 100644 --- a/chapter2/22_Generics.html +++ b/chapter2/22_Generics.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    泛型


    diff --git a/chapter2/23_Advanced_Operators.html b/chapter2/23_Advanced_Operators.html index 15c6f712..f788179b 100644 --- a/chapter2/23_Advanced_Operators.html +++ b/chapter2/23_Advanced_Operators.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    In addition to the operators described in Basic Operators, Swift provides several advanced operators that perform more complex value manipulation. These include all of the bitwise and bit shifting operators you will be familiar with from C and Objective-C.

    除于基本操作符中所讲的运算符, Swift还有许多复杂的高级运算符, 包括了C语和Objective-C中的位运算符和位移运算.

    diff --git a/chapter2/chapter2.html b/chapter2/chapter2.html index 7a8d29e1..e6c349d2 100644 --- a/chapter2/chapter2.html +++ b/chapter2/chapter2.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    Swift 教程

    本章介绍了 Swift 的各种特性及其使用方法,是全书的核心部分。

    diff --git a/chapter3/01_About_the_Language_Reference.html b/chapter3/01_About_the_Language_Reference.html index b235dbf9..5e0ebd5c 100644 --- a/chapter3/01_About_the_Language_Reference.html +++ b/chapter3/01_About_the_Language_Reference.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    关于语言附注


    diff --git a/chapter3/02_Lexical_Structure.html b/chapter3/02_Lexical_Structure.html index 0cc02874..978295c1 100644 --- a/chapter3/02_Lexical_Structure.html +++ b/chapter3/02_Lexical_Structure.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    语法结构


    diff --git a/chapter3/03_Types.html b/chapter3/03_Types.html index 1d649895..aa6c51e5 100644 --- a/chapter3/03_Types.html +++ b/chapter3/03_Types.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    类型(Types)


    diff --git a/chapter3/04_Expressions.html b/chapter3/04_Expressions.html index df5542ce..2563522e 100644 --- a/chapter3/04_Expressions.html +++ b/chapter3/04_Expressions.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    表达式(Expressions)


    diff --git a/chapter3/05_Declarations.html b/chapter3/05_Declarations.html index 917b6d2e..cc06b9f6 100644 --- a/chapter3/05_Declarations.html +++ b/chapter3/05_Declarations.html @@ -46,7 +46,7 @@ -
    +
    diff --git a/chapter3/06_Attributes.html b/chapter3/06_Attributes.html index 9c8cff1b..a89a7d17 100644 --- a/chapter3/06_Attributes.html +++ b/chapter3/06_Attributes.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    特性


    diff --git a/chapter3/07_Patterns.html b/chapter3/07_Patterns.html index c6e973a3..1c71200c 100644 --- a/chapter3/07_Patterns.html +++ b/chapter3/07_Patterns.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    模式(Patterns)


    diff --git a/chapter3/08_Generic_Parameters_and_Arguments.html b/chapter3/08_Generic_Parameters_and_Arguments.html index f5a7376a..ae85ece8 100644 --- a/chapter3/08_Generic_Parameters_and_Arguments.html +++ b/chapter3/08_Generic_Parameters_and_Arguments.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    泛型参数


    diff --git a/chapter3/09_Summary_of_the_Grammar.html b/chapter3/09_Summary_of_the_Grammar.html index 760f0745..c06e1b7b 100644 --- a/chapter3/09_Summary_of_the_Grammar.html +++ b/chapter3/09_Summary_of_the_Grammar.html @@ -44,7 +44,7 @@ -
    +
    @@ -585,7 +585,7 @@
    -
    +

    语法总结


    diff --git a/chapter3/10_Statements.html b/chapter3/10_Statements.html index 5c85e3f6..4614be77 100644 --- a/chapter3/10_Statements.html +++ b/chapter3/10_Statements.html @@ -46,7 +46,7 @@ -
    +
    @@ -587,7 +587,7 @@
    -
    +

    语句


    diff --git a/chapter3/chapter3.html b/chapter3/chapter3.html index c2a6962f..73e06f36 100644 --- a/chapter3/chapter3.html +++ b/chapter3/chapter3.html @@ -46,7 +46,7 @@ -
    +
    diff --git a/index.html b/index.html index 5fdad05e..bfefc916 100644 --- a/index.html +++ b/index.html @@ -44,7 +44,7 @@ -
    +
    @@ -585,7 +585,7 @@
    -
    +

    Swift 编程语言

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

    diff --git a/manifest.appcache b/manifest.appcache index cf2165b5..50fa04aa 100644 --- a/manifest.appcache +++ b/manifest.appcache @@ -1,5 +1,5 @@ CACHE MANIFEST -# Revision 1402451678089 +# Revision 1402469309777 CACHE: index.html @@ -13,8 +13,8 @@ chapter2/04_Collection_Types.html chapter2/05_Control_Flow.html chapter2/06_Functions.html chapter2/07_Closures.html -chapter2/09_Classes_and_Structures.html chapter2/08_Enumerations.html +chapter2/09_Classes_and_Structures.html chapter2/10_Properties.html chapter2/11_Methods.html chapter2/12_Subscripts.html @@ -28,8 +28,8 @@ chapter2/19_Nested_Types.html chapter2/20_Extensions.html chapter2/21_Protocols.html chapter2/22_Generics.html -chapter2/23_Advanced_Operators.html chapter2/chapter2.html +chapter2/23_Advanced_Operators.html chapter3/06_Attributes.html chapter3/01_About_the_Language_Reference.html chapter3/03_Types.html diff --git a/search_index.json b/search_index.json index f010818e..639df19e 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_104":["2014","issu","languag","program","pull","qq群:364279588","request","swift","undefinedundefin","wwdc"],"chapter1/01_swift.html#gitbook_105":["arc","automat","c","cocoa","cocoa的基础上构建框架栈并将其标准化。objective-c","count","c的兼容性的限制。swift","foundat","hello","io","objective-c","os","refer","swift","touch","undefinedundefin","world","x"],"chapter1/02_a_swift_tour.html#gitbook_107":["0","0..3","0..time","0.0","1","10","100","103","11","12","13","16","19","2","2.5","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","c","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","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","setter","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","uncom","undefinedundefin","var","veget","vegetablecom","veri","water","watercress","where,只在冒号后面写接口或者类名。<t","width","widthlabel","willset","willset和didset","world","x","x.hassuffix(\"pepp","xcode","y"],"chapter1/chapter1.html#gitbook_109":["swift","undefinedundefin"],"chapter2/13_Inheritance.html#gitbook_110":["0","0.0","0和maxpasseng","1","10.0","2","35.0","4","40.0","5","60.0","automat","automatic.descript","automatic.spe","automaticcar","automaticcar的speed属性,属性的didset观察器就会自动地设置gear属性,为新的速度选择一个合适的挡位。具体来说就是,属性观察器将新的速度值除以10,然后向下取得最接近的整数值,最后加1来得到档位gear的值。例如,速度为10.0时,挡位为1;速度为35.0时,挡位为4","automaticcar,它是car的子类。automaticcar表示自动挡汽车,它可以根据当前的速度自动选择合适的挡位。automaticcar也提供了定制的descript","bicycl","bicycle.descript","bicycle。这个新类是在vehicle类的基础上创建起来。因此你需要将vehicle类放在bicycl","bicycle不仅可以继承vehicle的属性,还可以继承它的方法。如果你创建了一个bicycle类的实例,你就可以调用它继承来的descript","bicycle是vehicle的子类,vehicle是bicycle的超类。新的bicycle类自动获得vehicle类的特性,比如maxpassengers和numberofwheels属性。你可以在子类中定制这些特性,或添加新的特性来更好地描述bicycl","bicycle的一个子类:双人自行车(tandem)。tandem从bicycle继承了两个属性,而这两个属性是bicycle从vehicle继承而来的。tandem并不修改轮子的数量,因为它仍是一辆自行车,有2个轮子。但它需要修改maxpasseng","bicycle类定义了一个初始化器来设置它定制的特性(自行车只有2个轮子)。bicycle的初始化器调用了它父类vehicle的初始化器super.init(),以此确保在bicycle类试图修改那些继承来的属性前,vehicl","bicycle,它继承了vehicl","car","car.descript","car中的description方法并非完全自定义,而是通过super.description使用了超类vehicle中的descript","car声明了一个新的存储型属性speed,它是double类型的,默认值是0.0,表示“时速是0英里”。'car'有自己的初始化器,它将乘客的最大数量设为5,轮子数量设为4","car的新实例,并打印descript","car重写了继承来的description方法,它的声明与vehicle中的description方法一致,声明前面加上了overrid","class","class前添加@final特性(@fin","class)来将整个类标记为fin","definit","descript","didset","doubl","final","final方法,属性或下标,在编译时会报错。在扩展中,你添加到类里的方法,属性或下标也可以在扩展的定义里标记为fin","final来防止它们被重写,只需要在声明关键字前加上@final特性即可。(例如:@fin","func","gear","getters和sett","getter和sett","getter(或sett","goe","here","init","initi","instanc","int","int(spe","limitedcar","limitedcar.descript","limitedcar.spe","maxpasseng","method),实例属性(inst","method),类方法(class","min(newvalu","mph","numberofwheel","objective-c,在swift","observ","observer),这样一来,当属性值改变时,类就会被通知到。可以为任何属性添加属性观察器,无论它原本被定义为存储型属性(stor","overrid","override关键字。这么做,你就表明了你是想提供一个重写版本,而非错误地提供了一个相同的定义。意外的重写行为可能会导致不可预知的错误,任何缺少overrid","override关键字会提醒swift","passeng","perform","println(\"automaticcar","println(\"bicycl","println(\"car","println(\"speedlimitedcar","println(\"tandem","properti","property)还是计算型属性(comput","property),或下标(subscript)提供自己定制的实现(implementation)。我们把这种行为叫重写(overrid","return","set","setter,那么你也一定要提供getter。如果你不想在重写版本中的getter里修改继承来的属性值,你可以直接返回super.someproperty来返回继承来的值。正如下面的speedlimitedcar","someclass","somemethod的重写实现中,可以通过super.somemethod()来调用超类版本的somemethod","someproperty的getter或setter的重写实现中,可以通过super.someproperty来访问超类版本的someproperti","somesuperclass","somevehicl","speed","speedlimitedcar","speedlimitedcar实例的speed属性时,属性setter的实现会去检查新值与限制值40mph的大小,它会将超类的speed设置为newvalue和40.0中较小的那个。这两个值哪个较小由min函数决定,它是swift标准库中的一个全局函数。min","speedlimitedcar实例的speed属性设置为一个大于40mph的数,然后打印description函数的输出,你会发现速度被限制在40mph","speedlimitedcar,它是car的子类。类speedlimitedcar表示安装了限速装置的车,它的最高速度只能达到40mph。你可以通过重写继承来的spe","string","subclass","subclassing(子类化?待定)重写(overriding)访问超类的方法,属性及下标重写方法重写属性重写属性的getters和setters重写属性观察器(properti","subscript","super","super.descript","super.init","super.spe","super[someindex","swift","swift中,类可以调用和访问超类的方法,属性和下标,并且可以重写(override)这些方法,属性和下标来优化或修改它们的行为。swift","tandem","tandem.descript","tandem类也继承了descript","travel","undefinedundefin","up","var","vehicl","vehicle的一个新的子类,叫car,它重写了从vehicle类继承来的'description'","vehicle的基类。这个基类声明了两个对所有车辆都通用的属性(numberofwheels和maxpassengers)。这些属性在description方法中使用,这个方法返回一个str","vehicle类中maxpassengers的默认值对自行车来说已经是正确的,因此在bicycle的初始化器中并没有改变它。而numberofwheels原来的值对自行车来说是不正确的,因此在初始化器中将它更改为2","vehicle类定义了初始化器(initi","vehicle类的初始化器为任意的一辆车设置一些初始化属性值(numberofwheel","wheel","willset或didset实现是不恰当。此外还要注意,你不可以同时提供重写的setter和重写的属性观察器。如果你想观察属性值的变化,并且你已经为那个属性提供了定制的setter,那么你在sett"],"chapter2/01_The_Basics.html#gitbook_112":["0","0.0","0.0125","0.14159","000123.456","0b","0b10001","0o","0o21","0x","0x11","0xc.3p0","0xfp-2","0xfp2","0x)。小数点两边必须有至少一个十进制数字(或者是十六进制的数字)。浮点原始值还有一个可选的指数,在十进制浮点数中通过大写或者小写的e来指定,在十六进制浮点数中通过大写或者小写的p","0为fals","0为true的时候代码运行才会继续,也就是说,当age的值非负的时候。如果age的值是负数,就像代码中那样,ag","1","1.21875e1","1.25","1.25e-2","1.25e2","10","10^-2","10^2","12.1875","123","125.0","15","17","1_000_000","1_000_000.000_000_1","1的比较结果是bool类型,所以第二个例子可以通过类型检查。类似i","200","255","2^-2","2^2","2_000","3","3.14159","3.14159,0.1和-273.15","3.75","32位平台上,int和int32","32位平台上,uint和uint32","3可以直接和原始值0.14159","3没有显式声明类型,而表达式中出现了一个浮点原始值,所以表达式会被推测为doubl","4.75会变成4,-3.9会变成-3","404","42","42和-23","42和3.14159","42并且没有标明类型,swift","60.0","64位平台上,int和int64","64位平台上,uint和uint64","8、16、32和64","8位无符号整数类型是uint8,32位有符号整数类型是int32","_","actualnumb","actualnumber常量可以在if语句的第一个分支中使用。它已经被可选包含的值初始化过,所以不需要再使用!后缀来获取它的值。在这个例子中,actualnumb","ag","anotherpi","array和dictionari","assert(ag","assert函数来写一个断言。给assert函数传入一个结果为true或者false的表达式以及一条信息,当表达式为fals","assumedstr","audiosampl","audiosample.min","audiosample被定义为uint16的一个别名。因为它是别名,audiosample.min实际上是uint16.min,所以会给maxamplitudefound赋一个初值0","binaryinteg","bonjour","bool","bool。布尔值是指逻辑,因为它们只能是真或者假。swift","bool类型的地方使用了非布尔值,swift","c","cannotbeneg","cat","chang","cocoa里的nslog函数一样,println","code","comment","compile-tim","constantnam","convert","convertednumb","current","currentloginattempt","decimaldoubl","decimalinteg","definitestr","descript","dogcow","doubl","double(thre","double或者float","double精确度很高,至少有15位数字,而float最少只有6","double而不是float","double表示64","end","error","eww","exponentdoubl","exp,那这个数相当于基数和10^exp","exp,那这个数相当于基数和2^exp","fals","first","float表示32","found","found"","found")元组把一个int值和一个str","friendlywelcom","friendlywelcome的值从"hello!"改为了"bonjour!"","gt","hello","hexadecimaldoubl","hexadecimalinteg","horribl","http","http200statu","http200status.descript","http200status.statuscod","http404error","http404error.0","http404error.1","if和while语句中来对可选的值进行判断并把值赋给一个常量或者变量。if和whil","if语句来判断一个可选是否包含值。如果可选有值,结果是true;如果没有值,结果是fals","if语句的第一个分支中操作actualnumber的值,你可以改成if","implicitli","int","int(pi","int)或者(str","int8","int8.max","int8类型的常量或者变量可以存储的数字范围是-128~127,uint8类型的常量或者变量能存储的数字范围是0~255","integ","integerpi","interpolation)的方式把常量名或者变量名当做占位符加入到长字符串中,swift会用当前常量或变量的值替换这些占位符。将常量或变量名放入反斜杠符加一对圆括号中"\\()"","intuint浮点数类型安全和类型推测数值类原始值数值类型转换整数转换整数和浮点数转换类型别名布尔值元组可选if","int就够了。这可以提高代码一致性和可复用性。即使是在32位平台上,int可以存储的整数范围也可以达到-2147483648~2147483647","int是整型;double和float是浮点型;bool是布尔型;string是字符串。swift","int类型更大或者更小的数字。swift","io","justoveronemillion","justthestatuscod","languagenam","less","let来声明常量,用var","line","maxamplitudefound","maximumnumberofloginattempt","maximumnumberofloginattempts或者welcomemessage)和一个指定类型的值(比如数字10或者字符串hello","maximumnumberofloginattempts的新常量,并给它一个值10。然后,声明一个名字是currentloginattempt的变量并将它的值初始化为0","maxvalu","meaningoflif","messag","minvalu","min和max","multilin","multipl","nest","nil","nil不是指针——它是一个确定的值,用来表示值缺失。任何类型的可选都可以被设置为nil","nil的话请不要使用隐式解析可选。如果你需要在变量的生命周期中判断是否是nil","nil,nil","nil,但是后面的代码运行需要一个非nil","now","nsnotfound)来暗示值缺失。这种方法假设方法的调用者知道并记得对特殊值进行判断。然而,swift","objc","objective-c","octalinteg","ok","on","onemillion","option","orangesareorang","orangesareorange和turnipsaredelicious的类型会被推测为bool,因为它们的初值是布尔原始值。就像之前提到的int和double一样,如果你创建变量的时候给它们赋值true或者false,那你不需要给常量或者变量标明bool","os","over","paddeddoubl","person'","pi","pointonefouronefivenin","possiblenumb","possiblenumber.toint","possiblenumber.toint返回的可选int包含一个值,创建一个叫做actualnumb","possiblestr","print","println","println(\"\\(possiblenumb","println(\"eww","println(\"mmm","println(\"th","println(\"thi","println(assumedstr","println(cat","println(definitestr","println(friendlywelcom","println(possiblestr","println函数输出传入的str","println是一个用来输出的全局函数,输出的内容会在最后带换行。如果你用xcode,println将会输出内容到“console”面板上。(另一种函数叫print","properti","quot;an","quot;not","refer","second","serverresponsecod","someopt","sometype(ofinitialvalu","start","statement","statu","statuscod","statusmessag","string","string."","string”的意思是“可以存储任意str","string和隐式解析可选str","string类型有一个叫做toint的方法,作用是将一个string值转换成一个int值。然而,并不是所有的字符串都可以转换成一个整数。字符串"123"可以被转换成数字123,但是字符串"hello","string,你绝对不可能不小心传进去一个int","string,名字为welcomemessag","string,类型安全会阻止你不小心传入一个int","subscript","surveyansw","swift","swift可以推断出这个常量或者变量的类型,详情参见类型安全和类型推断(待添加链接)。在上面的例子中,没有给welcomemessag","swift用字符串插值(str","tasti","three","three的值被用来创建一个doubl","toint方法可能会失败,所以它返回一个可选的int,而不是一个int。一个可选的int被写作int?而不是int。问号暗示包含的值是可选,也就是说可能包含int值也可能不包含值。(不能包含其他任何值比如bool值或者string值。只能是int","toint方法来尝试将一个string转换成int","toobig","true","true。从字面意思来说,断言“断言”一个条件是否为真。你可以使用断言来保证在运行其他代码之前,某些重要的条件已经被满足。如果条件判断为true,代码运行会继续进行;如果条件判断为fals","true和fals","tupl","turnip","turnipsaredelici","twothousand","twothousandandon","twothousand类型是uint16,然而常量one类型是uint8。它们不能直接相加,因为它们类型不同。所以要调用uint16(one)来创建一个新的uint16数字并用on","typealia","uint","uint16","uint16(on","uint16有一个构造器,可以接受一个uint8类型的值,所以这个构造器可以用现有的uint8来创建一个新的uint16。注意,你并不能传入任意类型的值,只能传入uint16","uint16,可以进行相加。目标常量twothousandandone的类型被推测为uint16,因为它是两个uint16","uint8","uint8.max","uint8.min","uint,除非你真的需要存储一个和当前平台原生字长相同的无符号整数。除了这种情况,最好使用int,即使你要存储的值已知是非负的。统一使用int","undefinedundefin","unicod","unown","unwrap","valu","var","web","welcomemessag","welcomemessage变量添加了类型标注,表示这个变量可以存储str","world"","written","x","xcode","y","z","zero"],"chapter2/03_Strings_and_Characters.html#gitbook_114":["0","0(空字符)、\\\\(反斜线)、\\t(水平制表符)、\\n(换行符)、\\r(回车符)、\\"(双引号)、\\'","1","10","103","111","128054","128054,是一个十六进制1f436","144","159","16","182","2","2.5","21","21位数字(和名称),例如u+0061表示小写的拉丁字母a","240","3","33","4","40","5","55357","55357),第二个值为u+dc36","56374","6","68","7.5","8","act","act1scenecount","anoth","anotheremptystr","api","ascii","blackheart","boolean","c","capulet'","carriag","cell","charact","character1","character2","characterpluscharact","characterplusstr","characters(章节信息url","cocoa","codeunit","compar","compile-tim","concaten","constantstr","count","countel","countelements(unusualmenageri","countelements返回的字符数量并不总是与包含相同字符的nsstring的length","d","d``o``g``!和🐶(dog","dog","dogstr","dogstring.unicodescalar","dogstring.utf16","dogstring.utf8","dollarsign","dollarsign、blackheart和sparklingheart","double(multipli","dromedari","empti","emptystr","emptystring.isempti","enumer","equal","error","face字符的utf-16","face的4","face的unicod","face,unicod","for-in","foundat","friar","g","good","great","hall","hasprefix","hasprefix/hassuffix","hello","help","highland","hors","initi","instruct","interpol","isempti","koala","lawrence'","liter","look","loops(章节信息url","lowercas","mansion","messag","morn","multipli","multiplier作为\\(multipli","mutabl","name=\"comparing_strings\">提示41","td>1*2","td>3","td>4","td>5","td>6","td>7","td>8","td>9","three","tr","true","undefinedundefin","var","welcom","win","world","x","y"],"chapter2/15_Deinitialization.html#gitbook_150":["1","10","100","10000","10_000","11","12","2","2000","2100","3","4","5","6","7","7900","8","9","9900","bank","bank.coinsinbank","bank.receivecoins(coinsinpurs","bank.vendcoins(coin","bank和player。bank结构体管理一个虚拟货币的流通,在这个流通中bank永远不可能拥有超过10,000的硬币。在这个游戏中有且只能有一个bank存在,因此bank","bank根据它的coinsinbank属性来跟踪当前它拥有的硬币数量。银行还提供两个方法—vendcoins和receivecoin","class","coin","coinsinbank","coinsinpurs","deinit","deinit来标示析构函数,类似于初始化函数用init","func","game","init(coin","int","join","left","min(numberofcoinstovend","new","nil","now","numberofcoinstovend","player","player(coin","playeron","playerone!.coinsinpurs","playerone!.wincoins(2_000","playerone是可选的,所以由一个感叹号(!)来修饰,每当其wincoins方法被调用时,coinsinpurs","player实例都由一个指定数目硬币组成的启动额度初始化,这些硬币在bank初始化的过程中得到。如果没有足够的硬币可用,play","player实例随着一个100个硬币(如果有)的请求而被创建。这个player实例存储在一个名为playerone的可选player变量中。这里使用一个可选变量,是因为players可以随时离开游戏。设置为可选使得你可以跟踪当前是否有play","player已经赢得了2,000硬币。player的钱包现在有2,100硬币,bank只剩余7,900","player现在已经离开了游戏。这表明是要将可选的playerone变量设置为nil,意思是"没有player实例"。当这种情况发生的时候,playerone变量对player实例的引用被破坏了。没有其它属性或者变量引用player实例,因此为了清空它占用的内存从而释放它。在这发生前一步,其析构函数被自动调用,其硬币被返回到bank","player类定义了一个wincoins方法,该方法从bank获取一定数量的硬币,并把它们添加到player的钱包。player类还实现了一个析构函数,这个析构函数在player实例释放前一步被调用。这里析构函数只是将player的所有硬币都返回给bank","player类描述了游戏中的一个玩家。每一个player在任何时刻都有一定数量的硬币存储在他们的钱包中。这通过player的coinsinpurs","println(\"a","println(\"playeron","println(\"th","println(\"ther","receivecoins(coin","receivecoins方法只是将bank的硬币存储和接收到的硬币数目相加,再保存回bank","return","static","struct","swift会自动释放不再需要的实例以释放资源。如自动引用计数那一章描述,swift通过自动引用计数(arc","undefinedundefin","var","vendcoins(var","vendcoins方法在bank分发硬币之前检查是否有足够的硬币。如果没有足够多的硬币,bank返回一个比请求时小的数字(如果没有硬币留在bank中就返回0)。vendcoins方法声明numberofcoinstovend为一个变量参数,这样就可以在方法体的内部修改数字,而不需要定义一个新的变量。vendcoin","wincoins(coin","won"],"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":["0","1234567890123456","1234_5678_9012_3456","73","apart","apartment(numb","apartment实例有一个叫number,类型为int的属性,并有一个可选的初始化为nil的tenant属性。ten","apartment实例的强引用来自于变量number73。如果你断开这个强引用,再也没有指向apart","applese","arc","arc为了能帮助你管理内存,需要更多的关于你的代码之间关系的信息。本章描述了这些情况,并且为你示范怎样启用arc","arc会分配一大块内存用来储存实例的信息。内存中会包含实例的类型信息,以及这个实例所有相关属性的值。此外,当实例不再被使用时,arc","arc会在引用的实例被销毁后自动将其赋值为nil","arc会在第三个,也即最后一个强引用被断开的时候,销毁person实例,这也意味着你不再使用这个person","arc会跟踪你所新创建的person实例的引用数量,并且会在person","arc会跟踪和计算每一个实例正在被多少属性,常量和变量所引用。哪怕实例的引用数为一,arc","arc无法在实例被销毁后将无主引用设为nil,因为非可选类型的变量不允许被赋值为nil","arc销毁被引用的实例。这种行为阻止了引用变为循环强引用。声明属性或者变量时,在前面加上weak","ashtml","ashtml声明为lazy属性,因为只有当元素确实需要处理为html输出的字符串时,才需要使用ashtml。也就是说,在默认的闭包中可以使用self,因为只有当初始化完成以及self确实存在后,才能访问lazi","ashtml属性。然而,由于ashtml是闭包而不是实例方法,如果你想改变特定元素的html","ashtml属性持有闭包的强引用。但是,闭包在其闭包体内使用了self(引用了self.name和self.text),因此闭包占有了self,这意味着闭包又反过来持有了htmlelement实例的强引用。这样两个对象就产生了循环强引用。(更多关于闭包占有值的信息,请参考captur","ashtml属性,这个闭包返回一个代表html标签的字符串。如果text值存在,该标签就包含可选值text;如果text不存在,该标签就不包含文本。对于段落元素,根据text是"som","be","bodi","call","canada","canada'","capit","capitalc","capitalcity默认值为nil,一旦country的实例在构造函数中给name属性赋值后,整个初始化过程就完成了。这代表一旦name属性被后,country的构造函数就能引用并传递显式的self。country的构造函数在赋值capitalcity时,就能将self作为参数传递给c","capitalnam","captur","card","citi","city!)的方式,将country的capitalcity属性声明为显示展开的可选类型属性。这表示像其他可选类型一样,capitalcity属性的默认值为nil","city(nam","city的构造函数有一个country实例的参数,并且将实例保存为countri","class","closur","countri","country(nam","country.capitalcity.nam","country和city的实例,而不产生循环强引用,并且capitalc","country和city,每个类将另外一个类的实例保存为属性。在这个模型中,每个国家必须有首都,而每一个城市必须属于一个国家。为了实现这种关系,country类拥有一个capitalcity属性,而city类有一个countri","country的构造函数调用了city的构造函数。然而,只有country的实例完全初始化完后,country的构造函数才能把self传给c","creditcard","creditcard(numb","custom","customer(nam","customer和creditcard","customer和creditcard之间的关系与前面弱引用例子中apartment和person的关系截然不同。在这个数据模型中,一个客户可能有或者没有信用卡,但是一张信用卡总是关联着一个客户。为了表示这种关系,customer类有一个可选类型的card属性,但是creditcard类有一个非可选类型的custom","customer和creditcard的例子展示了一个属性的值允许为nil,而另一个属性的值不允许为nil","customer实例持有对creditcard实例的强引用,而creditcard实例持有对custom","customer实例的强引用,该实例被销毁了。其后,再也没有指向creditcard","customer的无主引用,当你断开john变量持有的强引用时,再也没有指向custom","customer类的实例,用它初始化creditcard实例,并将新创建的creditcard实例赋值为客户的card","deinit","deiniti","goe","gt","gt;"","hello","here","htmlelement","htmlelement(nam","htmlelementdeinitializer中的消息并没有别打印,证明了htmlel","htmlelement例子中,无主引用是正确的解决循环强引用的方法。这样这样编写htmlel","htmlelement实现和之前的实现一致,只是在ashtml闭包中多了一个占有列表。这里,占有列表是[unown","htmlelement类产生了类实例和ashtml","htmlelement类只提供一个构造函数,通过name和text(如果有的话)参数来初始化一个元素。该类也定义了一个析构函数,当htmlel","htmlelement类定义了一个name属性来表示这个元素的名称,例如代表段落的"p",或者代表换行的"br"。htmlelement还定义了一个可选属性text,用来设置和展现html","htmlelement还定义了一个lazy属性ashtml。这个属性引用了一个闭包,将name和text组合成html","index","init(nam","init(numb","initi","int","john","john!.apart","john!.card","john变量被设为nil后customer实例和creditcard","john和number73","john和number73,并分别被设定为下面的apartment和person的实例。这两个变量都被初始化为nil","john和number73在被赋值为nil后,person实例和apart","john和number73赋值为nil","john现在有一个指向person实例的强引用,而变量number73有一个指向apart","john的可选类型customer变量,用来保存某个特定客户的引用。由于是可选类型,所以变量被初始化为nil","lazi","list","name","nil","nil时,将闭包内的占有定义为弱引用。弱引用总是可选类型,并且当引用的实例被销毁后,弱引用的值会自动置为nil","nil时,没有任何一个析构函数被调用。强引用循环阻止了person和apart","nil的实例使用弱引用。相反的,对于初始化赋值后再也不会被赋值为nil","nil的方式断开两个强引用(包括最先的那个强引用),只留下一个强引用,person","non-opt","number","number73","number73!.ten","number值和customer实例传递给creditcard构造函数的方式来创建creditcard实例。这样可以确保当创建creditcard实例时总是有一个custom","ottawa","p","p>hello","paragraph","paragraph变量为nil,打破它持有的htmlelement实例的强引用,htmlel","paragraph变量定义为可选htmlelement,因此我们可以赋值nil","person","person(nam","person?的变量,用来按照代码片段中的顺序,为新的person实例建立多个引用。由于这些变量是被定义为可选类型(person?,而不是person),它们的值会被自动初始化为nil,目前还不会引用到person","person和apart","person和apartment实例并将类实例赋值给john和number73","person和apartment的例子一致,但是有一个重要的区别。这一次,apartment的ten","person和apartment的例子展示了两个属性的值都允许为nil","person实例依然保持对apartment实例的强引用,但是apartment实例只是对person实例的弱引用。这意味着当你断开john变量所保持的强引用时,再也没有指向person","person实例有一个类型为string,名字为name的属性,并有一个可选的初始化为nil的apartment属性。apart","person实例现在有了一个指向apartment实例的强引用,而apartment实例也有了一个指向person实例的强引用。因此,当你断开john和number73变量所持有的强引用时,引用计数并不会降为0,实例也不会被arc","person类开始,并定义了一个叫nam","person类有一个构造函数,此构造函数为实例的name属性赋值并打印出信息,以表明初始化过程生效。person","person类的新实例被赋值给了reference1变量,所以reference1到person类的新实例之间建立了一个强引用。正是因为这个强引用,arc会保证person","person类的构造函数的时候,"john","print","println(\"\\(country.name)'","println(\"\\(nam","println(\"apart","println(\"card","println(paragraph!.ashtml","prints\"hello","quot","refer","reference)和无主引用(unown","reference1","reference2","reference3","return","self","self.capitalc","self.countri","self.custom","self.nam","self.name)>\\(text)check","class类型。它创建了一个可以存储ani","cocoa","code","come","common","compound","confid","conform","conformance(arrai","equatable类型都可以安全的使用在findindex函数中,因为其保证支持等式操作。为了说明这个事实,当你定义一个函数时,你可以写一个equat","equatable,也就意味着“任何t类型都遵循equat","equival","error","exampl","exist","extens","extension][6","extension][7","fals","findindex([\"mik","findindex([3.14159","findindex(arrai","findindex中这个单个类型参数写做:t","findindex函数现在则可以成功的编译过,并且作用于任何遵循equatable的类型,如double或str","findindex,用某个类型t","findstringindex","findstringindex(arrai","findstringindex(str","findstringindex的泛型版本findindex。请注意这个函数仍然返回int","findstringindex的非泛型函数,该函数功能是去查找包含一给定string值的数组。若查找到匹配的字符串,findstringindex函数返回该字符串在数组中的索引值(int),反之则返回nil","first","for-in循环和半闭区间操作(..)来迭代somecontainer中的所有items。对于每个item,函数检查是否somecontainer中的item不等于对应的anothercontainer中的item,如果这两个items不等,则这两个容器不匹配,返回fals","for—that","foundindex","fromthetop","func","function","gener","give","goe","guide,即便你没有实现它。例如:swift的array和dictionary类型都是泛型集。你可以创建一个int数组,也可创建一个string数组,或者甚至于可以是任何其他swift的类型数据数组。同样的,你也可以创建存储任何指定类型的字典(dictionari","hashtabl","hello","here","here’","hierarchi","implement","import","in-out参数交换a和b的值,这两个参数被描述为[in-out类型参数][1","index","indic","inform","inout","inspir","int","intstack","intstack指定了container的实现,适用的itemtype被用作int类型。对于这个contain","intstack类型只能用于int值,不过,其对于定义一个泛型stack","intstack类型实现了container协议的所有三个要求,在intstack","intstack类型的非泛型版本,适用于遵循contain","int索引值下标可以检索到每一个item","int这一行,一切仍旧可以工作,因为它清楚的知道itemtyp","int,将抽象的itemtype类型转换为具体的int","item","items.append(item","items.count","items.removelast","items[i","items。这个需求通过一个类型约束和wher","items的属性,使用空的t","itemtyp","itemtype。th","item是如何存储的或何种类型是允许的。这个协议只指定三个任何遵循contain","item的push方法,该参数必须是t","keytyp","languag","last","left","librari","llama","look","made","malcolm","manag","match","method","model","mutat","name","navig","need","nil","note","now","number","option","origin","out","pair","parakeet","paramet","parameters类型参数命名类型参数泛型类型类型约束类型约束语法类型约束行为关联类型关联类型行为扩展一个存在的类型为一指定关联类型wher","part","placehold","pop","popviewcontrolleranim","pop并移除值"cuatro"","pop方法的返回值,该返回值将是一个t","possibl","print","println(\"al","println(\"not","println(\"someint","println(\"th","protocol","provid","provide(这个协议不会定义itemtype是遵循类型所提供的何种信息的别名)。尽管如此,itemtype别名支持一种方法识别在一个容器里的items类型,以及定义一种使用在append方法和下标中的类型,以便保证任何期望的contain","push","push(item","push)/出栈(pop","pushviewcontroller:anim","remov","report","return","same","see","self.push(item","someclass","somecontain","somecontainer.count","somecontainer[i","somecontainer中item","somecontainer中的item","somecontainer和anothercontainer。somecontainer参数是类型c1,anothercontainer参数是类型c2。c1和c2","somecontainer和anothercontainer包含相同的item","somecontainer是一个c1","somefunction(somet","somestr","someu","stack","stack(栈)。一个栈是一系列值域的集合,和array(数组)相似,但其是一个比swift的array类型更多限制的集合。一个数组可以允许其里面任何位置的插入/删除操作,而栈,只允许,只允许在集合的末端添加新的项(如同push一个新值进栈)。同样的一个栈也只能从末端移除项(如同pop","stack(inout","swaptwovalues例子中,节点类型t是一种类型参数的示例。类型参数指定并命名为一个节点类型,并且紧随在函数名后面,并用一对尖括号括起来(如)。这个尖括号告诉swift那个t是swaptwovalues函数所定义的一个节点类型。因为t是一个节点,swift不会去查找每一个命名为t","temporarya","terrapin","three","tre","true","type","type-saf","typealia","t分别代表tnt和string","t定义了一个名为“某种类型t”的节点提供给后来用。这种将来类型可以在结构体的定义里任何地方表示为“t”。在这种情况下,t","t来表示)来代替实际类型名(如int、string或double)。节点类型名并不是表示t必须是任何类型,但是其规定a和b必须是同一类型的t,而不管t表示任何类型。只有swaptwovalues函数在每次调用时所传入的实际类型决定了t","t被用作append方法的item参数和下标的返回类型。swift因此可以推断出被用作这个特定容器的itemtype的t","t,有一个需要t必须是someclass子类的类型约束;第二个类型参数u,有一个需要u必须遵循someprotocol","u","uinavigationcontrol","undefinedundefin","uno","uppercamelcas","us","valu","valuetofind","valuetofind”。不是所有的swift中的类型都可以用等式符(==)进行比较。例如,如果你创建一个你自己的类或结构体来表示一个复杂的数据模型,那么swift没法猜到对于这个类或结构体而言“等于”的意思。正因如此,这部分代码不能可能保证工作于每个可能的类型t","var","variabl","view","whenev","where语句作为一个类型参数队列的一部分。一个where语句使你能够要求一个关联类型遵循一个特定的协议,以及(或)那个特定的类型参数和关联类型可以是相同的。你可写一个where语句,通过紧随放置wher","where语句的一部分,写在关键字wher","world"],"chapter2/23_Advanced_Operators.html#gitbook_167":["0","0.0","00000000","00000001","00000100","00001000","00001111","00001111(前4","00010000","00010001","00111100","01111111","0b00000101","0b00001111","0b00010100","0b00111111","0b01011110","0b10110010","0b11110000","0b11111100","0x000099","0x0000cc","0x0000ff","0x006600","0x00ff00","0x66","0x99","0xcc","0xcc0000","0xcc6699","0xff0000","0~255","1","1.0","100","10000000","102","11110000","11111110","11111111","12","124","127","128","140","15","153","16","1的时候才为1","1的条件是两个输入数的同一位都不为0(即任意一个为1","2","2.0","20","204","240","254","255","3","3.0","32767","32768","4","4.0","4个位都为1","5","5.0","6","6.0","60","66","6699","7","8","8-bit","8.0","99","abov","absolut","accord","achiev","action","actual","ad","add","addit","adopt","advanc","advantag","affect","afterdoubl","afterincr","allow","alreadi","alsoposit","alwai","amp","amp;&","amp;)和按位右移就可以从这个颜色值中解析出红(cc","ampersand","anoth","anothertwothre","anothervector","answer","anyth","appear","appli","approach","arithmet","around","art/bitshiftsigned_2x.png","art/bitshiftsignedaddition_2x.png","art/bitshiftsignedfour_2x.png","art/bitshiftsignedminusfour_2x.png","art/bitshiftsignedminusfourvalue_2x.png","art/bitshiftunsigned_2x.png","art/bitwiseand_2x.png","art/bitwisenot_2x.png","art/bitwiseor_2x.png","art/bitwisexor_2x.png","art/overflowaddition_2x.png","art/overflowsignedsubtraction_2x.png","art/overflowunsignedsubtraction_2x.png","art/vectoraddition_2x.png","assign","associ","associated)—eith","attribut","avail","b","back","base","basic","be","becom","befor","begin","behav","behavior","behind","below","between","beyond","binari","bit","bit-shift","bitwis","blue","bluecompon","bool","both","bound","boundari","byte","c","c-base","calcul","call","care","cascad","caus","cc","cc6699","certain","charact","characterist","check","class","closer","code","color","combin","combinedbit","combinedvector","commun","compar","complement","complet","complex","compon","compound","condit","consid","constant","context","convert","correspond","count","creat","creation","css","css颜色#cc6699在swift用十六进制0xcc6699","custom","c语和objective-c","data","decim","declar","decod","decompos","default","defin","definit","demonstr","depend","describ","determin","devic","diagram","differ","directli","discard","divid","divis","doesn’t","done","don’t","doubl","driver","dure","each","earlier","easi","effect","eight","eight-bit","empti","enabl","encod","end","ensur","enumer","equal","equival","equivalent."","error","essenc","evalu","even","exact","exactli","exampl","except","exclus","exist","expect","explan","express","extend","extern","extra","factor","familiar","fill","final","first","firstbit","firstsixbit","firstvector","fit","five","flexibl","follow","form","found","four","freedom","func","function","give","given","global","grai","graphic","green","greencompon","group","gt","gt;>","guess","halv","handl","happen","here","here’","hexadecim","higher","higher-preced","hold","ignor","illustr","immedi","implement","implicit","import","includ","increment","indic","individu","infix","initi","initialbit","inout","input","insert","insid","instanc","instead","int16","int16.max","int8","int8.min","integ","integersoverflow","integers对无符整型进行移位shift","integer’","intend","interact","invalid","invers","invert","invertedbit","itself","keep","keyword","known","languag","larg","largest","lastsixbit","leav","left","left-associ","left.i","left.x","let","level","limit","list","locat","logic","look","low-level","lower-preced","lt","lt;<","make","manipul","mark","mask","match","maximum","mean","method","middl","middlefourbit","minu","modifi","more","morebit","move","much","multipl","multipli","n","name","need","neg","new","next","non-associ","none","notat","note","now","number","numer","objective-c","obtain","occur","on","onc","oper","operatorsvalu","operators位运算符bitwis","operators按位左移/右移运算符shift","operator’","operator按位与运算符bitwis","operator按位取反运算符bitwis","operator按位异或运算符bitwis","operator按位或运算bitwis","opt","orang","order","origin","other","otherbit","out","output","outputbit","outsid","over","overflow","overflowdivis","overload","oxcc6699","pair","paramet","parameter’","parenthes","part","perform","pink","place","plai","plu","plusminusvector","port","posit","possibl","postfix","potentialoverflow","power","preced","predefin","predict","prefix","principl","print","println("thes","prioriti","process","program","properti","protocol","provid","purpos","push","qualifi","quot;thes","rang","raw","read","receiv","red","redcompon","reimplement","remain","remaind","report","repres","represent","request","result","return","right","right-associ","right.i","right.x","role","round","rule","safeti","same","second","secondvector","see","seem","sens","set","seven","sever","sheet","shift","shiftbit","show","shown","side","sign","signedunderflow","similar","similarli","simpl","simpler","simpli","simplic","singl","size","small","smallest","somebit","sourc","space","special","specif","specifi","standard","start","still","storag","store","straight","strictli","struct","structur","style","subtract","such","sum","support","swift","swift’","swift支持所有c","tailor","take","taken","target","ternari","there’","thing","think","third","those","time","tobedoubl","togeth","toggl","toincrement","trap","treat","trigger","truncat","try","two","two-dimension","twothre","two’","type","type’","uint16","uint32","uint8","uint8.max","uint8.min","unari","undefinedundefin","underflow","unlik","unsign","unusu","up","upward","us","valid","valu","var","variabl","vector","vector.i","vector.x","vector2d","vector2d(1.0","vector2d(x","vectortoadd","veri","versa","version","vice","wai","want","wherea","whether","white","whose","willoverflow","willunderflow","within","without","work","wrap","write","written","x","xor","y","yield","you’r","zero","zeropreced"],"chapter2/chapter2.html#gitbook_168":["swift","undefinedundefin"],"chapter3/06_Attributes.html#gitbook_169":["adopt","appropri","argument","assign","attribut","attribute-argument-claus","attribute-argument-clauseopt","attribute-nam","attributesopt","auto_closur","balanced-token","balanced-tokensopt","bool","builder","builder特性是interfac","builder特性:ibaction,ibdesignable,ibinspectable,以及iboutlet。这些特性与objective-c","builder用来与xcode同步的声明特性。swift提供了以下的interfac","class","class_protocol","conform","data","enabl","exampleclass","export","final","gt","iboutlet和ibinspectable用于修饰一个类的属性声明;ibaction特性用于修饰一个类的方法声明;ibdesign","identifi","inout。如何使用assign","interfac","lazi","name","name(attribut","noreturn","noreturn特性标记的函数或方法,你可以将它重写(override)为用该特性标记的。相反,对于一个已经用noreturn特性标记的函数或方法,你则不可以将它重写为没使用该特性标记的。相同的规则试用于当你在一个comform","nscopi","nscopying特性的行为与objective-c中的copi","nsmanag","nsmanagedobject子类中的存储型变量属性,表明属性的存储和实现由cor","objc","objc(isen","objc特性修饰一个协议,class_protocol特性就会隐式地应用到该协议,因此无需显式地用class_protocol","objc特性应用于一个类或协议,它也会隐式地应用于那个类或协议的成员。对于标记了objc特性的类,编译器会隐式地为它的子类添加objc特性。标记了objc特性的协议不能继承自没有标记objc","objc特性有一个可选的参数,由标记符组成。当你想把objc所修饰的实体以一个不同的名字暴露给objective-c,你就可以使用这个特性参数。你可以使用这个参数来命名类,协议,方法,getters,setters,以及初始化器。下面的例子把exampleclass中enabled属性的getter暴露给objective-c,名字是isen","objective-c中表示的声明,比如,非嵌套类,协议,类和协议中的属性和方法(包含getter和setter),初始化器,析构器,以下下标。objc特性告诉编译器该声明可以在objective-c","option","optional特性修饰那些标记了objc特性的协议。因此,只有类类型可以adopt和comform","requir","return","setter与属性值的一个副本合成,由copywithzone方法返回,而不是属性本身的值。该属性的类型必需遵循nscopi","swift中有两类特性,用于修饰声明的以及用于修饰类型的。例如,required特性,当应用于一个类的指定或便利初始化器声明时,表明它的每个子类都必须实现那个初始化器。再比如noreturn","t","to那些包含可选成员需求的协议。更多关于如何使用optional特性以及如何访问可选协议成员的指导,例如,当你不确定一个conform","type","t,是@noreturn","undefinedundefin","valu","var"],"chapter3/01_About_the_Language_Reference.html#gitbook_171":["block","getter-claus","getter-sett","getter-setter-block","getter-setter方法​​块可以由一个getter子句后跟一个可选的setter子句构成,用大括号括起来,或者由一个setter子句后跟一个gett","grammar","opt","setter-claus","setter-clause­opt","swift","swift语言相对小点,这是由于在swift代码中几乎无处不在的许多常见的的类型,函数以及运算符都由swift标准库来定义。虽然这些类型,函数和运算符不是swift","undefinedundefin"],"chapter3/03_Types.html#gitbook_173":["0","0——编译器会正确的推断出x的类型int。类似的,当完整的类型可以从上下文推断出来时,你也可以忽略类型的一部分。比如,如果你写了let","0中x的类型首先根据0的类型进行推断,然后将该类型信息传递到根节点(变量x","0,你可以完全忽略类型而简写成var","1","1],编译提也能推断出dict的类型是dictionary<str","2","2.71828","3","3.14159","4","42","4]],array3d[0][1]是指[3","4],array3d[0][1][1]则是指值4","5","6","7","8","9","addthesecondnumb","addthesecondnumber(b","addtwonumbers(4)(5","addtwonumbers(a","alex","annot","arrai","array-typ","array3d","array3d[0]是指[[1","array$0、$1$2`。例如,class`class`。反引号不属于标识符的一部分,`x`(x","comparable等同于t","comparable表示任何用于替代类型形参t的类型实参必须满足compar","comparable,等等),但是依然可以用来对类型形参及其关联约束提供更复杂的约束。如,<t","conformance-requir","constrain","dictionary泛型实参语句泛型形参语句泛型形参语句where语句":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.05486968449931413}}}}}},"s":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"表":{"docs":{},"示":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"t":{"docs":{},"继":{"docs":{},"承":{"docs":{},"自":{"docs":{},"类":{"docs":{},"c":{"docs":{},"且":{"docs":{},"遵":{"docs":{},"守":{"docs":{},"协":{"docs":{},"议":{"docs":{},"p":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}},"q":{"docs":{},"群":{"docs":{},":":{"3":{"6":{"4":{"2":{"7":{"9":{"5":{"8":{"8":{"docs":{"index.html#gitbook_104":{"ref":"index.html#gitbook_104","tf":0.06666666666666667}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}},"u":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.016260162601626018}}}},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}}}}}},"r":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0044742729306487695},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.008928571428571428},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0027434842249657062}},";":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036}}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}},";":{"docs":{},")":{"docs":{},",":{"docs":{},"u":{"docs":{},"+":{"1":{"docs":{},"f":{"4":{"2":{"5":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}}},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036}}}}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}},"海":{"docs":{},"贼":{"docs":{},"王":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}},"":{"docs":{},"":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}},"?":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"k":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"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":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{},",":{"docs":{},"和":{"docs":{},"一":{"docs":{},"个":{"docs":{},"包":{"docs":{},"含":{"docs":{},"给":{"docs":{},"这":{"docs":{},"个":{"docs":{},"人":{"docs":{},"问":{"docs":{},"候":{"docs":{},"语":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"大":{"docs":{},"于":{"docs":{},"字":{"docs":{},"母":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},",":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"大":{"docs":{},"于":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"y":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"将":{"docs":{},"会":{"docs":{},"排":{"docs":{},"在":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"x":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}},"大":{"docs":{},"于":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}},"按":{"docs":{},"照":{"docs":{},"字":{"docs":{},"母":{"docs":{},"顺":{"docs":{},"序":{"docs":{},"较":{"docs":{},"晚":{"docs":{},"出":{"docs":{},"现":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}},"短":{"docs":{},"路":{"docs":{},"计":{"docs":{},"算":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0044742729306487695}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"i":{"docs":{},"n":{"docs":{},"-":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}},"二":{"docs":{},"元":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}},"右":{"docs":{},"边":{"docs":{},"参":{"docs":{},"数":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}},"后":{"docs":{},"缀":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"的":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"子":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"中":{"docs":{},"包":{"docs":{},"含":{"docs":{},"了":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"可":{"docs":{},"选":{"docs":{},"链":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},",":{"docs":{},"那":{"docs":{},"么":{"docs":{},"只":{"docs":{},"有":{"docs":{},"最":{"docs":{},"外":{"docs":{},"层":{"docs":{},"的":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"返":{"docs":{},"回":{"docs":{},"的":{"docs":{},"才":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"左":{"docs":{},"边":{"docs":{},"参":{"docs":{},"数":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}},"、":{"docs":{},"\\":{"docs":{},"­":{"docs":{},"、":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"0":{"docs":{},"a":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}},"docs":{}},"docs":{}},"docs":{}}}}}},"未":{"docs":{},"转":{"docs":{},"义":{"docs":{},"的":{"docs":{},"反":{"docs":{},"斜":{"docs":{},"线":{"docs":{},"\\":{"docs":{},"、":{"docs":{},"回":{"docs":{},"车":{"docs":{},"符":{"docs":{},"(":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}}},"e":{"docs":{},"d":{"docs":{},"-":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.006696428571428571},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}},"-":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.008928571428571428},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0027434842249657062}}}}}}}}}}}}},")":{"docs":{},"\\":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}},"docs":{}},"docs":{}},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}}}}}}},"r":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.013651877133105802}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"g":{"docs":{},"h":{"docs":{},"i":{"docs":{},"j":{"docs":{},"k":{"docs":{},"l":{"docs":{},"m":{"docs":{},"n":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"index.html#gitbook_104":{"ref":"index.html#gitbook_104","tf":0.06666666666666667},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"i":{"docs":{},"r":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.023255813953488372},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}},"­":{"docs":{},",":{"docs":{},"­":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/01_swift.html#gitbook_105":{"ref":"chapter1/01_swift.html#gitbook_105","tf":0.023809523809523808},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.005625879043600563},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"1":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.012121212121212121}}},"2":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.006060606060606061}}},"3":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00808080808080808}}},"docs":{},")":{"docs":{},"和":{"docs":{},"无":{"docs":{},"主":{"docs":{},"引":{"docs":{},"用":{"docs":{},"(":{"docs":{},"u":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}}}},"t":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848}},"导":{"docs":{},"演":{"docs":{},"的":{"docs":{},"电":{"docs":{},"影":{"docs":{},"“":{"docs":{},"g":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"b":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}},"<":{"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}},"e":{"docs":{},":":{"0":{"docs":{},".":{"0":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}},"docs":{}}},"docs":{}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.005747126436781609}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.005639097744360902},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.260169654906497},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.005875440658049354},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.004219409282700422},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002306805074971165},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}},"u":{"docs":{},"n":{"docs":{},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013}}}}}},"e":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}},"将":{"docs":{},"计":{"docs":{},"数":{"docs":{},"器":{"docs":{},"重":{"docs":{},"置":{"docs":{},"为":{"0":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}},"docs":{}}}}}}}}},"r":{"docs":{},"v":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}},"i":{"docs":{},"d":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.04304635761589404}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"中":{"docs":{},"也":{"docs":{},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}},"具":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"s":{"docs":{},",":{"docs":{},"其":{"docs":{},"值":{"docs":{},"为":{"1":{"docs":{},"。":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"具":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"它":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}},"存":{"docs":{},"储":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"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":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"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":{},"。":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"s":{"docs":{},"属":{"docs":{},"性":{"docs":{},"值":{"docs":{},"是":{"docs":{},"由":{"docs":{},"返":{"docs":{},"回":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"s":{"docs":{},"数":{"docs":{},"组":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"属":{"docs":{},"性":{"docs":{},"叫":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"(":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"?":{"docs":{},")":{"docs":{},"。":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},"给":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{},"且":{"docs":{},"在":{"docs":{},"他":{"docs":{},"的":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"s":{"docs":{},"数":{"docs":{},"组":{"docs":{},"中":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"或":{"docs":{},"多":{"docs":{},"个":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"那":{"docs":{},"么":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"可":{"docs":{},"选":{"docs":{},"链":{"docs":{},"通":{"docs":{},"过":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"子":{"docs":{},"脚":{"docs":{},"本":{"docs":{},"来":{"docs":{},"获":{"docs":{},"取":{"docs":{},"在":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"属":{"docs":{},"性":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"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":{},"解":{"docs":{},"析":{"docs":{},"的":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"s":{"docs":{},"方":{"docs":{},"法":{"docs":{},"会":{"docs":{},"打":{"docs":{},"印":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"中":{"docs":{},"定":{"docs":{},"义":{"docs":{},"的":{"docs":{},"子":{"docs":{},"脚":{"docs":{},"本":{"docs":{},"来":{"docs":{},"获":{"docs":{},"取":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"数":{"docs":{},"组":{"docs":{},"中":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"房":{"docs":{},"间":{"docs":{},"的":{"docs":{},"名":{"docs":{},"字":{"docs":{},"。":{"docs":{},"因":{"docs":{},"为":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"现":{"docs":{},"在":{"docs":{},"是":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.03525264394829612},"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.016597510373443983},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.9794589997710398},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.4712994626282364},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.011278195488721804},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.010282776349614395},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.02197802197802198},"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.005917159763313609},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00808080808080808},"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.019867549668874173},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0047430830039525695},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.032520325203252036},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.040229885057471264},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.013784461152882205},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.026905829596412557},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0057670126874279125},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.017543859649122806},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.004020100502512563},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.015503875968992248},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":1.1282051282051282}},"f":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}},")":{"docs":{},"\\":{"docs":{},"r":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}},"或":{"docs":{},"换":{"docs":{},"行":{"docs":{},"符":{"docs":{},"(":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}}}},"(":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"0":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}},"docs":{}},"docs":{}},"docs":{}}}}},"-":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.005698005698005698}}}}}}},"时":{"docs":{},",":{"docs":{},"仅":{"docs":{},"仅":{"docs":{},"是":{"docs":{},"将":{"docs":{},"控":{"docs":{},"制":{"docs":{},"权":{"docs":{},"从":{"docs":{},"该":{"docs":{},"函":{"docs":{},"数":{"docs":{},"或":{"docs":{},"方":{"docs":{},"法":{"docs":{},"传":{"docs":{},"递":{"docs":{},"给":{"docs":{},"调":{"docs":{},"用":{"docs":{},"者":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"docs":{},"。":{"docs":{},"(":{"docs":{},"这":{"docs":{},"就":{"docs":{},"是":{"docs":{},"说":{"docs":{},",":{"docs":{},"该":{"docs":{},"函":{"docs":{},"数":{"docs":{},"或":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"返":{"docs":{},"回":{"docs":{},"类":{"docs":{},"型":{"docs":{},"为":{"docs":{},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"语":{"docs":{},"句":{"docs":{},"后":{"docs":{},"面":{"docs":{},"带":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"时":{"docs":{},",":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"的":{"docs":{},"值":{"docs":{},"将":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"docs":{},"给":{"docs":{},"调":{"docs":{},"用":{"docs":{},"者":{"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":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"时":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"只":{"docs":{},"写":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"这":{"docs":{},"个":{"docs":{},"关":{"docs":{},"键":{"docs":{},"词":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.03642384105960265}}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.004454342984409799},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.004454342984409799}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"方":{"docs":{},"法":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"方":{"docs":{},"法":{"docs":{},"来":{"docs":{},"避":{"docs":{},"免":{"docs":{},"我":{"docs":{},"们":{"docs":{},"需":{"docs":{},"要":{"docs":{},"获":{"docs":{},"取":{"docs":{},"数":{"docs":{},"组":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"方":{"docs":{},"法":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"来":{"docs":{},"在":{"docs":{},"字":{"docs":{},"典":{"docs":{},"中":{"docs":{},"移":{"docs":{},"除":{"docs":{},"键":{"docs":{},"值":{"docs":{},"对":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"在":{"docs":{},"键":{"docs":{},"值":{"docs":{},"对":{"docs":{},"存":{"docs":{},"在":{"docs":{},"的":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},"会":{"docs":{},"移":{"docs":{},"除":{"docs":{},"该":{"docs":{},"键":{"docs":{},"值":{"docs":{},"对":{"docs":{},"并":{"docs":{},"且":{"docs":{},"返":{"docs":{},"回":{"docs":{},"被":{"docs":{},"移":{"docs":{},"除":{"docs":{},"的":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"或":{"docs":{},"者":{"docs":{},"在":{"docs":{},"没":{"docs":{},"有":{"docs":{},"值":{"docs":{},"的":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},"返":{"docs":{},"回":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002306805074971165},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192}}}}},"d":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.025280898876404494}}}}}},"c":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.005639097744360902},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.011494252873563218}},"(":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}},"也":{"docs":{},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"矩":{"docs":{},"形":{"docs":{},"的":{"docs":{},"中":{"docs":{},"心":{"docs":{},"点":{"docs":{},"可":{"docs":{},"以":{"docs":{},"从":{"docs":{},"原":{"docs":{},"点":{"docs":{},"和":{"docs":{},"尺":{"docs":{},"寸":{"docs":{},"来":{"docs":{},"算":{"docs":{},"出":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"将":{"docs":{},"它":{"docs":{},"以":{"docs":{},"显":{"docs":{},"式":{"docs":{},"声":{"docs":{},"明":{"docs":{},"的":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"来":{"docs":{},"保":{"docs":{},"存":{"docs":{},"。":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"的":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"的":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"和":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"例":{"docs":{},"子":{"docs":{},"同":{"docs":{},"时":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"两":{"docs":{},"个":{"docs":{},"辅":{"docs":{},"助":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"和":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"它":{"docs":{},"们":{"docs":{},"都":{"docs":{},"把":{"0":{"docs":{},".":{"0":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"其":{"docs":{},"所":{"docs":{},"有":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"默":{"docs":{},"认":{"docs":{},"值":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"正":{"docs":{},"如":{"docs":{},"默":{"docs":{},"认":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"中":{"docs":{},"描":{"docs":{},"述":{"docs":{},"的":{"docs":{},",":{"docs":{},"它":{"docs":{},"可":{"docs":{},"以":{"docs":{},"自":{"docs":{},"动":{"docs":{},"接":{"docs":{},"受":{"docs":{},"一":{"docs":{},"个":{"docs":{},"默":{"docs":{},"认":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"和":{"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":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.005917159763313609}}}}}}},"方":{"docs":{},"法":{"docs":{},"只":{"docs":{},"是":{"docs":{},"将":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"的":{"docs":{},"硬":{"docs":{},"币":{"docs":{},"存":{"docs":{},"储":{"docs":{},"和":{"docs":{},"接":{"docs":{},"收":{"docs":{},"到":{"docs":{},"的":{"docs":{},"硬":{"docs":{},"币":{"docs":{},"数":{"docs":{},"目":{"docs":{},"相":{"docs":{},"加":{"docs":{},",":{"docs":{},"再":{"docs":{},"保":{"docs":{},"存":{"docs":{},"回":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.005917159763313609}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.04878048780487805}},".":{"docs":{},"a":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"(":{"3":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}},"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}}}}}},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}}}}}}}}}}}}}}},"和":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"在":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"中":{"docs":{},",":{"docs":{},"但":{"docs":{},"仍":{"docs":{},"可":{"docs":{},"被":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"在":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"实":{"docs":{},"例":{"docs":{},"时":{"docs":{},"能":{"docs":{},"够":{"docs":{},"通":{"docs":{},"过":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"类":{"docs":{},"型":{"docs":{},"中":{"docs":{},"的":{"docs":{},"成":{"docs":{},"员":{"docs":{},"名":{"docs":{},"称":{"docs":{},"单":{"docs":{},"独":{"docs":{},"引":{"docs":{},"用":{"docs":{},"。":{"docs":{},"在":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"属":{"docs":{},"性":{"docs":{},"能":{"docs":{},"正":{"docs":{},"确":{"docs":{},"得":{"docs":{},"输":{"docs":{},"出":{"docs":{},"对":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"牌":{"docs":{},"有":{"1":{"docs":{},"和":{"1":{"1":{"docs":{"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"在":{"docs":{},"自":{"docs":{},"己":{"docs":{},"内":{"docs":{},"部":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"包":{"docs":{},"含":{"docs":{},"两":{"docs":{},"个":{"docs":{},"变":{"docs":{},"量":{"docs":{},",":{"docs":{},"只":{"docs":{},"有":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"有":{"docs":{},"两":{"docs":{},"个":{"docs":{},"数":{"docs":{},"值":{"docs":{},",":{"docs":{},"其":{"docs":{},"余":{"docs":{},"牌":{"docs":{},"都":{"docs":{},"只":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"数":{"docs":{},"值":{"docs":{},"。":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"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":{},"始":{"docs":{},"化":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"并":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"给":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"。":{"docs":{},"对":{"docs":{},"于":{"docs":{},"j":{"docs":{},",":{"docs":{},"q":{"docs":{},",":{"docs":{},"k":{"docs":{},",":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"会":{"docs":{},"使":{"docs":{},"用":{"docs":{},"特":{"docs":{},"殊":{"docs":{},"数":{"docs":{},"值":{"docs":{},",":{"docs":{},"对":{"docs":{},"于":{"docs":{},"数":{"docs":{},"字":{"docs":{},"面":{"docs":{},"值":{"docs":{},"的":{"docs":{},"牌":{"docs":{},"使":{"docs":{},"用":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"来":{"docs":{},"描":{"docs":{},"述":{"docs":{},"扑":{"docs":{},"克":{"docs":{},"牌":{"docs":{},"从":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"~":{"1":{"0":{"docs":{},",":{"docs":{},"j":{"docs":{},",":{"docs":{},"q":{"docs":{},",":{"docs":{},"k":{"docs":{},",":{"1":{"3":{"docs":{},"张":{"docs":{},"牌":{"docs":{},",":{"docs":{},"并":{"docs":{},"分":{"docs":{},"别":{"docs":{},"用":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},"表":{"docs":{},"示":{"docs":{},"牌":{"docs":{},"的":{"docs":{},"面":{"docs":{},"值":{"docs":{},"。":{"docs":{},"(":{"docs":{},"这":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},"不":{"docs":{},"适":{"docs":{},"用":{"docs":{},"于":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{},"j":{"docs":{},",":{"docs":{},"q":{"docs":{},",":{"docs":{},"k":{"docs":{"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}},"g":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.005639097744360902},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.01098901098901099},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.003015075376884422}},"e":{"docs":{},")":{"docs":{},",":{"docs":{},"队":{"docs":{},"列":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{},"集":{"docs":{},"合":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},",":{"docs":{},"系":{"docs":{},"列":{"docs":{},"(":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"匹":{"docs":{},"配":{"docs":{},",":{"docs":{},"元":{"docs":{},"组":{"docs":{},"(":{"docs":{},"t":{"docs":{},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},"和":{"docs":{},"特":{"docs":{},"定":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"描":{"docs":{},"述":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}},"声":{"docs":{},"明":{"docs":{},"成":{"docs":{},"了":{"docs":{},"常":{"docs":{},"量":{"docs":{},"(":{"docs":{},"用":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},")":{"docs":{},",":{"docs":{},"即":{"docs":{},"使":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.011278195488721804}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.005012531328320802}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"要":{"docs":{},"求":{"docs":{},"其":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"者":{"docs":{},"必":{"docs":{},"须":{"docs":{},"拥":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.006825938566552901},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}},"-":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"-":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"-":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"-":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.003429355281207133}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"u":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.005012531328320802}}}}}},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}}}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006},"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0728476821192053}},"(":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.013245033112582781}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.006622516556291391}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.023178807947019868}}}}}}},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}},"[":{"docs":{},"i":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}},"数":{"docs":{},"组":{"docs":{},"的":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"类":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"很":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"类":{"docs":{},",":{"docs":{},"它":{"docs":{},"只":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},"和":{"docs":{},"一":{"docs":{},"个":{"docs":{},"设":{"docs":{},"定":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}},",":{"docs":{},"它":{"docs":{},"被":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.004604051565377533},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.013784461152882205}},"方":{"docs":{},"法":{"docs":{},"用":{"docs":{},"来":{"docs":{},"模":{"docs":{},"拟":{"docs":{},"骰":{"docs":{},"子":{"docs":{},"的":{"docs":{},"面":{"docs":{},"值":{"docs":{},".":{"docs":{},"它":{"docs":{},"先":{"docs":{},"使":{"docs":{},"用":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"的":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},"方":{"docs":{},"法":{"docs":{},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"[":{"0":{"docs":{},"-":{"1":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}},"w":{"0":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}},"1":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}},"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.04945054945054945}},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"下":{"docs":{},"标":{"docs":{},"的":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}}}}},"的":{"docs":{},"数":{"docs":{},"量":{"docs":{},"来":{"docs":{},"构":{"docs":{},"造":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.020134228187919462}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"内":{"docs":{},"存":{"docs":{},"管":{"docs":{},"理":{"docs":{},"操":{"docs":{},"作":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"不":{"docs":{},"再":{"docs":{},"被":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.014044943820224719}},"a":{"docs":{},"l":{"docs":{},"增":{"docs":{},"加":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"捕":{"docs":{},"获":{"docs":{},"了":{"docs":{},"当":{"docs":{},"前":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"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":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"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":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"函":{"docs":{},"数":{"docs":{},"时":{"docs":{},",":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.004020100502512563}}}}}},"l":{"docs":{},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0019223375624759708}}}}},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.005141388174807198},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.48964683912780793},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}},".":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}},".":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}},"x":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}}}}}},"c":{"docs":{},"k":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}}},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848}}}}}}}},"s":{"1":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.008438818565400843},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.033707865168539325}}},"2":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.011251758087201125},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.033707865168539325}},")":{"docs":{},",":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"s":{"docs":{},"函":{"docs":{},"数":{"docs":{},"返":{"docs":{},"回":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"在":{"docs":{},"新":{"docs":{},"的":{"docs":{},"数":{"docs":{},"组":{"docs":{},"中":{"docs":{},"s":{"1":{"docs":{},"应":{"docs":{},"该":{"docs":{},"出":{"docs":{},"现":{"docs":{},"在":{"docs":{},"s":{"2":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}},"docs":{}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.004020100502512563}},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"index.html#gitbook_104":{"ref":"index.html#gitbook_104","tf":10.4},"chapter1/01_swift.html#gitbook_105":{"ref":"chapter1/01_swift.html#gitbook_105","tf":10.404761904761905},"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":10.00587544065805},"chapter1/chapter1.html#gitbook_109":{"ref":"chapter1/chapter1.html#gitbook_109","tf":10.75},"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.008298755186721992},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.06451612903225806},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.02631578947368421},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.04899777282850779},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.008287292817679558},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.008438818565400843},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.033707865168539325},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.020477815699658702},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.005639097744360902},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.03131991051454139},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.008458285274894272},"chapter2/chapter2.html#gitbook_168":{"ref":"chapter2/chapter2.html#gitbook_168","tf":10.666666666666666},"chapter3/01_About_the_Language_Reference.html#gitbook_171":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_171","tf":0.08333333333333333},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.006030150753768844},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.011160714285714286},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.015503875968992248},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.019943019943019943}},"中":{"docs":{},",":{"docs":{},"类":{"docs":{},"可":{"docs":{},"以":{"docs":{},"调":{"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":{},"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"型":{"docs":{},"信":{"docs":{},"息":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"反":{"docs":{},"方":{"docs":{},"向":{"docs":{},"流":{"docs":{},"动":{"docs":{},"—":{"docs":{},"—":{"docs":{},"从":{"docs":{},"根":{"docs":{},"节":{"docs":{},"点":{"docs":{},"传":{"docs":{},"向":{"docs":{},"叶":{"docs":{},"子":{"docs":{},"节":{"docs":{},"点":{"docs":{},"。":{"docs":{},"在":{"docs":{},"下":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"常":{"docs":{},"量":{"docs":{},"e":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"上":{"docs":{},"的":{"docs":{},"显":{"docs":{},"式":{"docs":{},"类":{"docs":{},"型":{"docs":{},"标":{"docs":{},"注":{"docs":{},"(":{"docs":{},":":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},")":{"docs":{},"导":{"docs":{},"致":{"docs":{},"数":{"docs":{},"字":{"docs":{},"字":{"docs":{},"面":{"docs":{},"量":{"2":{"docs":{},".":{"7":{"1":{"8":{"2":{"8":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"而":{"docs":{},"非":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"模":{"docs":{},"式":{"docs":{},"出":{"docs":{},"现":{"docs":{},"在":{"docs":{},"变":{"docs":{},"量":{"docs":{},"和":{"docs":{},"常":{"docs":{},"量":{"docs":{},"的":{"docs":{},"声":{"docs":{},"明":{"docs":{},"(":{"docs":{},"在":{"docs":{},"它":{"docs":{},"们":{"docs":{},"的":{"docs":{},"左":{"docs":{},"侧":{"docs":{},")":{"docs":{},",":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{},"语":{"docs":{},"句":{"docs":{},"和":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"语":{"docs":{},"句":{"docs":{},"(":{"docs":{},"在":{"docs":{},"他":{"docs":{},"们":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"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":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"标":{"docs":{},"签":{"docs":{},"中":{"docs":{},",":{"docs":{},"但":{"docs":{},"在":{"docs":{},"其":{"docs":{},"他":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},",":{"docs":{},"只":{"docs":{},"有":{"docs":{},"通":{"docs":{},"配":{"docs":{},"符":{"docs":{},"模":{"docs":{},"式":{"docs":{},"(":{"docs":{},"w":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"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":{},"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":{},"。":{"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":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"定":{"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":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}},"的":{"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":{},"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":{},"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":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},",":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},",":{"docs":{},"b":{"docs":{},"y":{"docs":{},"等":{"docs":{},"等":{"docs":{},"。":{"docs":{},"前":{"docs":{},"面":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"类":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"方":{"docs":{},"法":{"docs":{},"就":{"docs":{},"是":{"docs":{},"这":{"docs":{},"样":{"docs":{},"的":{"docs":{},"。":{"docs":{},"介":{"docs":{},"词":{"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":{},"让":{"docs":{},"书":{"docs":{},"写":{"docs":{},"代":{"docs":{},"码":{"docs":{},"更":{"docs":{},"容":{"docs":{},"易":{"docs":{},"了":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"的":{"docs":{},"下":{"docs":{},"标":{"docs":{},"实":{"docs":{},"现":{"docs":{},"中":{"docs":{},",":{"docs":{},"在":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"部":{"docs":{},"分":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"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":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},";":{"docs":{},"同":{"docs":{},"样":{"docs":{},"想":{"docs":{},"要":{"docs":{},"从":{"docs":{},"字":{"docs":{},"典":{"docs":{},"实":{"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":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"使":{"docs":{},"用":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}},"有":{"docs":{},"两":{"docs":{},"类":{"docs":{},"特":{"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":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"特":{"docs":{},"性":{"docs":{},",":{"docs":{},"当":{"docs":{},"应":{"docs":{},"用":{"docs":{},"于":{"docs":{},"一":{"docs":{},"个":{"docs":{},"类":{"docs":{},"的":{"docs":{},"指":{"docs":{},"定":{"docs":{},"或":{"docs":{},"便":{"docs":{},"利":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"器":{"docs":{},"声":{"docs":{},"明":{"docs":{},"时":{"docs":{},",":{"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":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"推":{"docs":{},"断":{"docs":{},"出":{"docs":{},"这":{"docs":{},"个":{"docs":{},"常":{"docs":{},"量":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"详":{"docs":{},"情":{"docs":{},"参":{"docs":{},"见":{"docs":{},"类":{"docs":{},"型":{"docs":{},"安":{"docs":{},"全":{"docs":{},"和":{"docs":{},"类":{"docs":{},"型":{"docs":{},"推":{"docs":{},"断":{"docs":{},"(":{"docs":{},"待":{"docs":{},"添":{"docs":{},"加":{"docs":{},"链":{"docs":{},"接":{"docs":{},")":{"docs":{},"。":{"docs":{},"在":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"没":{"docs":{},"有":{"docs":{},"给":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"插":{"docs":{},"值":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"类":{"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":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"和":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"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":{},"i":{"docs":{},"f":{"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":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"一":{"docs":{},"种":{"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":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"两":{"docs":{},"种":{"docs":{},"办":{"docs":{},"法":{"docs":{},"用":{"docs":{},"来":{"docs":{},"解":{"docs":{},"决":{"docs":{},"你":{"docs":{},"在":{"docs":{},"使":{"docs":{},"用":{"docs":{},"类":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"时":{"docs":{},"所":{"docs":{},"遇":{"docs":{},"到":{"docs":{},"的":{"docs":{},"循":{"docs":{},"环":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"问":{"docs":{},"题":{"docs":{},":":{"docs":{},"弱":{"docs":{},"引":{"docs":{},"用":{"docs":{},"(":{"docs":{},"w":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"语":{"docs":{},"言":{"docs":{},"中":{"docs":{},"的":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"不":{"docs":{},"会":{"docs":{},"从":{"docs":{},"上":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"分":{"docs":{},"支":{"docs":{},"落":{"docs":{},"入":{"docs":{},"到":{"docs":{},"下":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"分":{"docs":{},"支":{"docs":{},"中":{"docs":{},"。":{"docs":{},"相":{"docs":{},"反":{"docs":{},",":{"docs":{},"只":{"docs":{},"要":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"到":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"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":{},"相":{"docs":{},"比":{"docs":{},"之":{"docs":{},"下":{"docs":{},",":{"docs":{},"c":{"docs":{},"语":{"docs":{},"言":{"docs":{},"要":{"docs":{},"求":{"docs":{},"你":{"docs":{},"显":{"docs":{},"示":{"docs":{},"的":{"docs":{},"插":{"docs":{},"入":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"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":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"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":{},"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"代":{"docs":{},"码":{"docs":{},"块":{"docs":{},"两":{"docs":{},"者":{"docs":{},"都":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"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":{},"语":{"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":{},"显":{"docs":{},"示":{"docs":{},"指":{"docs":{},"明":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"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":{},"你":{"docs":{},"的":{"docs":{},"意":{"docs":{},"图":{"docs":{},"更":{"docs":{},"明":{"docs":{},"显":{"docs":{},",":{"docs":{},"需":{"docs":{},"要":{"docs":{},"特":{"docs":{},"意":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"或":{"docs":{},"者":{"docs":{},"忽":{"docs":{},"略":{"docs":{},"某":{"docs":{},"个":{"docs":{},"分":{"docs":{},"支":{"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":{},"语":{"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":{},"语":{"docs":{},"句":{"docs":{},"立":{"docs":{},"即":{"docs":{},"结":{"docs":{},"束":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"相":{"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":{},"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_171":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_171","tf":0.041666666666666664}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"使":{"docs":{},"用":{"docs":{},"类":{"docs":{},"型":{"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":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"存":{"docs":{},"在":{"docs":{},"两":{"docs":{},"种":{"docs":{},"类":{"docs":{},"型":{"docs":{},":":{"docs":{},"命":{"docs":{},"名":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"和":{"docs":{},"复":{"docs":{},"合":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"命":{"docs":{},"名":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"指":{"docs":{},"定":{"docs":{},"义":{"docs":{},"时":{"docs":{},"可":{"docs":{},"以":{"docs":{},"给":{"docs":{},"定":{"docs":{},"名":{"docs":{},"字":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"命":{"docs":{},"名":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"包":{"docs":{},"括":{"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":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"拥":{"docs":{},"有":{"docs":{},"类":{"docs":{},"型":{"docs":{},"m":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"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":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"后":{"docs":{},"缀":{"docs":{},"!":{"docs":{},"作":{"docs":{},"为":{"docs":{},"标":{"docs":{},"准":{"docs":{},"库":{"docs":{},"中":{"docs":{},"命":{"docs":{},"名":{"docs":{},"类":{"docs":{},"型":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"y":{"docs":{},"u":{"docs":{},"n":{"docs":{},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"本":{"docs":{},"身":{"docs":{},"定":{"docs":{},"义":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"并":{"docs":{},"描":{"docs":{},"述":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}},"统":{"docs":{},"一":{"docs":{},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},"语":{"docs":{},"法":{"docs":{},"足":{"docs":{},"够":{"docs":{},"灵":{"docs":{},"活":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"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":{},"风":{"docs":{},"格":{"docs":{},"函":{"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":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"自":{"docs":{},"动":{"docs":{},"为":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}},"默":{"docs":{},"认":{"docs":{},"仅":{"docs":{},"给":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"称":{"docs":{},"一":{"docs":{},"个":{"docs":{},"局":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"称":{"docs":{},";":{"docs":{},"但":{"docs":{},"是":{"docs":{},"默":{"docs":{},"认":{"docs":{},"同":{"docs":{},"时":{"docs":{},"给":{"docs":{},"第":{"docs":{},"二":{"docs":{},"个":{"docs":{},"和":{"docs":{},"后":{"docs":{},"续":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"称":{"docs":{},"局":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"称":{"docs":{},"和":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"称":{"docs":{},"。":{"docs":{},"这":{"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":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"字":{"docs":{},"典":{"docs":{},"(":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}}}}}}}}},"自":{"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"检":{"docs":{},"测":{"docs":{},"器":{"docs":{},"能":{"docs":{},"够":{"docs":{},"演":{"docs":{},"绎":{"docs":{},"出":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"添":{"docs":{},"加":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"名":{"docs":{},"为":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}},"内":{"docs":{},"建":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"添":{"docs":{},"加":{"docs":{},"了":{"5":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}},"docs":{}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"已":{"docs":{},"经":{"docs":{},"提":{"docs":{},"供":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"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":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"要":{"docs":{},"求":{"docs":{},"。":{"docs":{},"也":{"docs":{},"就":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"去":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"只":{"docs":{},"要":{"docs":{},"通":{"docs":{},"过":{"docs":{},"简":{"docs":{},"单":{"docs":{},"声":{"docs":{},"明":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"适":{"docs":{},"用":{"docs":{},"于":{"docs":{},"该":{"docs":{},"协":{"docs":{},"议":{"docs":{},"而":{"docs":{},"已":{"docs":{},"。":{"docs":{},"如":{"docs":{},"何":{"docs":{},"实":{"docs":{},"践":{"docs":{},"这":{"docs":{},"样":{"docs":{},"一":{"docs":{},"个":{"docs":{},"空":{"docs":{},"扩":{"docs":{},"展":{"docs":{},",":{"docs":{},"在":{"docs":{},"[":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"类":{"docs":{},"型":{"docs":{},"对":{"docs":{},"作":{"docs":{},"用":{"docs":{},"于":{"docs":{},"其":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"s":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"做":{"docs":{},"了":{"docs":{},"些":{"docs":{},"限":{"docs":{},"制":{"docs":{},"。":{"docs":{},"在":{"docs":{},"[":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"]":{"docs":{},"[":{"5":{"docs":{},"]":{"docs":{},"的":{"docs":{},"描":{"docs":{},"述":{"docs":{},"中":{"docs":{},",":{"docs":{},"字":{"docs":{},"典":{"docs":{},"的":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"s":{"docs":{},"类":{"docs":{},"型":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"b":{"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":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"之":{"docs":{},"所":{"docs":{},"以":{"docs":{},"需":{"docs":{},"要":{"docs":{},"其":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"s":{"docs":{},"是":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"是":{"docs":{},"为":{"docs":{},"了":{"docs":{},"以":{"docs":{},"便":{"docs":{},"于":{"docs":{},"其":{"docs":{},"检":{"docs":{},"查":{"docs":{},"其":{"docs":{},"是":{"docs":{},"否":{"docs":{},"包":{"docs":{},"含":{"docs":{},"某":{"docs":{},"个":{"docs":{},"特":{"docs":{},"定":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"如":{"docs":{},"无":{"docs":{},"此":{"docs":{},"需":{"docs":{},"求":{"docs":{},",":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"即":{"docs":{},"不":{"docs":{},"会":{"docs":{},"告":{"docs":{},"诉":{"docs":{},"是":{"docs":{},"否":{"docs":{},"插":{"docs":{},"入":{"docs":{},"或":{"docs":{},"者":{"docs":{},"替":{"docs":{},"换":{"docs":{},"了":{"docs":{},"某":{"docs":{},"个":{"docs":{},"特":{"docs":{},"定":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"也":{"docs":{},"不":{"docs":{},"能":{"docs":{},"查":{"docs":{},"找":{"docs":{},"到":{"docs":{},"已":{"docs":{},"经":{"docs":{},"存":{"docs":{},"储":{"docs":{},"在":{"docs":{},"字":{"docs":{},"典":{"docs":{},"里":{"docs":{},"面":{"docs":{},"的":{"docs":{},"给":{"docs":{},"定":{"docs":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"也":{"docs":{},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"方":{"docs":{},"便":{"docs":{},"对":{"docs":{},"变":{"docs":{},"量":{"docs":{},"本":{"docs":{},"身":{"docs":{},"加":{"1":{"docs":{},"或":{"docs":{},"减":{"1":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}},"docs":{}}}},"docs":{}}}}}}}}}}}}},"支":{"docs":{},"持":{"docs":{},"基":{"docs":{},"于":{"docs":{},"c":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}}}},"大":{"docs":{},"部":{"docs":{},"分":{"docs":{},"标":{"docs":{},"准":{"docs":{},"c":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}}}}}}},"所":{"docs":{},"有":{"docs":{},"c":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}},"会":{"docs":{},"自":{"docs":{},"动":{"docs":{},"释":{"docs":{},"放":{"docs":{},"不":{"docs":{},"再":{"docs":{},"需":{"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":{},"(":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.005917159763313609}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"使":{"docs":{},"用":{"docs":{},"自":{"docs":{},"动":{"docs":{},"引":{"docs":{},"用":{"docs":{},"计":{"docs":{},"数":{"docs":{},"(":{"docs":{},"a":{"docs":{},"r":{"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":{},"况":{"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":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"有":{"docs":{},"如":{"docs":{},"下":{"docs":{},"要":{"docs":{},"求":{"docs":{},":":{"docs":{},"只":{"docs":{},"要":{"docs":{},"在":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"内":{"docs":{},"使":{"docs":{},"用":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"的":{"docs":{},"成":{"docs":{},"员":{"docs":{},",":{"docs":{},"就":{"docs":{},"要":{"docs":{},"用":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"或":{"docs":{},"者":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"(":{"docs":{},"而":{"docs":{},"不":{"docs":{},"只":{"docs":{},"是":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"或":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},")":{"docs":{},"。":{"docs":{},"这":{"docs":{},"提":{"docs":{},"醒":{"docs":{},"你":{"docs":{},"可":{"docs":{},"能":{"docs":{},"会":{"docs":{},"不":{"docs":{},"小":{"docs":{},"心":{"docs":{},"就":{"docs":{},"占":{"docs":{},"有":{"docs":{},"了":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"来":{"docs":{},"链":{"docs":{},"接":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"?":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"存":{"docs":{},"在":{"docs":{},"则":{"docs":{},"取":{"docs":{},"回":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"’":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}},"内":{"docs":{},"建":{"docs":{},"类":{"docs":{},"型":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"添":{"docs":{},"加":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"整":{"docs":{},"型":{"docs":{},"下":{"docs":{},"标":{"docs":{},"。":{"docs":{},"该":{"docs":{},"下":{"docs":{},"标":{"docs":{},"[":{"docs":{},"n":{"docs":{},"]":{"docs":{},"返":{"docs":{},"回":{"docs":{},"十":{"docs":{},"进":{"docs":{},"制":{"docs":{},"数":{"docs":{},"字":{"docs":{},"从":{"docs":{},"右":{"docs":{},"向":{"docs":{},"左":{"docs":{},"数":{"docs":{},"的":{"docs":{},"第":{"docs":{},"n":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"允":{"docs":{},"许":{"docs":{},"你":{"docs":{},"定":{"docs":{},"义":{"docs":{},"你":{"docs":{},"自":{"docs":{},"己":{"docs":{},"的":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"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":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"字":{"docs":{},"典":{"docs":{},"(":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},")":{"docs":{},"类":{"docs":{},"型":{"docs":{},"有":{"docs":{},"两":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"一":{"docs":{},"个":{"docs":{},"是":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},",":{"docs":{},"另":{"docs":{},"外":{"docs":{},"一":{"docs":{},"个":{"docs":{},"是":{"docs":{},"值":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"自":{"docs":{},"己":{"docs":{},"写":{"docs":{},"字":{"docs":{},"典":{"docs":{},",":{"docs":{},"你":{"docs":{},"或":{"docs":{},"许":{"docs":{},"会":{"docs":{},"定":{"docs":{},"义":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"为":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"和":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"标":{"docs":{},"准":{"docs":{},"库":{"docs":{},"中":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"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":{},"和":{"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":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"细":{"docs":{},"节":{"docs":{},"讨":{"docs":{},"论":{"docs":{},",":{"docs":{},"见":{"docs":{},"章":{"docs":{},"节":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"~":{"docs":{},"=":{"docs":{},"操":{"docs":{},"作":{"docs":{},"符":{"docs":{},"与":{"docs":{},"输":{"docs":{},"入":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"的":{"docs":{},"值":{"docs":{},"进":{"docs":{},"行":{"docs":{},"比":{"docs":{},"较":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"~":{"docs":{},"=":{"docs":{},"操":{"docs":{},"作":{"docs":{},"符":{"docs":{},"返":{"docs":{},"回":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"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":{},"符":{"docs":{},"来":{"docs":{},"比":{"docs":{},"较":{"docs":{},"两":{"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":{},"g":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"考":{"docs":{},",":{"docs":{},"你":{"docs":{},"不":{"docs":{},"用":{"docs":{},"在":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"定":{"docs":{},"义":{"docs":{},"部":{"docs":{},"分":{"docs":{},"声":{"docs":{},"明":{"docs":{},"一":{"docs":{},"个":{"docs":{},"具":{"docs":{},"体":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"。":{"docs":{},"由":{"docs":{},"于":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"要":{"docs":{},"求":{"docs":{},",":{"docs":{},"只":{"docs":{},"要":{"docs":{},"通":{"docs":{},"过":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"查":{"docs":{},"找":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"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":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"需":{"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":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"后":{"docs":{},"缀":{"docs":{},"?":{"docs":{},"来":{"docs":{},"作":{"docs":{},"为":{"docs":{},"标":{"docs":{},"准":{"docs":{},"库":{"docs":{},"中":{"docs":{},"的":{"docs":{},"定":{"docs":{},"义":{"docs":{},"的":{"docs":{},"命":{"docs":{},"名":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"广":{"docs":{},"泛":{"docs":{},"的":{"docs":{},"使":{"docs":{},"用":{"docs":{},"类":{"docs":{},"型":{"docs":{},"推":{"docs":{},"断":{"docs":{},",":{"docs":{},"从":{"docs":{},"而":{"docs":{},"允":{"docs":{},"许":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"忽":{"docs":{},"略":{"docs":{},"很":{"docs":{},"多":{"docs":{},"变":{"docs":{},"量":{"docs":{},"和":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"或":{"docs":{},"部":{"docs":{},"分":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"比":{"docs":{},"如":{"docs":{},",":{"docs":{},"对":{"docs":{},"于":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"本":{"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":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.005875440658049354},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.014732965009208104},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.027303754266211604},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.006324110671936759},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.005747126436781609},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0037593984962406013},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.012658227848101266},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":2.242165242165242}},"中":{"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"代":{"docs":{},"码":{"docs":{},"块":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}},"时":{"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"执":{"docs":{},"行":{"docs":{},"完":{"docs":{},"后":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{},"函":{"docs":{},"数":{"docs":{},"打":{"docs":{},"印":{"docs":{},"该":{"docs":{},"数":{"docs":{},"字":{"docs":{},"的":{"docs":{},"描":{"docs":{},"述":{"docs":{},"。":{"docs":{},"在":{"docs":{},"这":{"docs":{},"个":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"数":{"docs":{},"字":{"5":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"接":{"docs":{},"下":{"docs":{},"来":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"通":{"docs":{},"过":{"docs":{},"使":{"docs":{},"用":{"docs":{},"可":{"docs":{},"选":{"docs":{},"绑":{"docs":{},"定":{"docs":{},"来":{"docs":{},"判":{"docs":{},"断":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"是":{"docs":{},"否":{"docs":{},"曾":{"docs":{},"经":{"docs":{},"被":{"docs":{},"设":{"docs":{},"置":{"docs":{},"过":{"docs":{},"值":{"docs":{},"。":{"docs":{},"因":{"docs":{},"为":{"docs":{},"是":{"docs":{},"可":{"docs":{},"选":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"缘":{"docs":{},"故":{"docs":{},",":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"隐":{"docs":{},"式":{"docs":{},"的":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"仅":{"docs":{},"仅":{"docs":{},"当":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"曾":{"docs":{},"被":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"当":{"docs":{},"使":{"docs":{},"用":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"或":{"docs":{},"者":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}},"分":{"docs":{},"支":{"docs":{},"仅":{"docs":{},"仅":{"docs":{},"包":{"docs":{},"含":{"docs":{},"注":{"docs":{},"释":{"docs":{},"时":{"docs":{},",":{"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":{},"你":{"docs":{},"总":{"docs":{},"是":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"来":{"docs":{},"判":{"docs":{},"断":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}},"语":{"docs":{},"句":{"docs":{},"不":{"docs":{},"会":{"docs":{},"同":{"docs":{},"时":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"和":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"。":{"docs":{},"相":{"docs":{},"反":{"docs":{},"的":{"docs":{},",":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"会":{"docs":{},"引":{"docs":{},"起":{"docs":{},"编":{"docs":{},"译":{"docs":{},"期":{"docs":{},"错":{"docs":{},"误":{"docs":{},":":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"包":{"docs":{},"含":{"docs":{},"默":{"docs":{},"认":{"docs":{},"块":{"docs":{},"。":{"docs":{},"这":{"docs":{},"是":{"docs":{},"因":{"docs":{},"为":{"docs":{},"最":{"docs":{},"后":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"—":{"docs":{},"—":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}},"中":{"docs":{},"测":{"docs":{},"试":{"docs":{},"多":{"docs":{},"个":{"docs":{},"值":{"docs":{},"。":{"docs":{},"元":{"docs":{},"组":{"docs":{},"中":{"docs":{},"的":{"docs":{},"元":{"docs":{},"素":{"docs":{},"可":{"docs":{},"以":{"docs":{},"是":{"docs":{},"值":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"是":{"docs":{},"范":{"docs":{},"围":{"docs":{},"。":{"docs":{},"另":{"docs":{},"外":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"下":{"docs":{},"划":{"docs":{},"线":{"docs":{},"(":{"docs":{},"_":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.008438818565400843}}}}},"控":{"docs":{},"制":{"docs":{},"流":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"语":{"docs":{},"句":{"docs":{},"修":{"docs":{},"改":{"docs":{},",":{"docs":{},"请":{"docs":{},"参":{"docs":{},"考":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}},"模":{"docs":{},"式":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"的":{"docs":{},"顺":{"docs":{},"序":{"docs":{},"和":{"docs":{},"书":{"docs":{},"写":{"docs":{},"源":{"docs":{},"代":{"docs":{},"码":{"docs":{},"的":{"docs":{},"顺":{"docs":{},"序":{"docs":{},"保":{"docs":{},"持":{"docs":{},"一":{"docs":{},"致":{"docs":{},"。":{"docs":{},"因":{"docs":{},"此":{"docs":{},",":{"docs":{},"当":{"docs":{},"多":{"docs":{},"个":{"docs":{},"模":{"docs":{},"式":{"docs":{},"含":{"docs":{},"有":{"docs":{},"相":{"docs":{},"同":{"docs":{},"的":{"docs":{},"值":{"docs":{},"且":{"docs":{},"能":{"docs":{},"够":{"docs":{},"匹":{"docs":{},"配":{"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":{},"a":{"docs":{},"s":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"使":{"docs":{},"用":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}},"控":{"docs":{},"制":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"的":{"docs":{},"每":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"能":{"docs":{},"的":{"docs":{},"值":{"docs":{},"都":{"docs":{},"必":{"docs":{},"须":{"docs":{},"至":{"docs":{},"少":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"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":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"会":{"docs":{},"判":{"docs":{},"断":{"docs":{},"某":{"docs":{},"个":{"docs":{},"点":{"docs":{},"是":{"docs":{},"否":{"docs":{},"在":{"docs":{},"红":{"docs":{},"色":{"docs":{},"的":{"docs":{},"x":{"docs":{},"轴":{"docs":{},"上":{"docs":{},",":{"docs":{},"是":{"docs":{},"否":{"docs":{},"在":{"docs":{},"黄":{"docs":{},"色":{"docs":{},"i":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}},"绿":{"docs":{},"色":{"docs":{},"的":{"docs":{},"对":{"docs":{},"角":{"docs":{},"线":{"docs":{},"x":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}},"是":{"docs":{},"原":{"docs":{},"点":{"docs":{},"(":{"0":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}},"docs":{}}}}}}}}}}}},"尝":{"docs":{},"试":{"docs":{},"把":{"docs":{},"某":{"docs":{},"个":{"docs":{},"值":{"docs":{},"与":{"docs":{},"若":{"docs":{},"干":{"docs":{},"个":{"docs":{},"模":{"docs":{},"式":{"docs":{},"(":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"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":{},"当":{"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":{},"i":{"docs":{},"f":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"完":{"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":{},"a":{"docs":{},"s":{"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":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"默":{"docs":{},"认":{"docs":{},"(":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"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":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"全":{"docs":{},"面":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"忽":{"docs":{},"略":{"docs":{},"了":{"docs":{},".":{"docs":{},"w":{"docs":{},"e":{"docs":{},"s":{"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":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"来":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"模":{"docs":{},"式":{"docs":{},"和":{"docs":{},"a":{"docs":{},"s":{"docs":{},"模":{"docs":{},"式":{"docs":{},"值":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},",":{"docs":{},"请":{"docs":{},"参":{"docs":{},"阅":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}}}}}}}}}}}}}}}}}}}}}},"包":{"docs":{},"含":{"docs":{},"关":{"docs":{},"联":{"docs":{},"值":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"案":{"docs":{},"例":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},",":{"docs":{},"请":{"docs":{},"参":{"docs":{},"阅":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}}}}}}}}}}}}}}}}}}}}}}}}}},"检":{"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"分":{"docs":{},"支":{"docs":{},"代":{"docs":{},"码":{"docs":{},"中":{"docs":{},"提":{"docs":{},"取":{"docs":{},"每":{"docs":{},"个":{"docs":{},"关":{"docs":{},"联":{"docs":{},"值":{"docs":{},"作":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"常":{"docs":{},"量":{"docs":{},"(":{"docs":{},"用":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"前":{"docs":{},"缀":{"docs":{},")":{"docs":{},"或":{"docs":{},"者":{"docs":{},"作":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"变":{"docs":{},"量":{"docs":{},"(":{"docs":{},"用":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"都":{"docs":{},"由":{"docs":{},"多":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"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":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{},"强":{"docs":{},"制":{"docs":{},"形":{"docs":{},"式":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"检":{"docs":{},"查":{"docs":{},"操":{"docs":{},"作":{"docs":{},"符":{"docs":{},"(":{"docs":{},"a":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}}},"控":{"docs":{},"制":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.005698005698005698}}}}}}}}}}}}}}}},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"包":{"docs":{},"含":{"docs":{},"默":{"docs":{},"认":{"docs":{},"(":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},")":{"docs":{},"块":{"docs":{},",":{"docs":{},"只":{"docs":{},"有":{"docs":{},"其":{"docs":{},"它":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"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":{},"行":{"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"前":{"docs":{},"面":{"docs":{},"加":{"docs":{},"上":{"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":{},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"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":{},"制":{"docs":{},"权":{"docs":{},"传":{"docs":{},"递":{"docs":{},"给":{"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":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00411522633744856},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.017094017094017096}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.008547008547008548}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.005979073243647235}},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174}},"s":{"docs":{},"(":{"docs":{},"&":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174}}}}}}}},"函":{"docs":{},"数":{"docs":{},"仅":{"docs":{},"仅":{"docs":{},"交":{"docs":{},"换":{"docs":{},"a":{"docs":{},"与":{"docs":{},"b":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"该":{"docs":{},"函":{"docs":{},"数":{"docs":{},"先":{"docs":{},"将":{"docs":{},"a":{"docs":{},"的":{"docs":{},"值":{"docs":{},"存":{"docs":{},"到":{"docs":{},"一":{"docs":{},"个":{"docs":{},"暂":{"docs":{},"时":{"docs":{},"常":{"docs":{},"量":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"a":{"docs":{},"中":{"docs":{},",":{"docs":{},"然":{"docs":{},"后":{"docs":{},"将":{"docs":{},"b":{"docs":{},"的":{"docs":{},"值":{"docs":{},"赋":{"docs":{},"给":{"docs":{},"a":{"docs":{},",":{"docs":{},"最":{"docs":{},"后":{"docs":{},"将":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"a":{"docs":{},"幅":{"docs":{},"值":{"docs":{},"给":{"docs":{},"b":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"并":{"docs":{},"没":{"docs":{},"有":{"docs":{},"定":{"docs":{},"义":{"docs":{},"任":{"docs":{},"何":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},",":{"docs":{},"但":{"docs":{},"仍":{"docs":{},"然":{"docs":{},"修":{"docs":{},"改":{"docs":{},"了":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"和":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"有":{"docs":{},"两":{"docs":{},"个":{"docs":{},"分":{"docs":{},"别":{"docs":{},"叫":{"docs":{},"做":{"docs":{},"a":{"docs":{},"和":{"docs":{},"b":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"交":{"docs":{},"换":{"docs":{},"b":{"docs":{},"的":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"到":{"docs":{},"a":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"交":{"docs":{},"换":{"docs":{},"a":{"docs":{},"的":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"到":{"docs":{},"b":{"docs":{},",":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"调":{"docs":{},"用":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"交":{"docs":{},"换":{"docs":{},"两":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"非":{"docs":{},"常":{"docs":{},"有":{"docs":{},"用":{"docs":{},"的":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"它":{"docs":{},"只":{"docs":{},"能":{"docs":{},"交":{"docs":{},"换":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"值":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"想":{"docs":{},"要":{"docs":{},"交":{"docs":{},"换":{"docs":{},"两":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"或":{"docs":{},"者":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"交":{"docs":{},"换":{"docs":{},"两":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}},"和":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}},"函":{"docs":{},"数":{"docs":{},"主":{"docs":{},"题":{"docs":{},"都":{"docs":{},"是":{"docs":{},"相":{"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":{},"t":{"docs":{},"、":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"和":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174}},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"&":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}},"<":{"docs":{},"t":{"docs":{},">":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174}}}}}}}}}}},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"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":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"中":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"a":{"docs":{},"和":{"docs":{},"b":{"docs":{},")":{"docs":{},",":{"docs":{},"或":{"docs":{},"作":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"返":{"docs":{},"回":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"或":{"docs":{},"用":{"docs":{},"作":{"docs":{},"函":{"docs":{},"数":{"docs":{},"主":{"docs":{},"体":{"docs":{},"中":{"docs":{},"的":{"docs":{},"注":{"docs":{},"释":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"在":{"docs":{},"这":{"docs":{},"种":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},",":{"docs":{},"被":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"所":{"docs":{},"代":{"docs":{},"表":{"docs":{},"的":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"docs":{},"不":{"docs":{},"管":{"docs":{},"函":{"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":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"当":{"docs":{},"函":{"docs":{},"数":{"docs":{},"第":{"docs":{},"一":{"docs":{},"次":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},",":{"docs":{},"t":{"docs":{},"被":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"替":{"docs":{},"换":{"docs":{},",":{"docs":{},"第":{"docs":{},"二":{"docs":{},"次":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},",":{"docs":{},"被":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"主":{"docs":{},"体":{"docs":{},"和":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"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":{},"同":{"docs":{},"于":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}},"除":{"docs":{},"了":{"docs":{},"只":{"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":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"函":{"docs":{},"数":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},"。":{"docs":{},"每":{"docs":{},"次":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"泛":{"docs":{},"型":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"或":{"docs":{},"一":{"docs":{},"个":{"docs":{},"存":{"docs":{},"储":{"docs":{},"单":{"docs":{},"一":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"集":{"docs":{},",":{"docs":{},"如":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},")":{"docs":{},",":{"docs":{},"通":{"docs":{},"常":{"docs":{},"用":{"docs":{},"一":{"docs":{},"单":{"docs":{},"个":{"docs":{},"字":{"docs":{},"母":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"w":{"docs":{},"i":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}},"k":{"docs":{},"e":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"都":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.004484304932735426},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.006535947712418301}},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}}}}},"-":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"-":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.015503875968992248},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}},"y":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"d":{"docs":{},"b":{"docs":{},"y":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"v":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"依":{"docs":{},"然":{"docs":{},"返":{"docs":{},"回":{"docs":{},"了":{"docs":{},"值":{"docs":{},"。":{"docs":{},"没":{"docs":{},"有":{"docs":{},"定":{"docs":{},"义":{"docs":{},"返":{"docs":{},"回":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"docs":{},"特":{"docs":{},"殊":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"叫":{"docs":{},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{},"。":{"docs":{},"它":{"docs":{},"其":{"docs":{},"实":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"空":{"docs":{},"的":{"docs":{},"元":{"docs":{},"组":{"docs":{},"(":{"docs":{},"t":{"docs":{},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"(":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}},"。":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"展":{"docs":{},"示":{"docs":{},"的":{"docs":{},"是":{"docs":{},"用":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"和":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"时":{"docs":{},",":{"docs":{},"在":{"docs":{},"圆":{"docs":{},"括":{"docs":{},"号":{"docs":{},"中":{"docs":{},"传":{"docs":{},"给":{"docs":{},"它":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"实":{"docs":{},"参":{"docs":{},"。":{"docs":{},"因":{"docs":{},"为":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"s":{"docs":{},"a":{"docs":{},"y":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"可":{"docs":{},"以":{"docs":{},"被":{"docs":{},"包":{"docs":{},"含":{"docs":{},"在":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"另":{"docs":{},"一":{"docs":{},"个":{"docs":{},"版":{"docs":{},"本":{"docs":{},",":{"docs":{},"叫":{"docs":{},"w":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"d":{"docs":{},"b":{"docs":{},"y":{"docs":{},"e":{"docs":{},",":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"直":{"docs":{},"接":{"docs":{},"输":{"docs":{},"出":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},"体":{"docs":{},"中":{"docs":{},",":{"docs":{},"先":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"名":{"docs":{},"为":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"常":{"docs":{},"量":{"docs":{},",":{"docs":{},"同":{"docs":{},"时":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"了":{"docs":{},"给":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"简":{"docs":{},"单":{"docs":{},"问":{"docs":{},"候":{"docs":{},"消":{"docs":{},"息":{"docs":{},"。":{"docs":{},"然":{"docs":{},"后":{"docs":{},"用":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"把":{"docs":{},"这":{"docs":{},"个":{"docs":{},"问":{"docs":{},"候":{"docs":{},"返":{"docs":{},"回":{"docs":{},"出":{"docs":{},"去":{"docs":{},"。":{"docs":{},"一":{"docs":{},"旦":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"e":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.006825938566552901},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}},"t":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.006825938566552901}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123}}}},"p":{"docs":{},"e":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}},"t":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848}}}}},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.2620493541546173},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}},"r":{"docs":{},"f":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.004604051565377533}}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.02631578947368421},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}},".":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.056910569105691054},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0019223375624759708}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}}}}}},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}},"m":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}},"l":{"docs":{},"f":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.004700352526439483},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.8927014641779367},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.010101010101010102},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.02586206896551724},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0037593984962406013},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.2977745872218234},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.004801097393689987}},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.020202020202020204},"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}},"e":{"docs":{},")":{"docs":{},">":{"docs":{},"\\":{"docs":{},"(":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"\\":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00404040404040404}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.006060606060606061}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"中":{"docs":{},"调":{"docs":{},"用":{"docs":{},"了":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"某":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"例":{"docs":{},"如":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}},"r":{"docs":{},"i":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}},"x":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{},"u":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00808080808080808}}}}},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}}}}}},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}},"e":{"docs":{},"a":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}},"n":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}}}},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174}}}}}}}}}},"a":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}},"被":{"docs":{},"用":{"docs":{},"来":{"docs":{},"区":{"docs":{},"别":{"docs":{},"实":{"docs":{},"例":{"docs":{},"变":{"docs":{},"量":{"docs":{},"。":{"docs":{},"当":{"docs":{},"你":{"docs":{},"创":{"docs":{},"建":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},",":{"docs":{},"像":{"docs":{},"传":{"docs":{},"入":{"docs":{},"函":{"docs":{},"数":{"docs":{},"参":{"docs":{},"数":{"docs":{},"一":{"docs":{},"样":{"docs":{},"给":{"docs":{},"类":{"docs":{},"传":{"docs":{},"入":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"的":{"docs":{},"参":{"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"。":{"docs":{},"不":{"docs":{},"论":{"docs":{},"何":{"docs":{},"时":{"docs":{},",":{"docs":{},"在":{"docs":{},"一":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"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":{},"e":{"docs":{},"l":{"docs":{},"f":{"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":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"已":{"docs":{},"经":{"docs":{},"示":{"docs":{},"范":{"docs":{},"了":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"的":{"docs":{},"三":{"docs":{},"个":{"docs":{},"实":{"docs":{},"例":{"docs":{},"方":{"docs":{},"法":{"docs":{},"中":{"docs":{},"都":{"docs":{},"使":{"docs":{},"用":{"docs":{},"的":{"docs":{},"是":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"一":{"docs":{},"个":{"docs":{},"全":{"docs":{},"新":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"上":{"docs":{},"面":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}},"前":{"docs":{},"缀":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"就":{"docs":{},"认":{"docs":{},"为":{"docs":{},"两":{"docs":{},"次":{"docs":{},"使":{"docs":{},"用":{"docs":{},"的":{"docs":{},"x":{"docs":{},"都":{"docs":{},"指":{"docs":{},"的":{"docs":{},"是":{"docs":{},"名":{"docs":{},"称":{"docs":{},"为":{"docs":{},"x":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}},"属":{"docs":{},"性":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}},"消":{"docs":{},"除":{"docs":{},"方":{"docs":{},"法":{"docs":{},"参":{"docs":{},"数":{"docs":{},"x":{"docs":{},"和":{"docs":{},"实":{"docs":{},"例":{"docs":{},"属":{"docs":{},"性":{"docs":{},"x":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}},"赋":{"docs":{},"值":{"docs":{},"(":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}},",":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"完":{"docs":{},"全":{"docs":{},"等":{"docs":{},"同":{"docs":{},"于":{"docs":{},"该":{"docs":{},"实":{"docs":{},"例":{"docs":{},"本":{"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":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"它":{"docs":{},"只":{"docs":{},"占":{"docs":{},"有":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}},"并":{"docs":{},"不":{"docs":{},"会":{"docs":{},"持":{"docs":{},"有":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"将":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},",":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"]":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"“":{"docs":{},"用":{"docs":{},"无":{"docs":{},"主":{"docs":{},"引":{"docs":{},"用":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"来":{"docs":{},"占":{"docs":{},"有":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}},"后":{"docs":{},"是":{"docs":{},"如":{"docs":{},"何":{"docs":{},"产":{"docs":{},"生":{"docs":{},"一":{"docs":{},"个":{"docs":{},"循":{"docs":{},"环":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"的":{"docs":{},"。":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"叫":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"类":{"docs":{},",":{"docs":{},"用":{"docs":{},"一":{"docs":{},"种":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"模":{"docs":{},"型":{"docs":{},"表":{"docs":{},"示":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"或":{"docs":{},"其":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},"必":{"docs":{},"须":{"docs":{},"将":{"docs":{},"该":{"docs":{},"实":{"docs":{},"例":{"docs":{},"方":{"docs":{},"法":{"docs":{},"标":{"docs":{},"注":{"docs":{},"为":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"来":{"docs":{},"获":{"docs":{},"取":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"比":{"docs":{},"如":{"docs":{},",":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"返":{"docs":{},"回":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"本":{"docs":{},"身":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"同":{"docs":{},"样":{"docs":{},",":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"返":{"docs":{},"回":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"本":{"docs":{},"身":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"运":{"docs":{},"行":{"docs":{},"时":{"docs":{},"适":{"docs":{},"配":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"的":{"docs":{},"某":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"还":{"docs":{},"可":{"docs":{},"以":{"docs":{},"对":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"使":{"docs":{},"用":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.005025125628140704},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.003429355281207133}}}}}}}}}},"[":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}},"­":{"docs":{},".":{"docs":{},"­":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}},"[":{"docs":{},"­":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}},"等":{"docs":{},"同":{"docs":{},"于":{"docs":{},"当":{"docs":{},"前":{"docs":{},"的":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}}}}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.004700352526439483}},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"6":{"docs":{},":":{"0":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}},"和":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.007168458781362007}}}}}}}}}}}}}}}}},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.009398496240601503},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0037593984962406013},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.005382545174932718},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":5.011278195488722},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}},",":{"docs":{},"那":{"docs":{},"么":{"docs":{},"你":{"docs":{},"也":{"docs":{},"一":{"docs":{},"定":{"docs":{},"要":{"docs":{},"提":{"docs":{},"供":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"不":{"docs":{},"想":{"docs":{},"在":{"docs":{},"重":{"docs":{},"写":{"docs":{},"版":{"docs":{},"本":{"docs":{},"中":{"docs":{},"的":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"里":{"docs":{},"修":{"docs":{},"改":{"docs":{},"继":{"docs":{},"承":{"docs":{},"来":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"值":{"docs":{},",":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"直":{"docs":{},"接":{"docs":{},"返":{"docs":{},"回":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"来":{"docs":{},"返":{"docs":{},"回":{"docs":{},"继":{"docs":{},"承":{"docs":{},"来":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"正":{"docs":{},"如":{"docs":{},"下":{"docs":{},"面":{"docs":{},"的":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"l":{"docs":{},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"与":{"docs":{},"属":{"docs":{},"性":{"docs":{},"值":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"副":{"docs":{},"本":{"docs":{},"合":{"docs":{},"成":{"docs":{},",":{"docs":{},"由":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"y":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"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":{},"循":{"docs":{},"n":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_171":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_171","tf":0.08333333333333333},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}},"e":{"docs":{},"­":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_171":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_171","tf":0.08333333333333333}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0027434842249657062}}}}}}}}},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},")":{"docs":{},"被":{"docs":{},"为":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"类":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},"实":{"docs":{},"现":{"docs":{},".":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"游":{"docs":{},"戏":{"docs":{},"逻":{"docs":{},"辑":{"docs":{},"被":{"docs":{},"转":{"docs":{},"移":{"docs":{},"到":{"docs":{},"了":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}},"n":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"h":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.007050528789659225}},".":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}},"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}},"类":{"docs":{},"缺":{"docs":{},"少":{"docs":{},"了":{"docs":{},"一":{"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.011135857461024499}},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.031180400890868598}},"[":{"0":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0066815144766146995}}},"1":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}},"4":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"6":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}},"docs":{}}}}},"docs":{}},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"(":{"0":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}},"docs":{}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}},"变":{"docs":{},"量":{"docs":{},"被":{"docs":{},"声":{"docs":{},"明":{"docs":{},"为":{"docs":{},"“":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"值":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"数":{"docs":{},"组":{"docs":{},"“":{"docs":{},",":{"docs":{},"记":{"docs":{},"作":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}},"数":{"docs":{},"组":{"docs":{},"由":{"docs":{},"两":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"e":{"docs":{},"g":{"docs":{},"g":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}},"被":{"docs":{},"声":{"docs":{},"明":{"docs":{},"为":{"docs":{},"变":{"docs":{},"量":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"创":{"docs":{},"建":{"docs":{},")":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"常":{"docs":{},"量":{"docs":{},"(":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"现":{"docs":{},"在":{"docs":{},"只":{"docs":{},"有":{"5":{"docs":{},"项":{"docs":{},",":{"docs":{},"不":{"docs":{},"包":{"docs":{},"括":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"s":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}}}},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.4375915974596971}}}}}},"e":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}},"e":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}},"w":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.487724501565332},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.004020100502512563}},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002306805074971165}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.004700352526439483},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.012925969447708578}}}}}}}},"s":{"docs":{},")":{"docs":{},"-":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.01527614571092832}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}},"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"(":{"1":{"7":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}},"docs":{}},"3":{"docs":{},".":{"1":{"4":{"1":{"5":{"9":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"<":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}},"f":{"docs":{},"i":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}},"c":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}},"l":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}}}}}}},"o":{"docs":{},"n":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0037593984962406013}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}},"s":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}},"x":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.011135857461024499},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.004454342984409799}}}}}}},"t":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}},"z":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.011278195488721804},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.028735632183908046},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}},"(":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.005747126436781609}}}}}}}},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.007518796992481203},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.007518796992481203},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}},"封":{"docs":{},"装":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},"和":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}},"e":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.4375915974596971}}}}}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}},"w":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}},"g":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.4854176964903608},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.006696428571428571},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0019223375624759708}}}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}},"docs":{}},"docs":{}},"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.005141388174807198},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.004020100502512563}},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00404040404040404}}}}}}},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013}}}}}}},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.003015075376884422}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}},"[":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}},"中":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}},"和":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"。":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"参":{"docs":{},"数":{"docs":{},"是":{"docs":{},"类":{"docs":{},"型":{"docs":{},"c":{"1":{"docs":{},",":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"参":{"docs":{},"数":{"docs":{},"是":{"docs":{},"类":{"docs":{},"型":{"docs":{},"c":{"2":{"docs":{},"。":{"docs":{},"c":{"1":{"docs":{},"和":{"docs":{},"c":{"2":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}},"docs":{}}}},"docs":{}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}},"包":{"docs":{},"含":{"docs":{},"相":{"docs":{},"同":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"1":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}},"docs":{}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"的":{"docs":{},"重":{"docs":{},"写":{"docs":{},"实":{"docs":{},"现":{"docs":{},"中":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},"来":{"docs":{},"调":{"docs":{},"用":{"docs":{},"超":{"docs":{},"类":{"docs":{},"版":{"docs":{},"本":{"docs":{},"的":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"的":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"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":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"来":{"docs":{},"访":{"docs":{},"问":{"docs":{},"超":{"docs":{},"类":{"docs":{},"版":{"docs":{},"本":{"docs":{},"的":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.005012531328320802}},">":{"docs":{},"(":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.005141388174807198}},".":{"1":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192}}},"docs":{},"i":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"o":{"docs":{},"f":{"docs":{},"x":{"docs":{},"(":{"1":{"docs":{},".":{"0":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"b":{"docs":{},"y":{"docs":{},"x":{"docs":{},"(":{"2":{"docs":{},".":{"0":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}},"docs":{}}},"docs":{}}}}}}}}},"x":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.017064846416382253}}}}}}}},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.004020100502512563}}}}}}}},"b":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.011695906432748537},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.005025125628140704}}}}}}}}},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174}},"i":{"docs":{},"n":{"docs":{},"g":{"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":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}},"e":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"标":{"docs":{},"识":{"docs":{},"符":{"docs":{},"模":{"docs":{},"式":{"docs":{},",":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"了":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"4":{"2":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"?":{"docs":{},"(":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"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":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.003952569169960474}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.008620689655172414},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.005025125628140704}},"e":{"docs":{},"(":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"被":{"docs":{},"指":{"docs":{},"定":{"docs":{},"为":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}},":":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.011135857461024499},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.004219409282700422},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.005747126436781609},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.007473841554559043}},"s":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"3":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}},"docs":{}}}}}}}}},"。":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}},"被":{"docs":{},"设":{"docs":{},"置":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"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":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}}},"s":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.008771929824561403},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.003015075376884422}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}},"a":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}},"x":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},"s":{"docs":{},"a":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0056179775280898875}},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}},"e":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"[":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}},"都":{"docs":{},"被":{"docs":{},"声":{"docs":{},"明":{"docs":{},"为":{"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":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"[":{"0":{"docs":{},"]":{"docs":{},"是":{"docs":{},"指":{"docs":{},"第":{"0":{"docs":{},"个":{"docs":{},"元":{"docs":{},"素":{"docs":{},"“":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}},"docs":{}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.005847953216374269}}}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"[":{"docs":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}},"u":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767}}}},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.011695906432748537},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.004020100502512563}}}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.46568148510014656}},"(":{"docs":{},"[":{"1":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}},"docs":{}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.02247191011235955}}}}}},"函":{"docs":{},"数":{"docs":{},"当":{"docs":{},"排":{"docs":{},"序":{"docs":{},"结":{"docs":{},"束":{"docs":{},"后":{"docs":{},"传":{"docs":{},"入":{"docs":{},"的":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"排":{"docs":{},"在":{"docs":{},"第":{"docs":{},"二":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"前":{"docs":{},"面":{"docs":{},"还":{"docs":{},"是":{"docs":{},"后":{"docs":{},"面":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"值":{"docs":{},"出":{"docs":{},"现":{"docs":{},"在":{"docs":{},"第":{"docs":{},"二":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"值":{"docs":{},"前":{"docs":{},"面":{"docs":{},",":{"docs":{},"排":{"docs":{},"序":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"函":{"docs":{},"数":{"docs":{},"需":{"docs":{},"要":{"docs":{},"返":{"docs":{},"回":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"docs":{},"反":{"docs":{},"之":{"docs":{},"返":{"docs":{},"回":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"进":{"docs":{},"行":{"docs":{},"传":{"docs":{},"入":{"docs":{},"的":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}},"期":{"docs":{},"望":{"docs":{},"第":{"docs":{},"二":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"是":{"docs":{},"类":{"docs":{},"型":{"docs":{},"为":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}},"t":{"docs":{},"h":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.010238907849829351}}}},"r":{"docs":{},"c":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"n":{"docs":{},"g":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.02766798418972332}},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848}}}}}},".":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0047430830039525695}},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"计":{"docs":{},"算":{"docs":{},"数":{"docs":{},"组":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}},"检":{"docs":{},"查":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"是":{"docs":{},"否":{"docs":{},"为":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"在":{"docs":{},"循":{"docs":{},"环":{"docs":{},"末":{"docs":{},"尾":{"docs":{},",":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.016260162601626018}}}},"r":{"docs":{},"k":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}},")":{"docs":{},"(":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"2":{"0":{"docs":{},")":{"docs":{},"、":{"docs":{},"换":{"docs":{},"行":{"docs":{},"符":{"docs":{},"(":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.016597510373443983}},"l":{"docs":{},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.012448132780082987}},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"属":{"docs":{},"性":{"docs":{},"时":{"docs":{},",":{"docs":{},"属":{"docs":{},"性":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"实":{"docs":{},"现":{"docs":{},"会":{"docs":{},"去":{"docs":{},"检":{"docs":{},"查":{"docs":{},"新":{"docs":{},"值":{"docs":{},"与":{"docs":{},"限":{"docs":{},"制":{"docs":{},"值":{"4":{"0":{"docs":{},"m":{"docs":{},"p":{"docs":{},"h":{"docs":{},"的":{"docs":{},"大":{"docs":{},"小":{"docs":{},",":{"docs":{},"它":{"docs":{},"会":{"docs":{},"将":{"docs":{},"超":{"docs":{},"类":{"docs":{},"的":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"设":{"docs":{},"置":{"docs":{},"为":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"和":{"4":{"0":{"docs":{},".":{"0":{"docs":{},"中":{"docs":{},"较":{"docs":{},"小":{"docs":{},"的":{"docs":{},"那":{"docs":{},"个":{"docs":{},"。":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"值":{"docs":{},"哪":{"docs":{},"个":{"docs":{},"较":{"docs":{},"小":{"docs":{},"由":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"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":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"设":{"docs":{},"置":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"大":{"docs":{},"于":{"4":{"0":{"docs":{},"m":{"docs":{},"p":{"docs":{},"h":{"docs":{},"的":{"docs":{},"数":{"docs":{},",":{"docs":{},"然":{"docs":{},"后":{"docs":{},"打":{"docs":{},"印":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"函":{"docs":{},"数":{"docs":{},"的":{"docs":{},"输":{"docs":{},"出":{"docs":{},",":{"docs":{},"你":{"docs":{},"会":{"docs":{},"发":{"docs":{},"现":{"docs":{},"速":{"docs":{},"度":{"docs":{},"被":{"docs":{},"限":{"docs":{},"制":{"docs":{},"在":{"4":{"0":{"docs":{},"m":{"docs":{},"p":{"docs":{},"h":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},",":{"docs":{},"它":{"docs":{},"是":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"的":{"docs":{},"子":{"docs":{},"类":{"docs":{},"。":{"docs":{},"类":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"l":{"docs":{},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"表":{"docs":{},"示":{"docs":{},"安":{"docs":{},"装":{"docs":{},"了":{"docs":{},"限":{"docs":{},"速":{"docs":{},"装":{"docs":{},"置":{"docs":{},"的":{"docs":{},"车":{"docs":{},",":{"docs":{},"它":{"docs":{},"的":{"docs":{},"最":{"docs":{},"高":{"docs":{},"速":{"docs":{},"度":{"docs":{},"只":{"docs":{},"能":{"docs":{},"达":{"docs":{},"到":{"4":{"0":{"docs":{},"m":{"docs":{},"p":{"docs":{},"h":{"docs":{},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"重":{"docs":{},"写":{"docs":{},"继":{"docs":{},"承":{"docs":{},"来":{"docs":{},"的":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}},"f":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.003952569169960474},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.003015075376884422}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},",":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},",":{"docs":{},"和":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"替":{"docs":{},"换":{"docs":{},"为":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.011750881316098707},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.022099447513812154},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.012531328320802004}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.004700352526439483}}}}}}}}}}}}},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013}}}}}},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}},".":{"docs":{},"i":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}},"x":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}},"的":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"属":{"docs":{},"性":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"点":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"(":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},"来":{"docs":{},"访":{"docs":{},"问":{"docs":{},",":{"docs":{},"这":{"docs":{},"会":{"docs":{},"调":{"docs":{},"用":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"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":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"实":{"docs":{},"际":{"docs":{},"上":{"docs":{},"通":{"docs":{},"过":{"docs":{},"计":{"docs":{},"算":{"docs":{},"然":{"docs":{},"后":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"实":{"docs":{},"例":{"docs":{},"表":{"docs":{},"示":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"的":{"docs":{},"中":{"docs":{},"心":{"docs":{},"点":{"docs":{},"。":{"docs":{},"如":{"docs":{},"代":{"docs":{},"码":{"docs":{},"所":{"docs":{},"示":{"docs":{},",":{"docs":{},"它":{"docs":{},"正":{"docs":{},"确":{"docs":{},"返":{"docs":{},"回":{"docs":{},"了":{"docs":{},"中":{"docs":{},"心":{"docs":{},"点":{"docs":{},"(":{"5":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{},"原":{"docs":{},"点":{"docs":{},"是":{"docs":{},"(":{"0":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}},"docs":{}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767}}}}}},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848}}}}}},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013}},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{},"类":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"了":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}},"类":{"docs":{},"将":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"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":{},"为":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"的":{"docs":{},"必":{"docs":{},"备":{"docs":{},"属":{"docs":{},"性":{"docs":{},"和":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":1.674953959484346},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0102880658436214},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.1111111111111111}},"s":{"docs":{},"—":{"docs":{},"—":{"docs":{},"这":{"docs":{},"就":{"docs":{},"避":{"docs":{},"免":{"docs":{},"了":{"docs":{},"意":{"docs":{},"外":{"docs":{},"地":{"docs":{},"从":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}},")":{"docs":{},"之":{"docs":{},"后":{"docs":{},",":{"docs":{},"执":{"docs":{},"行":{"docs":{},"递":{"docs":{},"增":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}},",":{"docs":{},"然":{"docs":{},"后":{"docs":{},"转":{"docs":{},"到":{"docs":{},"第":{"1":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}},"2":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}},"docs":{}}}}}}}},"’":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}},"-":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.008547008547008548}}}}}}}}}}}}},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.025089605734767026}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.005376344086021506}}}}},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036}}}}}}}}}},"i":{"docs":{},"c":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.011278195488721804},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.007712082262210797},"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.01775147928994083},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}},"来":{"docs":{},"定":{"docs":{},"义":{"docs":{},"值":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"类":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"来":{"docs":{},"为":{"docs":{},"类":{"docs":{},"(":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}},"c":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.007473841554559043}},"(":{"docs":{},"栈":{"docs":{},")":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"栈":{"docs":{},"是":{"docs":{},"一":{"docs":{},"系":{"docs":{},"列":{"docs":{},"值":{"docs":{},"域":{"docs":{},"的":{"docs":{},"集":{"docs":{},"合":{"docs":{},",":{"docs":{},"和":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"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":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"类":{"docs":{},"型":{"docs":{},"更":{"docs":{},"多":{"docs":{},"限":{"docs":{},"制":{"docs":{},"的":{"docs":{},"集":{"docs":{},"合":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"数":{"docs":{},"组":{"docs":{},"可":{"docs":{},"以":{"docs":{},"允":{"docs":{},"许":{"docs":{},"其":{"docs":{},"里":{"docs":{},"面":{"docs":{},"任":{"docs":{},"何":{"docs":{},"位":{"docs":{},"置":{"docs":{},"的":{"docs":{},"插":{"docs":{},"入":{"docs":{},"/":{"docs":{},"删":{"docs":{},"除":{"docs":{},"操":{"docs":{},"作":{"docs":{},",":{"docs":{},"而":{"docs":{},"栈":{"docs":{},",":{"docs":{},"只":{"docs":{},"允":{"docs":{},"许":{"docs":{},",":{"docs":{},"只":{"docs":{},"允":{"docs":{},"许":{"docs":{},"在":{"docs":{},"集":{"docs":{},"合":{"docs":{},"的":{"docs":{},"末":{"docs":{},"端":{"docs":{},"添":{"docs":{},"加":{"docs":{},"新":{"docs":{},"的":{"docs":{},"项":{"docs":{},"(":{"docs":{},"如":{"docs":{},"同":{"docs":{},"p":{"docs":{},"u":{"docs":{},"s":{"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":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174}}}}},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.004484304932735426}}}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}},"d":{"docs":{},"o":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174}}}},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174}}}},"u":{"docs":{},"n":{"docs":{},"o":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174}}}}}}}}}}}},"如":{"docs":{},"何":{"docs":{},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}},"单":{"docs":{},"例":{"docs":{},"来":{"docs":{},"存":{"docs":{},"储":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"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":{},"建":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"单":{"docs":{},"例":{"docs":{},",":{"docs":{},"并":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"包":{"docs":{},"含":{"docs":{},"三":{"docs":{},"个":{"docs":{},"同":{"docs":{},"栈":{"docs":{},"里":{"docs":{},"一":{"docs":{},"样":{"docs":{},"的":{"docs":{},"原":{"docs":{},"始":{"docs":{},"字":{"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":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"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":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"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":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"函":{"docs":{},"数":{"docs":{},"正":{"docs":{},"确":{"docs":{},"的":{"docs":{},"显":{"docs":{},"示":{"docs":{},"了":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"容":{"docs":{},"器":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"同":{"docs":{},"创":{"docs":{},"建":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}},"是":{"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":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"版":{"docs":{},"本":{"docs":{},"基":{"docs":{},"本":{"docs":{},"上":{"docs":{},"和":{"docs":{},"非":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"版":{"docs":{},"本":{"docs":{},"相":{"docs":{},"同":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"版":{"docs":{},"本":{"docs":{},"的":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"为":{"docs":{},"t":{"docs":{},"代":{"docs":{},"替":{"docs":{},"了":{"docs":{},"实":{"docs":{},"际":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"这":{"docs":{},"种":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"包":{"docs":{},"含":{"docs":{},"在":{"docs":{},"一":{"docs":{},"对":{"docs":{},"尖":{"docs":{},"括":{"docs":{},"号":{"docs":{},"里":{"docs":{},"(":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"的":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"方":{"docs":{},"法":{"docs":{},"和":{"docs":{},"下":{"docs":{},"标":{"docs":{},"保":{"docs":{},"证":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"可":{"docs":{},"以":{"docs":{},"推":{"docs":{},"断":{"docs":{},"出":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"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":{},"何":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"当":{"docs":{},"作":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"1":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.007518796992481203}}},"2":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.005639097744360902}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0282021151586369},"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.012448132780082987},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.025089605734767026},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":2.3603238866396765},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.013363028953229399},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.05063291139240506},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.06741573033707865},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.005141388174807198},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.05656565656565657},"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.019867549668874173},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.011857707509881422},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.018796992481203006},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.01046337817638266},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.008771929824561403},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.008040201005025126},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.008928571428571428},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.012658227848101266}},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}},")":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036}}}}}}}},"”":{"docs":{},"的":{"docs":{},"意":{"docs":{},"思":{"docs":{},"是":{"docs":{},"“":{"docs":{},"可":{"docs":{},"以":{"docs":{},"存":{"docs":{},"储":{"docs":{},"任":{"docs":{},"意":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"值":{"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":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"隐":{"docs":{},"式":{"docs":{},"解":{"docs":{},"析":{"docs":{},"可":{"docs":{},"选":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"叫":{"docs":{},"做":{"docs":{},"t":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"作":{"docs":{},"用":{"docs":{},"是":{"docs":{},"将":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{},"转":{"docs":{},"换":{"docs":{},"成":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"1":{"2":{"3":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"可":{"docs":{},"以":{"docs":{},"被":{"docs":{},"转":{"docs":{},"换":{"docs":{},"成":{"docs":{},"数":{"docs":{},"字":{"1":{"2":{"3":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"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":{},"t":{"docs":{},"型":{"docs":{},",":{"docs":{},"值":{"docs":{},"是":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"键":{"docs":{},"值":{"docs":{},"对":{"docs":{},"。":{"docs":{},"他":{"docs":{},"们":{"docs":{},"对":{"docs":{},"应":{"docs":{},"a":{"docs":{},"i":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},"变":{"docs":{},"量":{"docs":{},"声":{"docs":{},"明":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"一":{"docs":{},"个":{"docs":{},"只":{"docs":{},"有":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"键":{"docs":{},"和":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"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":{},"个":{"docs":{},"初":{"docs":{},"始":{"docs":{},"数":{"docs":{},"据":{"docs":{},"项":{"docs":{},"的":{"docs":{},"a":{"docs":{},"i":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"变":{"docs":{},"量":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"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":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"当":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"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":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"后":{"docs":{},",":{"docs":{},"来":{"docs":{},"表":{"docs":{},"明":{"docs":{},"这":{"docs":{},"个":{"docs":{},"是":{"docs":{},"数":{"docs":{},"字":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"质":{"docs":{},"数":{"docs":{},"。":{"docs":{},"然":{"docs":{},"后":{"docs":{},"它":{"docs":{},"使":{"docs":{},"用":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"来":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"落":{"docs":{},"入":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"到":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"分":{"docs":{},"支":{"docs":{},"中":{"docs":{},"。":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"分":{"docs":{},"支":{"docs":{},"添":{"docs":{},"加":{"docs":{},"一":{"docs":{},"段":{"docs":{},"额":{"docs":{},"外":{"docs":{},"的":{"docs":{},"文":{"docs":{},"字":{"docs":{},"在":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"的":{"docs":{},"最":{"docs":{},"后":{"docs":{},",":{"docs":{},"至":{"docs":{},"此":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"可":{"docs":{},"以":{"docs":{},"理":{"docs":{},"解":{"docs":{},"为":{"docs":{},"“":{"docs":{},"一":{"docs":{},"个":{"docs":{},"没":{"docs":{},"有":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"返":{"docs":{},"回":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"你":{"docs":{},"绝":{"docs":{},"对":{"docs":{},"不":{"docs":{},"可":{"docs":{},"能":{"docs":{},"不":{"docs":{},"小":{"docs":{},"心":{"docs":{},"传":{"docs":{},"进":{"docs":{},"去":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}},"名":{"docs":{},"字":{"docs":{},"为":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"安":{"docs":{},"全":{"docs":{},"会":{"docs":{},"阻":{"docs":{},"止":{"docs":{},"你":{"docs":{},"不":{"docs":{},"小":{"docs":{},"心":{"docs":{},"传":{"docs":{},"入":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}},"s":{"docs":{},")":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.2564102564102564}}}}}}}}}}}}}},"t":{"docs":{},"f":{"docs":{},"-":{"8":{"docs":{},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{},"-":{"1":{"6":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.2564102564102564}}}}}}}}},"docs":{}},"docs":{}}}}}},"docs":{}}}}}}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},",":{"docs":{},"它":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"这":{"docs":{},"个":{"docs":{},"字":{"docs":{},"典":{"docs":{},"的":{"docs":{},"键":{"docs":{},"和":{"docs":{},"值":{"docs":{},"都":{"docs":{},"是":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"a":{"docs":{},"i":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}},"[":{"docs":{},"]":{"docs":{},"是":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}},"一":{"docs":{},"种":{"docs":{},"数":{"docs":{},"据":{"docs":{},"结":{"docs":{},"构":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"只":{"docs":{},"有":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}},"值":{"docs":{},"。":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"了":{"docs":{},"该":{"docs":{},"数":{"docs":{},"组":{"docs":{},"的":{"docs":{},"变":{"docs":{},"量":{"docs":{},"声":{"docs":{},"明":{"docs":{},"(":{"docs":{},"只":{"docs":{},"能":{"docs":{},"包":{"docs":{},"含":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"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":{},"是":{"docs":{},"允":{"docs":{},"许":{"docs":{},"用":{"docs":{},"两":{"docs":{},"个":{"docs":{},"初":{"docs":{},"始":{"docs":{},"项":{"docs":{},"来":{"docs":{},"构":{"docs":{},"造":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"左":{"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":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"中":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"然":{"docs":{},"后":{"docs":{},"将":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"多":{"docs":{},"的":{"docs":{},"填":{"docs":{},"充":{"docs":{},"(":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},")":{"docs":{},"字":{"docs":{},"符":{"docs":{},"填":{"docs":{},"充":{"docs":{},"到":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"左":{"docs":{},"边":{"docs":{},",":{"docs":{},"并":{"docs":{},"返":{"docs":{},"回":{"docs":{},"结":{"docs":{},"果":{"docs":{},"。":{"docs":{},"它":{"docs":{},"使":{"docs":{},"用":{"docs":{},"了":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}},"?":{"docs":{},"。":{"docs":{},"如":{"docs":{},"上":{"docs":{},"所":{"docs":{},"述":{"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":{},"t":{"docs":{},"r":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174}}}}}}},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}},"c":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}},"l":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.016917293233082706},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.010282776349614395},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.01098901098901099},"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.005917159763313609},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.016260162601626018},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.008620689655172414},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.005012531328320802},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.005979073243647235},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"u":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0034602076124567475},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}},"-":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013},"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.019867549668874173}},"属":{"docs":{},"性":{"docs":{},"值":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"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":{},"层":{"docs":{},"可":{"docs":{},"选":{"docs":{},"链":{"docs":{},",":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"?":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"?":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"的":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"类":{"docs":{},"型":{"docs":{},"也":{"docs":{},"是":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}},"a":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}},"r":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}},"e":{"docs":{},"p":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.007518796992481203}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.004219409282700422}},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.004219409282700422}},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813}}}}}}}},"和":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"。":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"函":{"docs":{},"数":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"比":{"docs":{},"输":{"docs":{},"入":{"docs":{},"值":{"docs":{},"大":{"docs":{},"一":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"函":{"docs":{},"数":{"docs":{},"返":{"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":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.005639097744360902}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.005639097744360902}}}}}}}}}}}},"类":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"s":{"docs":{},",":{"docs":{},"它":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"存":{"docs":{},"储":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"包":{"docs":{},"含":{"docs":{},"w":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002691272587466359}},"d":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013}}}}}}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"u":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}}},"e":{"docs":{},"d":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}},"h":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002306805074971165}}}},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.06504065040650407}},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}},"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}}}}}}},"添":{"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"来":{"docs":{},"描":{"docs":{},"述":{"docs":{},"扑":{"docs":{},"克":{"docs":{},"牌":{"docs":{},"的":{"docs":{},"四":{"docs":{},"种":{"docs":{},"花":{"docs":{},"色":{"docs":{},",":{"docs":{},"并":{"docs":{},"分":{"docs":{},"别":{"docs":{},"用":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}},"o":{"docs":{},"f":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}},"(":{"4":{"2":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}},"docs":{}},"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}},"n":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.012448132780082987},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}}}},"`":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.008298755186721992}}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.008298755186721992}}}}},"`":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}},"[":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}},"`":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.003015075376884422}},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}},"e":{"docs":{},"最":{"docs":{},"接":{"docs":{},"近":{"docs":{},"的":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}},"­":{"docs":{},".":{"docs":{},"­":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}},"[":{"docs":{},"­":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}},"b":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.008298755186721992},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.007905138339920948},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}},"i":{"docs":{},"n":{"docs":{},"g":{"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":{},"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":{},"写":{"docs":{},"属":{"docs":{},"性":{"docs":{},"重":{"docs":{},"写":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"和":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"重":{"docs":{},"写":{"docs":{},"属":{"docs":{},"性":{"docs":{},"观":{"docs":{},"察":{"docs":{},"器":{"docs":{},"(":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":5}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"变":{"docs":{},"成":{"docs":{},"父":{"docs":{},"类":{"docs":{},"(":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"超":{"docs":{},"类":{"docs":{},"(":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":10.005494505494505},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.29174443646805454},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}},"(":{"docs":{},"i":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.004484304932735426}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.016483516483516484}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}},"d":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}}}}}}},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},",":{"docs":{},"显":{"docs":{},"式":{"docs":{},"声":{"docs":{},"明":{"docs":{},"入":{"docs":{},"参":{"docs":{},"(":{"docs":{},"一":{"docs":{},"个":{"docs":{},"或":{"docs":{},"多":{"docs":{},"个":{"docs":{},")":{"docs":{},"和":{"docs":{},"返":{"docs":{},"回":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"与":{"docs":{},"实":{"docs":{},"例":{"docs":{},"方":{"docs":{},"法":{"docs":{},"不":{"docs":{},"同":{"docs":{},"的":{"docs":{},"是":{"docs":{},"下":{"docs":{},"标":{"docs":{},"可":{"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":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"和":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0027434842249657062}}}}}}}},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.003429355281207133}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.003429355281207133}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0034602076124567475},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"y":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"w":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036}}}}}}}}},"e":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.2582899556583767}}}}}},"e":{"docs":{},"d":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}}}},"n":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}},"k":{"docs":{},"e":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.010025062656641603}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.006265664160401002}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"是":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}},"遵":{"docs":{},"循":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0031620553359683794}}}}}}}},"y":{"docs":{},"r":{"docs":{},"u":{"docs":{},"p":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.008908685968819599}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"的":{"docs":{},"新":{"docs":{},"数":{"docs":{},"据":{"docs":{},"项":{"docs":{},"插":{"docs":{},"入":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"列":{"docs":{},"表":{"docs":{},"的":{"docs":{},"最":{"docs":{},"开":{"docs":{},"始":{"docs":{},"位":{"docs":{},"置":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"使":{"docs":{},"用":{"0":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.44040058622374206},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}},"r":{"docs":{},"c":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"/":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"/":{"docs":{},"i":{"docs":{},"o":{"docs":{},"s":{"docs":{},"/":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"/":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"/":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"/":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}},"docs":{}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"u":{"docs":{},"m":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}},"docs":{}}}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"_":{"docs":{},"q":{"docs":{},"r":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}},"docs":{}}}},"u":{"docs":{},"p":{"docs":{},"c":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}},"docs":{}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"v":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"k":{"docs":{},"i":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002306805074971165}}}}}}}}}},"u":{"0":{"0":{"0":{"1":{"docs":{},"f":{"4":{"9":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"2":{"6":{"6":{"5":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.008928571428571428},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"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_104":{"ref":"index.html#gitbook_104","tf":0.06666666666666667},"chapter1/01_swift.html#gitbook_105":{"ref":"chapter1/01_swift.html#gitbook_105","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter1/chapter1.html#gitbook_109":{"ref":"chapter1/chapter1.html#gitbook_109","tf":0.25},"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/09_Classes_and_Structures.html#gitbook_138":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_138","tf":0.5},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847},"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.005917159763313609},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202},"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417},"chapter2/chapter2.html#gitbook_168":{"ref":"chapter2/chapter2.html#gitbook_168","tf":0.3333333333333333},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099},"chapter3/01_About_the_Language_Reference.html#gitbook_171":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_171","tf":0.041666666666666664},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}},"r":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":1.0951898978214767},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.008928571428571428},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.007518796992481203}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}}}}},"拥":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"返":{"docs":{},"回":{"docs":{},"对":{"docs":{},"应":{"docs":{},"的":{"2":{"1":{"docs":{},"位":{"docs":{},"数":{"docs":{},"值":{"docs":{},",":{"docs":{},"用":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"3":{"2":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}},"docs":{}},"docs":{}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}},"是":{"2":{"1":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}},"docs":{}},"docs":{}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},")":{"docs":{},"和":{"docs":{},"变":{"docs":{},"体":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"体":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}},"标":{"docs":{},"签":{"docs":{},"联":{"docs":{},"合":{"docs":{},"(":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}},"-":{"docs":{},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"-":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"-":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.003429355281207133}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}},"w":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.010101010101010102},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.003015075376884422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}}}}},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.008960573476702509},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"c":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},",":{"docs":{},"其":{"docs":{},"中":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}},",":{"docs":{},"其":{"docs":{},"中":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"u":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}},"a":{"docs":{},"l":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.010282776349614395}},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}},"i":{"docs":{},"k":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.013245033112582781}}}},"r":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002306805074971165},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.4800351513154281}}}}}}},".":{"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}},"p":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.024896265560165973},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.005747126436781609},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.006622516556291391},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.2582899556583767},"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.006622516556291391}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"和":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},":":{"docs":{},")":{"docs":{},"函":{"docs":{},"数":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"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":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{},"的":{"docs":{},"字":{"docs":{},"典":{"docs":{},",":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"方":{"docs":{},"法":{"docs":{},"可":{"docs":{},"以":{"docs":{},"设":{"docs":{},"置":{"docs":{},"或":{"docs":{},"者":{"docs":{},"更":{"docs":{},"新":{"docs":{},"特":{"docs":{},"定":{"docs":{},"键":{"docs":{},"对":{"docs":{},"应":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"就":{"docs":{},"像":{"docs":{},"上":{"docs":{},"面":{"docs":{},"所":{"docs":{},"示":{"docs":{},"的":{"docs":{},"示":{"docs":{},"例":{"docs":{},",":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"-":{"docs":{},"a":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.006825938566552901}}}},"a":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}},"(":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"接":{"docs":{},"受":{"docs":{},"一":{"docs":{},"个":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"8":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"这":{"docs":{},"个":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"现":{"docs":{},"有":{"docs":{},"的":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"8":{"docs":{},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},"。":{"docs":{},"注":{"docs":{},"意":{"docs":{},",":{"docs":{},"你":{"docs":{},"并":{"docs":{},"不":{"docs":{},"能":{"docs":{},"传":{"docs":{},"入":{"docs":{},"任":{"docs":{},"意":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"只":{"docs":{},"能":{"docs":{},"传":{"docs":{},"入":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"进":{"docs":{},"行":{"docs":{},"相":{"docs":{},"加":{"docs":{},"。":{"docs":{},"目":{"docs":{},"标":{"docs":{},"常":{"docs":{},"量":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"被":{"docs":{},"推":{"docs":{},"测":{"docs":{},"为":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"它":{"docs":{},"是":{"docs":{},"两":{"docs":{},"个":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}},"docs":{}},"docs":{}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"3":{"2":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}},"docs":{}},"8":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.008960573476702509},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.006535947712418301}},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}},"i":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}},"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036}},",":{"docs":{},"除":{"docs":{},"非":{"docs":{},"你":{"docs":{},"真":{"docs":{},"的":{"docs":{},"需":{"docs":{},"要":{"docs":{},"存":{"docs":{},"储":{"docs":{},"一":{"docs":{},"个":{"docs":{},"和":{"docs":{},"当":{"docs":{},"前":{"docs":{},"平":{"docs":{},"台":{"docs":{},"原":{"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":{},"t":{"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":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"g":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}},"+":{"0":{"0":{"0":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}},"a":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}},"2":{"4":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}},"docs":{}},"docs":{},"a":{"8":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}},"docs":{},"a":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}},"b":{"2":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"docs":{},"b":{"5":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}},"docs":{}}},"docs":{}},"docs":{}}}}},"7":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"docs":{},"b":{"docs":{},"a":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}},"docs":{}},"docs":{}}}}},"docs":{},"c":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"docs":{},"b":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}},"docs":{}},"docs":{}}}}}},"c":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"docs":{},"d":{"6":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}},"docs":{}}},"docs":{}},"docs":{}}}}},"docs":{}},"d":{"8":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"docs":{},"f":{"6":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}},"docs":{}}},"docs":{}},"docs":{}}}}},"docs":{}},"f":{"8":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}},"docs":{}},"docs":{}}}}},"docs":{}}},"1":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"0":{"2":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}},"docs":{}},"docs":{}}}}},"docs":{}},"docs":{}},"3":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"0":{"3":{"6":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}},"docs":{}},"docs":{}},"docs":{}}}}},"docs":{}},"7":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"1":{"6":{"7":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}},"docs":{}},"docs":{}},"docs":{}}}}},"docs":{}},"docs":{}},"docs":{}},"1":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"1":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}},"docs":{}}}}},"docs":{}},"docs":{}},"docs":{}},"6":{"8":{"1":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"1":{"8":{"0":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}},"docs":{}},"docs":{}},"docs":{}}}}},"docs":{}},"docs":{}},"8":{"0":{"docs":{},"f":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"1":{"docs":{},"d":{"docs":{},"b":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}},"docs":{}}}}}},"docs":{}},"docs":{},"f":{"4":{"3":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}},"docs":{}},"9":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}},"docs":{}},"docs":{}},"docs":{}},"d":{"docs":{},"c":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"1":{"docs":{},"d":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}},"docs":{}}}}},"docs":{}}},"e":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"1":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}},"docs":{}}}}},"docs":{}},"docs":{}}},"2":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}},"docs":{}}}}},"docs":{}},"docs":{},"b":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"0":{"0":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}},"docs":{}},"docs":{}},"docs":{}}}}}},"2":{"docs":{},"a":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"0":{"2":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}},"docs":{}},"docs":{}},"docs":{}}}}}},"3":{"docs":{},"f":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"0":{"4":{"0":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}},"5":{"4":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}},"docs":{}},"6":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"0":{"6":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}},"docs":{}},"docs":{}},"docs":{}}}}},"docs":{}},"7":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"0":{"docs":{},"c":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}},"docs":{}},"docs":{}}}}},"docs":{}},"docs":{},"d":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"0":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}},"docs":{}},"docs":{}}}}},"docs":{}}},"1":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"1":{"8":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}},"docs":{}},"docs":{}},"docs":{}}}}},"docs":{}},"docs":{}},"4":{"6":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"4":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}},"docs":{}},"docs":{}}}}},"docs":{}},"docs":{}},"6":{"6":{"5":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}},"docs":{}},"docs":{}},"7":{"7":{"6":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"7":{"9":{"3":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}},"docs":{}},"docs":{}},"docs":{},"c":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"docs":{},"d":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}},"docs":{}}}}},"docs":{}},"docs":{}},"e":{"8":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}},"docs":{}}}}},"docs":{}},"docs":{}}},"3":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"3":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}},"docs":{}}}}},"docs":{}},"4":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"3":{"0":{"0":{"7":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}},"docs":{}},"2":{"1":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"3":{"0":{"2":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}},"docs":{}},"docs":{}},"docs":{}}}}},"docs":{}},"3":{"1":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"3":{"0":{"3":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}},"docs":{}},"docs":{}},"docs":{}}}}},"docs":{}},"4":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"d":{"7":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}},"docs":{}}}}}},"docs":{}},"docs":{}},"docs":{}},"4":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"4":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}},"docs":{}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"5":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"5":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}},"docs":{}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"6":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"6":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}},"docs":{}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"7":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"7":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}},"docs":{}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"8":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"8":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}},"docs":{}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"9":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"9":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}},"docs":{}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"d":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"d":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"8":{"3":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}},"docs":{}},"docs":{}},"a":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"a":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"b":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"b":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"c":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"c":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"e":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"e":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"f":{"9":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"f":{"docs":{},"d":{"3":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}},"docs":{}}}}}}},"docs":{}},"docs":{}},"docs":{},"d":{"4":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"f":{"docs":{},"d":{"docs":{},"c":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}}}}},"docs":{}},"docs":{},"f":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"f":{"docs":{},"e":{"1":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}},"docs":{}}}}}}},"docs":{}}},"e":{"2":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"f":{"docs":{},"e":{"2":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}},"docs":{}}}}}}},"docs":{}},"3":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"f":{"docs":{},"e":{"4":{"4":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}},"docs":{}},"docs":{}}}}}}},"docs":{}},"4":{"7":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}}}}},"docs":{}},"docs":{}}}},"s":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.004219409282700422},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.013438735177865613},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.005979073243647235},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.008073817762399077},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}},"s":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}}}},"t":{"docs":{},"f":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}}}}},"属":{"docs":{},"性":{"docs":{},"来":{"docs":{},"访":{"docs":{},"问":{"docs":{},"它":{"docs":{},"的":{"docs":{},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{},"-":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}},"docs":{}},"docs":{}}}}}}}}}}}}},"docs":{}},"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}}}}},"属":{"docs":{},"性":{"docs":{},"来":{"docs":{},"访":{"docs":{},"问":{"docs":{},"它":{"docs":{},"的":{"docs":{},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{},"-":{"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}},"docs":{}}}}}}}}}}}}},"docs":{},"-":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.009398496240601503}},"(":{"docs":{},"以":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}},"docs":{}},"docs":{}}}},"docs":{}},"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.011278195488721804}},"(":{"docs":{},"以":{"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}},"docs":{}}}},"docs":{}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"u":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.006825938566552901}}}}}}},"w":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}},"w":{"docs":{},"d":{"docs":{},"c":{"docs":{"index.html#gitbook_104":{"ref":"index.html#gitbook_104","tf":0.06666666666666667}}}}},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter1/01_swift.html#gitbook_105":{"ref":"chapter1/01_swift.html#gitbook_105","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.01969057665260197},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.015659955257270694},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.006060606060606061},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}},"k":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.260169654906497},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.003952569169960474},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0019223375624759708}}},"d":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}},"n":{"docs":{"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.011834319526627219}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}},"c":{"docs":{},"h":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}},"i":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002306805074971165}}},"r":{"docs":{},"m":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192}}}},"n":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}},"语":{"docs":{},"句":{"docs":{},"作":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"队":{"docs":{},"列":{"docs":{},"的":{"docs":{},"一":{"docs":{},"部":{"docs":{},"分":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"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":{},"以":{"docs":{},"及":{"docs":{},"(":{"docs":{},"或":{"docs":{},")":{"docs":{},"那":{"docs":{},"个":{"docs":{},"特":{"docs":{},"定":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"和":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},"可":{"docs":{},"以":{"docs":{},"是":{"docs":{},"相":{"docs":{},"同":{"docs":{},"的":{"docs":{},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"写":{"docs":{},"一":{"docs":{},"个":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},",":{"docs":{},"通":{"docs":{},"过":{"docs":{},"紧":{"docs":{},"随":{"docs":{},"放":{"docs":{},"置":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"一":{"docs":{},"部":{"docs":{},"分":{"docs":{},",":{"docs":{},"写":{"docs":{},"在":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}},"。":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"由":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}}}}}}},"中":{"docs":{},"的":{"docs":{},"要":{"docs":{},"求":{"docs":{},"用":{"docs":{},"于":{"docs":{},"指":{"docs":{},"明":{"docs":{},"该":{"docs":{},"类":{"docs":{},"型":{"docs":{},"形":{"docs":{},"参":{"docs":{},"继":{"docs":{},"承":{"docs":{},"自":{"docs":{},"某":{"docs":{},"个":{"docs":{},"类":{"docs":{},"或":{"docs":{},"遵":{"docs":{},"守":{"docs":{},"某":{"docs":{},"个":{"docs":{},"协":{"docs":{},"议":{"docs":{},"或":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"一":{"docs":{},"部":{"docs":{},"分":{"docs":{},"。":{"docs":{},"尽":{"docs":{},"管":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"有":{"docs":{},"助":{"docs":{},"于":{"docs":{},"表":{"docs":{},"达":{"docs":{},"类":{"docs":{},"型":{"docs":{},"形":{"docs":{},"参":{"docs":{},"上":{"docs":{},"的":{"docs":{},"简":{"docs":{},"单":{"docs":{},"约":{"docs":{},"束":{"docs":{},"(":{"docs":{},"如":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}},"­":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.024896265560165973}}}},"n":{"docs":{},"e":{"docs":{},"v":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.003952569169960474},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}}}}},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"o":{"docs":{},"-":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"条":{"docs":{},"件":{"docs":{},"语":{"docs":{},"句":{"docs":{},"i":{"docs":{},"f":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"不":{"docs":{},"存":{"docs":{},"在":{"docs":{},"隐":{"docs":{},"式":{"docs":{},"的":{"docs":{},"贯":{"docs":{},"穿":{"docs":{},"(":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":1.6666666666666665}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"循":{"docs":{},"环":{"docs":{},"体":{"docs":{},"中":{"docs":{},"调":{"docs":{},"用":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}},"和":{"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":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"循":{"docs":{},"环":{"docs":{},"体":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"标":{"docs":{},"签":{"docs":{},"名":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"条":{"docs":{},"件":{"docs":{},"判":{"docs":{},"断":{"docs":{},"语":{"docs":{},"句":{"docs":{},"是":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}},"语":{"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":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.008547008547008548}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.005698005698005698}}}}}}}}},"t":{"docs":{},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.004464285714285714}}}}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.005639097744360902},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}},"=":{"docs":{},"\"":{"1":{"6":{"9":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}},"docs":{}},"docs":{}},"2":{"4":{"3":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}},"docs":{}},"5":{"2":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}},"docs":{}},"8":{"8":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013}}},"9":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}},"docs":{}},"docs":{}},"3":{"8":{"8":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}},"docs":{}},"docs":{}},"docs":{}}}}}},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}},"的":{"docs":{},"实":{"docs":{},"际":{"docs":{},"例":{"docs":{},"子":{"docs":{},",":{"docs":{},"其":{"docs":{},"中":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"或":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"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":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"和":{"docs":{},"重":{"docs":{},"写":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"观":{"docs":{},"察":{"docs":{},"器":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"想":{"docs":{},"观":{"docs":{},"察":{"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":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{},"那":{"docs":{},"么":{"docs":{},"你":{"docs":{},"在":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}},"监":{"docs":{},"视":{"docs":{},"器":{"docs":{},"会":{"docs":{},"将":{"docs":{},"新":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"值":{"docs":{},"作":{"docs":{},"为":{"docs":{},"固":{"docs":{},"定":{"docs":{},"参":{"docs":{},"数":{"docs":{},"传":{"docs":{},"入":{"docs":{},",":{"docs":{},"在":{"docs":{},"w":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"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":{},"名":{"docs":{},"称":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"将":{"docs":{},"表":{"docs":{},"示":{"docs":{},"新":{"docs":{},"值":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"为":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"-":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}}}}}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002306805074971165}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0019223375624759708}}}}}}}}}}}},"d":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.28671931083991387},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.008438818565400843}},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"-":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}}}}}},"h":{"docs":{},"h":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"y":{"docs":{},"b":{"docs":{},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"a":{"docs":{},"y":{"docs":{},"(":{"docs":{},"b":{"docs":{},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"a":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"b":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"的":{"docs":{},"形":{"docs":{},"参":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"为":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.005625879043600563}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.4679292185915677},"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"i":{"docs":{},"n":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.8747066055661116},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767}}}}}},"n":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.005917159763313609}}}}}}}}}}}}}},"e":{"docs":{},"b":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.005639097744360902},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.006711409395973154}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.005376344086021506}},"e":{"docs":{},"变":{"docs":{},"量":{"docs":{},"添":{"docs":{},"加":{"docs":{},"了":{"docs":{},"类":{"docs":{},"型":{"docs":{},"标":{"docs":{},"注":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"这":{"docs":{},"个":{"docs":{},"变":{"docs":{},"量":{"docs":{},"可":{"docs":{},"以":{"docs":{},"存":{"docs":{},"储":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}}},"'":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}},"a":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.010128913443830571}}},"k":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.005025125628140704},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"或":{"docs":{},"者":{"docs":{},"u":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"和":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"引":{"docs":{},"用":{"docs":{},"(":{"docs":{},"如":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"或":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.006825938566552901}}}}},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0019223375624759708}}}}},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}},"a":{"docs":{},"p":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter1/01_swift.html#gitbook_105":{"ref":"chapter1/01_swift.html#gitbook_105","tf":0.023809523809523808},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}},"为":{"docs":{},"了":{"docs":{},"能":{"docs":{},"帮":{"docs":{},"助":{"docs":{},"你":{"docs":{},"管":{"docs":{},"理":{"docs":{},"内":{"docs":{},"存":{"docs":{},",":{"docs":{},"需":{"docs":{},"要":{"docs":{},"更":{"docs":{},"多":{"docs":{},"的":{"docs":{},"关":{"docs":{},"于":{"docs":{},"你":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"之":{"docs":{},"间":{"docs":{},"关":{"docs":{},"系":{"docs":{},"的":{"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":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"会":{"docs":{},"分":{"docs":{},"配":{"docs":{},"一":{"docs":{},"大":{"docs":{},"块":{"docs":{},"内":{"docs":{},"存":{"docs":{},"用":{"docs":{},"来":{"docs":{},"储":{"docs":{},"存":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"信":{"docs":{},"息":{"docs":{},"。":{"docs":{},"内":{"docs":{},"存":{"docs":{},"中":{"docs":{},"会":{"docs":{},"包":{"docs":{},"含":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"这":{"docs":{},"个":{"docs":{},"实":{"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":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"在":{"docs":{},"引":{"docs":{},"用":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"被":{"docs":{},"销":{"docs":{},"毁":{"docs":{},"后":{"docs":{},"自":{"docs":{},"动":{"docs":{},"将":{"docs":{},"其":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}},"第":{"docs":{},"三":{"docs":{},"个":{"docs":{},",":{"docs":{},"也":{"docs":{},"即":{"docs":{},"最":{"docs":{},"后":{"docs":{},"一":{"docs":{},"个":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"被":{"docs":{},"断":{"docs":{},"开":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},",":{"docs":{},"销":{"docs":{},"毁":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"这":{"docs":{},"也":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"你":{"docs":{},"不":{"docs":{},"再":{"docs":{},"使":{"docs":{},"用":{"docs":{},"这":{"docs":{},"个":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"跟":{"docs":{},"踪":{"docs":{},"你":{"docs":{},"所":{"docs":{},"新":{"docs":{},"创":{"docs":{},"建":{"docs":{},"的":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"引":{"docs":{},"用":{"docs":{},"数":{"docs":{},"量":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"会":{"docs":{},"在":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"计":{"docs":{},"算":{"docs":{},"每":{"docs":{},"一":{"docs":{},"个":{"docs":{},"实":{"docs":{},"例":{"docs":{},"正":{"docs":{},"在":{"docs":{},"被":{"docs":{},"多":{"docs":{},"少":{"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":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"无":{"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":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"变":{"docs":{},"量":{"docs":{},"不":{"docs":{},"允":{"docs":{},"许":{"docs":{},"被":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"销":{"docs":{},"毁":{"docs":{},"被":{"docs":{},"引":{"docs":{},"用":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"这":{"docs":{},"种":{"docs":{},"行":{"docs":{},"为":{"docs":{},"阻":{"docs":{},"止":{"docs":{},"了":{"docs":{},"引":{"docs":{},"用":{"docs":{},"变":{"docs":{},"为":{"docs":{},"循":{"docs":{},"环":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"。":{"docs":{},"声":{"docs":{},"明":{"docs":{},"属":{"docs":{},"性":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"时":{"docs":{},",":{"docs":{},"在":{"docs":{},"前":{"docs":{},"面":{"docs":{},"加":{"docs":{},"上":{"docs":{},"w":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.010025062656641603},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}},"r":{"docs":{},"a":{"docs":{},"y":{"3":{"docs":{},"d":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}},"[":{"0":{"docs":{},"]":{"docs":{},"是":{"docs":{},"指":{"docs":{},"[":{"docs":{},"[":{"1":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}},"docs":{}}}}}}},"docs":{}}}},"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"这":{"docs":{},"样":{"docs":{},"的":{"docs":{},"形":{"docs":{},"式":{"docs":{},",":{"docs":{},"其":{"docs":{},"中":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}},"替":{"docs":{},"代":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"形":{"docs":{},"参":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"a":{"docs":{},"i":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},".":{"docs":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}},"类":{"docs":{},"型":{"docs":{},"还":{"docs":{},"提":{"docs":{},"供":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"以":{"docs":{},"创":{"docs":{},"建":{"docs":{},"特":{"docs":{},"定":{"docs":{},"大":{"docs":{},"小":{"docs":{},"并":{"docs":{},"且":{"docs":{},"所":{"docs":{},"有":{"docs":{},"数":{"docs":{},"据":{"docs":{},"都":{"docs":{},"被":{"docs":{},"默":{"docs":{},"认":{"docs":{},"的":{"docs":{},"构":{"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":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},"和":{"docs":{},"适":{"docs":{},"当":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},",":{"docs":{},"字":{"docs":{},"典":{"docs":{},"(":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},")":{"docs":{},",":{"docs":{},"范":{"docs":{},"围":{"docs":{},"(":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}},"性":{"docs":{},"质":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"存":{"docs":{},"储":{"docs":{},"值":{"docs":{},"。":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"提":{"docs":{},"供":{"docs":{},"两":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},":":{"docs":{},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"和":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},",":{"docs":{},"从":{"docs":{},"栈":{"docs":{},"中":{"docs":{},"压":{"docs":{},"进":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"docs":{},"和":{"docs":{},"移":{"docs":{},"除":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"docs":{},"。":{"docs":{},"这":{"docs":{},"些":{"docs":{},"方":{"docs":{},"法":{"docs":{},"标":{"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":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.008771929824561403},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"a":{"docs":{},"l":{"docs":{},"-":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00411522633744856}},"s":{"docs":{},"­":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}},"­":{"docs":{},",":{"docs":{},"­":{"docs":{},"(":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"-":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"<":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.020553359683794466},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.004219409282700422},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.4375915974596971},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.012060301507537688},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.015503875968992248},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}},"y":{"docs":{},"r":{"docs":{},"i":{"docs":{},"o":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002691272587466359}},"i":{"docs":{},"c":{"docs":{},"m":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"1":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}},"3":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}},"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.008695652173913044}}}}},"/":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}},"docs":{}},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}}},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"s":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}},"docs":{}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}},"o":{"docs":{},"r":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}},"docs":{}}}},"x":{"docs":{},"o":{"docs":{},"r":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/01_swift.html#gitbook_105":{"ref":"chapter1/01_swift.html#gitbook_105","tf":0.023809523809523808},"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}},"i":{"docs":{},"c":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.012448132780082987}},"的":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"观":{"docs":{},"察":{"docs":{},"器":{"docs":{},"就":{"docs":{},"会":{"docs":{},"自":{"docs":{},"动":{"docs":{},"地":{"docs":{},"设":{"docs":{},"置":{"docs":{},"g":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"为":{"docs":{},"新":{"docs":{},"的":{"docs":{},"速":{"docs":{},"度":{"docs":{},"选":{"docs":{},"择":{"docs":{},"一":{"docs":{},"个":{"docs":{},"合":{"docs":{},"适":{"docs":{},"的":{"docs":{},"挡":{"docs":{},"位":{"docs":{},"。":{"docs":{},"具":{"docs":{},"体":{"docs":{},"来":{"docs":{},"说":{"docs":{},"就":{"docs":{},"是":{"docs":{},",":{"docs":{},"属":{"docs":{},"性":{"docs":{},"观":{"docs":{},"察":{"docs":{},"器":{"docs":{},"将":{"docs":{},"新":{"docs":{},"的":{"docs":{},"速":{"docs":{},"度":{"docs":{},"值":{"docs":{},"除":{"docs":{},"以":{"1":{"0":{"docs":{},",":{"docs":{},"然":{"docs":{},"后":{"docs":{},"向":{"docs":{},"下":{"docs":{},"取":{"docs":{},"得":{"docs":{},"最":{"docs":{},"接":{"docs":{},"近":{"docs":{},"的":{"docs":{},"整":{"docs":{},"数":{"docs":{},"值":{"docs":{},",":{"docs":{},"最":{"docs":{},"后":{"docs":{},"加":{"1":{"docs":{},"来":{"docs":{},"得":{"docs":{},"到":{"docs":{},"档":{"docs":{},"位":{"docs":{},"g":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"例":{"docs":{},"如":{"docs":{},",":{"docs":{},"速":{"docs":{},"度":{"docs":{},"为":{"1":{"0":{"docs":{},".":{"0":{"docs":{},"时":{"docs":{},",":{"docs":{},"挡":{"docs":{},"位":{"docs":{},"为":{"1":{"docs":{},";":{"docs":{},"速":{"docs":{},"度":{"docs":{},"为":{"3":{"5":{"docs":{},".":{"0":{"docs":{},"时":{"docs":{},",":{"docs":{},"挡":{"docs":{},"位":{"docs":{},"为":{"4":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}},"docs":{}}}}}}},"docs":{}}},"docs":{}},"docs":{}}}}}},"docs":{}}}}}}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"它":{"docs":{},"是":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"的":{"docs":{},"子":{"docs":{},"类":{"docs":{},"。":{"docs":{},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"表":{"docs":{},"示":{"docs":{},"自":{"docs":{},"动":{"docs":{},"挡":{"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":{},"i":{"docs":{},"c":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"也":{"docs":{},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"定":{"docs":{},"制":{"docs":{},"的":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.02197802197802198},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}},"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":{},"表":{"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":{},"_":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},"来":{"docs":{},"定":{"docs":{},"义":{"docs":{},"一":{"docs":{},"个":{"docs":{},"很":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"o":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}},"e":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}},"被":{"docs":{},"定":{"docs":{},"义":{"docs":{},"为":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"别":{"docs":{},"名":{"docs":{},"。":{"docs":{},"因":{"docs":{},"为":{"docs":{},"它":{"docs":{},"是":{"docs":{},"别":{"docs":{},"名":{"docs":{},",":{"docs":{},"a":{"docs":{},"u":{"docs":{},"d":{"docs":{},"i":{"docs":{},"o":{"docs":{},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"实":{"docs":{},"际":{"docs":{},"上":{"docs":{},"是":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"会":{"docs":{},"给":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"u":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"赋":{"docs":{},"一":{"docs":{},"个":{"docs":{},"初":{"docs":{},"值":{"0":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.009398496240601503}},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013}}}}}}}}}}}}}}}}},"也":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"表":{"docs":{},"示":{"docs":{},"立":{"docs":{},"体":{"docs":{},"声":{"docs":{},"系":{"docs":{},"统":{"docs":{},"的":{"docs":{},"两":{"docs":{},"个":{"docs":{},"声":{"docs":{},"道":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{},"和":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}},"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}},".":{"docs":{},".":{"docs":{},"b":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0044742729306487695}}}},"b":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0044742729306487695}}}}},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.024390243902439025}},"e":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}},"t":{"1":{"docs":{},"s":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.005639097744360902}}}}}}}}}}}}},"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.02443609022556391}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0031620553359683794},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.005376344086021506}},"e":{"docs":{},"r":{"docs":{},"常":{"docs":{},"量":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"i":{"docs":{},"f":{"docs":{},"语":{"docs":{},"句":{"docs":{},"的":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"分":{"docs":{},"支":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{},"。":{"docs":{},"它":{"docs":{},"已":{"docs":{},"经":{"docs":{},"被":{"docs":{},"可":{"docs":{},"选":{"docs":{},"包":{"docs":{},"含":{"docs":{},"的":{"docs":{},"值":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"过":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"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":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0044742729306487695},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0031620553359683794},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"h":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}},"d":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.005639097744360902},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767}},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002306805074971165},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}},"o":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813}},"s":{"docs":{},"(":{"docs":{},"a":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}},"和":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"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":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{},"y":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"。":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"都":{"docs":{},"传":{"docs":{},"入":{"docs":{},"两":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"(":{"4":{"docs":{},")":{"docs":{},"(":{"5":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.005847953216374269}}},"docs":{}}}},"docs":{},"a":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.005847953216374269}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"b":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.023178807947019868}},"。":{"docs":{},"它":{"docs":{},"有":{"docs":{},"三":{"docs":{},"个":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"属":{"docs":{},"性":{"docs":{},"他":{"docs":{},"们":{"docs":{},"额":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"?":{"docs":{},"。":{"docs":{},"前":{"docs":{},"面":{"docs":{},"两":{"docs":{},"个":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"属":{"docs":{},"性":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},"时":{"docs":{},"的":{"docs":{},"使":{"docs":{},"用":{"docs":{},"(":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},")":{"docs":{},"。":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"你":{"docs":{},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"它":{"docs":{},"获":{"docs":{},"取":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"中":{"docs":{},"的":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}},"还":{"docs":{},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"它":{"docs":{},"的":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"类":{"docs":{},"型":{"docs":{},"为":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"?":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"检":{"docs":{},"查":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"和":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"有":{"docs":{},"值":{"docs":{},"则":{"docs":{},"将":{"docs":{},"其":{"docs":{},"返":{"docs":{},"回":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"如":{"docs":{},"果":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"设":{"docs":{},"定":{"docs":{},"一":{"docs":{},"个":{"docs":{},"实":{"docs":{},"例":{"docs":{},"来":{"docs":{},"作":{"docs":{},"为":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"并":{"docs":{},"为":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.008842752787389465}}}}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.007050528789659225}}}}}},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.003015075376884422}},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.008426966292134831},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.007712082262210797},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.006265664160401002}},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}},"变":{"docs":{},"量":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"实":{"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":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"或":{"docs":{},"者":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"来":{"docs":{},"声":{"docs":{},"明":{"docs":{},"在":{"docs":{},"嵌":{"docs":{},"入":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"每":{"docs":{},"次":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"。":{"docs":{},"默":{"docs":{},"认":{"docs":{},"地":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"只":{"docs":{},"把":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"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":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.006920415224913495},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.007035175879396985},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},";":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.013422818791946308},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}}},")":{"docs":{},"和":{"docs":{},"按":{"docs":{},"位":{"docs":{},"右":{"docs":{},"移":{"docs":{},"就":{"docs":{},"可":{"docs":{},"以":{"docs":{},"从":{"docs":{},"这":{"docs":{},"个":{"docs":{},"颜":{"docs":{},"色":{"docs":{},"值":{"docs":{},"中":{"docs":{},"解":{"docs":{},"析":{"docs":{},"出":{"docs":{},"红":{"docs":{},"(":{"docs":{},"c":{"docs":{},"c":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}}}}}}}}}}}}}}}}}}},"­":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.005747126436781609}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.005012531328320802}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"这":{"docs":{},"样":{"docs":{},"的":{"docs":{},"格":{"docs":{},"式":{"docs":{},"进":{"docs":{},"行":{"docs":{},"组":{"docs":{},"合":{"docs":{},",":{"docs":{},"称":{"docs":{},"为":{"docs":{},"协":{"docs":{},"议":{"docs":{},"合":{"docs":{},"成":{"docs":{},"(":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013}}}}}}},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0066815144766146995}}}}}}}}}}},"w":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013}}}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}},"[":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}},"中":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"2":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}},"docs":{}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.007032348804500703},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.01195814648729447}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.004484304932735426}}}}},"v":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}},"n":{"docs":{},"y":{"docs":{},"m":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},"[":{"1":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.009486166007905139},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.8333333333333333}}}}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"代":{"docs":{},"表":{"docs":{},"任":{"docs":{},"何":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"表":{"docs":{},"示":{"docs":{},"任":{"docs":{},"何":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"除":{"docs":{},"了":{"docs":{},"方":{"docs":{},"法":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"i":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}},"a":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013}}}}},"(":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}},"n":{"docs":{},"a":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0044742729306487695}}},"o":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}},"s":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"1":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}},"2":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}},"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}},"d":{"docs":{},"/":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174}}}}}}},"p":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.004700352526439483},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.013363028953229399}},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.01818181818181818},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}}},"u":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.004484304932735426}}}}}}},"方":{"docs":{},"法":{"docs":{},"添":{"docs":{},"加":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}},"s":{"docs":{},",":{"docs":{},"它":{"docs":{},"一":{"docs":{},"般":{"docs":{},"接":{"docs":{},"收":{"docs":{},"一":{"docs":{},"个":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"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":{},"o":{"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":{},"仅":{"docs":{},"从":{"docs":{},"你":{"docs":{},"知":{"docs":{},"道":{"docs":{},"的":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.004454342984409799}}},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.022222222222222223},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00404040404040404}}}}}}},"实":{"docs":{},"例":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"叫":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{},"类":{"docs":{},"型":{"docs":{},"为":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"并":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},"的":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"属":{"docs":{},"性":{"docs":{},"。":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"来":{"docs":{},"自":{"docs":{},"于":{"docs":{},"变":{"docs":{},"量":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"7":{"3":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"断":{"docs":{},"开":{"docs":{},"这":{"docs":{},"个":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"再":{"docs":{},"也":{"docs":{},"没":{"docs":{},"有":{"docs":{},"指":{"docs":{},"向":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.007168458781362007},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.007518796992481203}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813}}}}}},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"(":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"来":{"docs":{},"写":{"docs":{},"一":{"docs":{},"个":{"docs":{},"断":{"docs":{},"言":{"docs":{},"。":{"docs":{},"给":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"函":{"docs":{},"数":{"docs":{},"传":{"docs":{},"入":{"docs":{},"一":{"docs":{},"个":{"docs":{},"结":{"docs":{},"果":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"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":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}},"e":{"docs":{},"d":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.005376344086021506}}}}}}}}},"i":{"docs":{},"g":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}},"n":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.004454342984409799},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.007304882737408689},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.3007896625987078}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"­":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.006825938566552901},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.48426429395287524},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},")":{"docs":{},"—":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}}}},"i":{"docs":{},"v":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"、":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"、":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"、":{"docs":{},"i":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"、":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"、":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{},"、":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"、":{"docs":{},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"、":{"docs":{},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"、":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"、":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"、":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"、":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"、":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"、":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"、":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"、":{"docs":{},"u":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"、":{"docs":{},"u":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{},"e":{"docs":{},")":{"docs":{},"、":{"docs":{},"u":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{},"e":{"docs":{},")":{"docs":{},"、":{"docs":{},"w":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"、":{"docs":{},"w":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"i":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.010238907849829351}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"的":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"类":{"docs":{},"型":{"docs":{},"被":{"docs":{},"定":{"docs":{},"义":{"docs":{},"为":{"docs":{},"字":{"docs":{},"符":{"docs":{},"型":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00404040404040404}},"声":{"docs":{},"明":{"docs":{},"为":{"docs":{},"l":{"docs":{},"a":{"docs":{},"z":{"docs":{},"y":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"只":{"docs":{},"有":{"docs":{},"当":{"docs":{},"元":{"docs":{},"素":{"docs":{},"确":{"docs":{},"实":{"docs":{},"需":{"docs":{},"要":{"docs":{},"处":{"docs":{},"理":{"docs":{},"为":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"输":{"docs":{},"出":{"docs":{},"的":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"时":{"docs":{},",":{"docs":{},"才":{"docs":{},"需":{"docs":{},"要":{"docs":{},"使":{"docs":{},"用":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"。":{"docs":{},"也":{"docs":{},"就":{"docs":{},"是":{"docs":{},"说":{"docs":{},",":{"docs":{},"在":{"docs":{},"默":{"docs":{},"认":{"docs":{},"的":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"中":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"只":{"docs":{},"有":{"docs":{},"当":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"完":{"docs":{},"成":{"docs":{},"以":{"docs":{},"及":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"确":{"docs":{},"实":{"docs":{},"存":{"docs":{},"在":{"docs":{},"后":{"docs":{},",":{"docs":{},"才":{"docs":{},"能":{"docs":{},"访":{"docs":{},"问":{"docs":{},"l":{"docs":{},"a":{"docs":{},"z":{"docs":{},"i":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"属":{"docs":{},"性":{"docs":{},"。":{"docs":{},"然":{"docs":{},"而":{"docs":{},",":{"docs":{},"由":{"docs":{},"于":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"是":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"实":{"docs":{},"例":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"想":{"docs":{},"改":{"docs":{},"变":{"docs":{},"特":{"docs":{},"定":{"docs":{},"元":{"docs":{},"素":{"docs":{},"的":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"持":{"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":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"(":{"docs":{},"引":{"docs":{},"用":{"docs":{},"了":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"和":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},")":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"占":{"docs":{},"有":{"docs":{},"了":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},",":{"docs":{},"这":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"又":{"docs":{},"反":{"docs":{},"过":{"docs":{},"来":{"docs":{},"持":{"docs":{},"有":{"docs":{},"了":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"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":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"这":{"docs":{},"个":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"代":{"docs":{},"表":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"标":{"docs":{},"签":{"docs":{},"的":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"值":{"docs":{},"存":{"docs":{},"在":{"docs":{},",":{"docs":{},"该":{"docs":{},"标":{"docs":{},"签":{"docs":{},"就":{"docs":{},"包":{"docs":{},"含":{"docs":{},"可":{"docs":{},"选":{"docs":{},"值":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},";":{"docs":{},"如":{"docs":{},"果":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"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":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"是":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"下":{"docs":{},"转":{"docs":{},"并":{"docs":{},"解":{"docs":{},"包":{"docs":{},"到":{"docs":{},"不":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"p":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}},"?":{"docs":{},")":{"docs":{},"。":{"docs":{},"可":{"docs":{},"选":{"docs":{},"形":{"docs":{},"式":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"检":{"docs":{},"查":{"docs":{},"总":{"docs":{},"是":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"值":{"docs":{},"(":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}}}}}},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"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":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.006265664160401002}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}}}}}}}}}}}},"­":{"docs":{},"?":{"docs":{},"(":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},")":{"docs":{},"­":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}},"、":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"、":{"docs":{},"i":{"docs":{},"s":{"docs":{},"、":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"、":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"、":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"、":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"、":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"、":{"docs":{},"_":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"_":{"docs":{},"_":{"docs":{},"、":{"docs":{},"_":{"docs":{},"_":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"_":{"docs":{},"、":{"docs":{},"_":{"docs":{},"_":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"_":{"docs":{},"、":{"docs":{},"_":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"_":{"docs":{},"_":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.008438818565400843},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}},"模":{"docs":{},"式":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"这":{"docs":{},"个":{"docs":{},"值":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"在":{"docs":{},"运":{"docs":{},"行":{"docs":{},"时":{"docs":{},"(":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},"和":{"docs":{},"a":{"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":{},"的":{"docs":{},"。":{"docs":{},"一":{"docs":{},"旦":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"成":{"docs":{},"功":{"docs":{},",":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"的":{"docs":{},"值":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"被":{"docs":{},"转":{"docs":{},"换":{"docs":{},"成":{"docs":{},"a":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.035634743875278395}},"'":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.004454342984409799}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.011135857461024499}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.017817371937639197}}}}},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}},"[":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.004454342984409799}}}}},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}},"l":{"docs":{},"h":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.004454342984409799}}}}}}},"字":{"docs":{},"典":{"docs":{},"使":{"docs":{},"用":{"docs":{},"字":{"docs":{},"典":{"docs":{},"字":{"docs":{},"面":{"docs":{},"语":{"docs":{},"句":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},",":{"docs":{},"包":{"docs":{},"含":{"docs":{},"两":{"docs":{},"个":{"docs":{},"键":{"docs":{},"值":{"docs":{},"对":{"docs":{},"。":{"docs":{},"第":{"docs":{},"一":{"docs":{},"对":{"docs":{},"的":{"docs":{},"键":{"docs":{},"是":{"docs":{},"t":{"docs":{},"y":{"docs":{},"o":{"docs":{},",":{"docs":{},"值":{"docs":{},"是":{"docs":{},"t":{"docs":{},"o":{"docs":{},"k":{"docs":{},"y":{"docs":{},"o":{"docs":{},"。":{"docs":{},"第":{"docs":{},"二":{"docs":{},"对":{"docs":{},"的":{"docs":{},"键":{"docs":{},"是":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},",":{"docs":{},"值":{"docs":{},"是":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"被":{"docs":{},"声":{"docs":{},"明":{"docs":{},"为":{"docs":{},"变":{"docs":{},"量":{"docs":{},"(":{"docs":{},"用":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},")":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"常":{"docs":{},"量":{"docs":{},"(":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"为":{"docs":{},"一":{"docs":{},"种":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002306805074971165},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.054945054945054944},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0205761316872428}},"e":{"docs":{},"-":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"e":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.02197802197802198},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}},"s":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}},"[":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.005847953216374269}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0056179775280898875},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0044742729306487695},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.005847953216374269}}}},"i":{"docs":{},"k":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}},"g":{"docs":{},"n":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"(":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}},"函":{"docs":{},"数":{"docs":{},"将":{"docs":{},"参":{"docs":{},"数":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"定":{"docs":{},"义":{"docs":{},"为":{"docs":{},"变":{"docs":{},"量":{"docs":{},"参":{"docs":{},"数":{"docs":{},"。":{"docs":{},"这":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"右":{"docs":{},"对":{"docs":{},"齐":{"docs":{},"输":{"docs":{},"入":{"docs":{},"的":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"到":{"docs":{},"一":{"docs":{},"个":{"docs":{},"长":{"docs":{},"的":{"docs":{},"输":{"docs":{},"出":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"中":{"docs":{},"。":{"docs":{},"左":{"docs":{},"侧":{"docs":{},"空":{"docs":{},"余":{"docs":{},"的":{"docs":{},"地":{"docs":{},"方":{"docs":{},"用":{"docs":{},"指":{"docs":{},"定":{"docs":{},"的":{"docs":{},"填":{"docs":{},"充":{"docs":{},"字":{"docs":{},"符":{"docs":{},"填":{"docs":{},"充":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"被":{"docs":{},"转":{"docs":{},"换":{"docs":{},"成":{"docs":{},"了":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"-":{"docs":{},"-":{"docs":{},"-":{"docs":{},"-":{"docs":{},"-":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}},"s":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}},"e":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848}}}}},"s":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0056179775280898875}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0044742729306487695}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}}},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}},"=":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.006711409395973154}}}}}}}},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.005979073243647235}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}},"的":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"检":{"docs":{},"查":{"docs":{},"是":{"docs":{},"否":{"docs":{},"两":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"单":{"docs":{},"例":{"docs":{},"包":{"docs":{},"含":{"docs":{},"具":{"docs":{},"有":{"docs":{},"相":{"docs":{},"同":{"docs":{},"顺":{"docs":{},"序":{"docs":{},"的":{"docs":{},"相":{"docs":{},"同":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"到":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},",":{"docs":{},"那":{"docs":{},"么":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"的":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"首":{"docs":{},"先":{"docs":{},"检":{"docs":{},"查":{"docs":{},"两":{"docs":{},"个":{"docs":{},"容":{"docs":{},"器":{"docs":{},"是":{"docs":{},"否":{"docs":{},"拥":{"docs":{},"有":{"docs":{},"同":{"docs":{},"样":{"docs":{},"数":{"docs":{},"目":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"他":{"docs":{},"们":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"数":{"docs":{},"目":{"docs":{},"不":{"docs":{},"同":{"docs":{},",":{"docs":{},"没":{"docs":{},"有":{"docs":{},"办":{"docs":{},"法":{"docs":{},"进":{"docs":{},"行":{"docs":{},"匹":{"docs":{},"配":{"docs":{},",":{"docs":{},"函":{"docs":{},"数":{"docs":{},"就":{"docs":{},"会":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"w":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0031620553359683794},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813}}}}}}}}},"b":{"docs":{},"c":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"g":{"docs":{},"h":{"docs":{},"i":{"docs":{},"j":{"docs":{},"k":{"docs":{},"l":{"docs":{},"m":{"docs":{},"n":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.006825938566552901}}}}}}}}}}}}}}}},"o":{"docs":{},"v":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002306805074971165}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}}}},",":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}},"+":{"docs":{},"+":{"docs":{},".":{"docs":{},"b":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}},"b":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}},"c":{"1":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.004484304932735426}},".":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.005979073243647235}}}}}}}}}},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"同":{"docs":{},"样":{"docs":{},"是":{"docs":{},"c":{"2":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}},"docs":{}}}}},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}},"2":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.004484304932735426}},".":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174}}}}}}}}}},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}},"docs":{"chapter1/01_swift.html#gitbook_105":{"ref":"chapter1/01_swift.html#gitbook_105","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.017921146953405017},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0055248618784530384},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.010238907849829351},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.005639097744360902},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.024608501118568233},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002691272587466359},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.007035175879396985},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"a":{"docs":{"chapter1/01_swift.html#gitbook_105":{"ref":"chapter1/01_swift.html#gitbook_105","tf":0.07142857142857142},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.013157894736842105},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}},"的":{"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":{"chapter1/01_swift.html#gitbook_105":{"ref":"chapter1/01_swift.html#gitbook_105","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"里":{"docs":{},"的":{"docs":{},"n":{"docs":{},"s":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"函":{"docs":{},"数":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/01_swift.html#gitbook_105":{"ref":"chapter1/01_swift.html#gitbook_105","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.2582899556583767},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.004454342984409799},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.005625879043600563},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.017994858611825194},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.006265664160401002},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.004484304932735426},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.02313624678663239},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0037593984962406013}},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"(":{"2":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}},"5":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.005141388174807198}}},"docs":{}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}}}}}}}}}}}},"'":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.007712082262210797}}},"的":{"docs":{},"替":{"docs":{},"换":{"docs":{},"版":{"docs":{},"本":{"docs":{},"(":{"docs":{},"它":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"更":{"docs":{},"复":{"docs":{},"杂":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"i":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"这":{"docs":{},"个":{"docs":{},"类":{"docs":{},"还":{"docs":{},"声":{"docs":{},"明":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"变":{"docs":{},"属":{"docs":{},"性":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.006265664160401002}},"e":{"docs":{},"含":{"docs":{},"有":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"可":{"docs":{},"选":{"docs":{},"方":{"docs":{},"法":{"docs":{},"和":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"x":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"使":{"docs":{},"用":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"外":{"docs":{},"部":{"docs":{},"数":{"docs":{},"据":{"docs":{},"源":{"docs":{},"来":{"docs":{},"提":{"docs":{},"供":{"docs":{},"增":{"docs":{},"量":{"docs":{},"值":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"含":{"docs":{},"有":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"?":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"可":{"docs":{},"选":{"docs":{},"属":{"docs":{},"性":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},"u":{"docs":{},"n":{"docs":{},"u":{"docs":{},"s":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}},"返":{"docs":{},"回":{"docs":{},"的":{"docs":{},"字":{"docs":{},"符":{"docs":{},"数":{"docs":{},"量":{"docs":{},"并":{"docs":{},"不":{"docs":{},"总":{"docs":{},"是":{"docs":{},"与":{"docs":{},"包":{"docs":{},"含":{"docs":{},"相":{"docs":{},"同":{"docs":{},"字":{"docs":{},"符":{"docs":{},"的":{"docs":{},"n":{"docs":{},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"的":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013}}}}}},"属":{"docs":{},"性":{"docs":{},"进":{"docs":{},"行":{"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":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"等":{"docs":{},"于":{"0":{"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":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"于":{"docs":{},"存":{"docs":{},"储":{"docs":{},"当":{"docs":{},"前":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"方":{"docs":{},"法":{"docs":{},"用":{"docs":{},"来":{"docs":{},"为":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"获":{"docs":{},"取":{"docs":{},"容":{"docs":{},"器":{"docs":{},"里":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"的":{"docs":{},"数":{"docs":{},"量":{"docs":{},",":{"docs":{},"并":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}},"函":{"docs":{},"数":{"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":{},"t":{"docs":{},"型":{"docs":{},"值":{"docs":{},"的":{"docs":{},"元":{"docs":{},"组":{"docs":{},"(":{"docs":{},"t":{"docs":{},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.01616161616161616},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}},"y":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}},".":{"docs":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}},"和":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"产":{"docs":{},"生":{"docs":{},"循":{"docs":{},"环":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"每":{"docs":{},"个":{"docs":{},"类":{"docs":{},"将":{"docs":{},"另":{"docs":{},"外":{"docs":{},"一":{"docs":{},"个":{"docs":{},"类":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"保":{"docs":{},"存":{"docs":{},"为":{"docs":{},"属":{"docs":{},"性":{"docs":{},"。":{"docs":{},"在":{"docs":{},"这":{"docs":{},"个":{"docs":{},"模":{"docs":{},"型":{"docs":{},"中":{"docs":{},",":{"docs":{},"每":{"docs":{},"个":{"docs":{},"国":{"docs":{},"家":{"docs":{},"必":{"docs":{},"须":{"docs":{},"有":{"docs":{},"首":{"docs":{},"都":{"docs":{},",":{"docs":{},"而":{"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":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"类":{"docs":{},"拥":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"而":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"类":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"调":{"docs":{},"用":{"docs":{},"了":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"。":{"docs":{},"然":{"docs":{},"而":{"docs":{},",":{"docs":{},"只":{"docs":{},"有":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"完":{"docs":{},"全":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"完":{"docs":{},"后":{"docs":{},",":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"才":{"docs":{},"能":{"docs":{},"把":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"传":{"docs":{},"给":{"docs":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.006445672191528545},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.29174443646805454},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.05128205128205128}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}},"a":{"docs":{},"l":{"docs":{},"-":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"­":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"值":{"docs":{},"在":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"执":{"docs":{},"行":{"docs":{},"前":{"docs":{},"就":{"docs":{},"已":{"docs":{},"计":{"docs":{},"算":{"docs":{},"出":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"中":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"的":{"docs":{},"值":{"docs":{},"是":{"docs":{},"在":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"执":{"docs":{},"行":{"docs":{},"后":{"docs":{},"才":{"docs":{},"计":{"docs":{},"算":{"docs":{},"出":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"d":{"docs":{},"o":{"docs":{},"-":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"中":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"c":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},"。":{"docs":{},"同":{"docs":{},"时":{"docs":{},",":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.005698005698005698}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}},"e":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}},".":{"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.007168458781362007}}}}}}}}}},"n":{"docs":{},"i":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0047430830039525695},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}}}},"-":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}},"t":{"docs":{},"s":{"docs":{},"]":{"docs":{},"[":{"8":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}},"docs":{}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.006445672191528545},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767}}}},"o":{"docs":{},"n":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.008438818565400843},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.017241379310344827}}}}},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.2582899556583767}}}}}},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.011135857461024499},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0071146245059288534},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.02242152466367713}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"#":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"声":{"docs":{},"明":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"的":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"写":{"docs":{},"作":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},",":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}},"泛":{"docs":{},"型":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"必":{"docs":{},"须":{"docs":{},"指":{"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":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"可":{"docs":{},"以":{"docs":{},"加":{"docs":{},"进":{"docs":{},"容":{"docs":{},"器":{"docs":{},"里":{"docs":{},",":{"docs":{},"必":{"docs":{},"须":{"docs":{},"明":{"docs":{},"确":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"其":{"docs":{},"下":{"docs":{},"标":{"docs":{},"返":{"docs":{},"回":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"需":{"docs":{},"要":{"docs":{},"一":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"指":{"docs":{},"定":{"docs":{},"容":{"docs":{},"器":{"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":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"需":{"docs":{},"要":{"docs":{},"指":{"docs":{},"定":{"docs":{},"任":{"docs":{},"何":{"docs":{},"通":{"docs":{},"过":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.007366482504604052},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":1.133903133903134}},"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":{},"这":{"docs":{},"种":{"docs":{},"行":{"docs":{},"为":{"docs":{},"使":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"于":{"docs":{},"终":{"docs":{},"止":{"docs":{},"循":{"docs":{},"环":{"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":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"时":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"只":{"docs":{},"写":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"docs":{},"这":{"docs":{},"个":{"docs":{},"关":{"docs":{},"键":{"docs":{},"词":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"docs":{},"后":{"docs":{},"面":{"docs":{},"跟":{"docs":{},"上":{"docs":{},"标":{"docs":{},"签":{"docs":{},"名":{"docs":{},"(":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},",":{"docs":{},"请":{"docs":{},"参":{"docs":{},"考":{"docs":{},"控":{"docs":{},"制":{"docs":{},"流":{"docs":{},"一":{"docs":{},"章":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.008547008547008548}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.4375915974596971},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}},"n":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.008948545861297539}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.004484304932735426},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.005698005698005698}},"-":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.003429355281207133},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.014245014245014245}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.005979073243647235},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}},"-":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.023255813953488372},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}},"j":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}},"d":{"docs":{},"e":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.014336917562724014},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0066815144766146995},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.013651877133105802},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002691272587466359},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}}}}},">":{"docs":{},"$":{"0":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"、":{"docs":{},"<":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"$":{"1":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"、":{"docs":{},"<":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"$":{"2":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}},"docs":{}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}},"docs":{}},"`":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"。":{"docs":{},"例":{"docs":{},"如":{"docs":{},",":{"docs":{},"<":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"`":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"。":{"docs":{},"反":{"docs":{},"引":{"docs":{},"号":{"docs":{},"不":{"docs":{},"属":{"docs":{},"于":{"docs":{},"标":{"docs":{},"识":{"docs":{},"符":{"docs":{},"的":{"docs":{},"一":{"docs":{},"部":{"docs":{},"分":{"docs":{},",":{"docs":{},"<":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"`":{"docs":{},"x":{"docs":{},"`":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.011659807956104253},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.019943019943019943}}}}}}}}}},"m":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.008960573476702509},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.004464285714285714}}}}},"o":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}},"u":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.003015075376884422}},"e":{"docs":{},"-":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}}}}}},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.2582899556583767},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},">":{"docs":{},"(":{"docs":{},"x":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}},"等":{"docs":{},"同":{"docs":{},"于":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}},"表":{"docs":{},"示":{"docs":{},"任":{"docs":{},"何":{"docs":{},"用":{"docs":{},"于":{"docs":{},"替":{"docs":{},"代":{"docs":{},"类":{"docs":{},"型":{"docs":{},"形":{"docs":{},"参":{"docs":{},"t":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"实":{"docs":{},"参":{"docs":{},"必":{"docs":{},"须":{"docs":{},"满":{"docs":{},"足":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"等":{"docs":{},"等":{"docs":{},")":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"依":{"docs":{},"然":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"来":{"docs":{},"对":{"docs":{},"类":{"docs":{},"型":{"docs":{},"形":{"docs":{},"参":{"docs":{},"及":{"docs":{},"其":{"docs":{},"关":{"docs":{},"联":{"docs":{},"约":{"docs":{},"束":{"docs":{},"提":{"docs":{},"供":{"docs":{},"更":{"docs":{},"复":{"docs":{},"杂":{"docs":{},"的":{"docs":{},"约":{"docs":{},"束":{"docs":{},"。":{"docs":{},"如":{"docs":{},",":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}},".":{"docs":{},"w":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}},"s":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},",":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},",":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"和":{"docs":{},"w":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"不":{"docs":{},"是":{"docs":{},"隐":{"docs":{},"式":{"docs":{},"得":{"docs":{},"等":{"docs":{},"于":{"0":{"docs":{},",":{"1":{"docs":{},",":{"2":{"docs":{},"和":{"3":{"docs":{},"。":{"docs":{},"相":{"docs":{},"反":{"docs":{},"的":{"docs":{},",":{"docs":{},"这":{"docs":{},"些":{"docs":{},"不":{"docs":{},"同":{"docs":{},"的":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"成":{"docs":{},"员":{"docs":{},"在":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}},"e":{"docs":{},"d":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.005639097744360902}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}},"e":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}},"x":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002306805074971165}}}}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767}}}}},"e":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002306805074971165}},"e":{"docs":{},"d":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"v":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}}}}}}}},"l":{"0":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}},"1":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}},"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":5.008908685968819},"chapter2/09_Classes_and_Structures.html#gitbook_138":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_138","tf":0.5},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},",":{"docs":{},"列":{"docs":{},"表":{"docs":{},"(":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},")":{"docs":{},"或":{"docs":{},"序":{"docs":{},"列":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.007366482504604052}}},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.12087912087912088}},"s":{"docs":{},"个":{"docs":{},"数":{"docs":{},"的":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"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":{},"始":{"docs":{},"值":{"0":{"docs":{},".":{"0":{"docs":{},",":{"docs":{},"都":{"docs":{},"传":{"docs":{},"入":{"docs":{},"数":{"docs":{},"组":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"方":{"docs":{},"法":{"docs":{},"中":{"docs":{},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"正":{"docs":{},"确":{"docs":{},"大":{"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":{},"r":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"=":{"docs":{},"\"":{"4":{"docs":{},"\"":{"docs":{},">":{"4":{"docs":{},"<":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0044742729306487695}}}}}}},"docs":{}}}},"docs":{}}}}}}},"o":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767}}}}},"p":{"docs":{},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.004454342984409799}}},"e":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}},"w":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0044742729306487695}}},"i":{"docs":{},"n":{"docs":{"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.07692307692307693}},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.023668639053254437}}}}}},"p":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.01775147928994083}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}}}}},"的":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"性":{"docs":{},"的":{"docs":{},"限":{"docs":{},"制":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter1/01_swift.html#gitbook_105":{"ref":"chapter1/01_swift.html#gitbook_105","tf":0.023809523809523808}}}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}},"u":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.44040058622374206},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.008040201005025126}},"e":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0027434842249657062}},"­":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"­":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"­":{"docs":{},"(":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},")":{"docs":{},"­":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"­":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"­":{"docs":{},"(":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},")":{"docs":{},"­":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"e":{"docs":{},"r":{"docs":{},"­":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"'":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.013157894736842105}}}}}}},"i":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00404040404040404}},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00404040404040404}},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"默":{"docs":{},"认":{"docs":{},"值":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},",":{"docs":{},"一":{"docs":{},"旦":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"在":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"中":{"docs":{},"给":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"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":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},"被":{"docs":{},"后":{"docs":{},",":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"就":{"docs":{},"能":{"docs":{},"引":{"docs":{},"用":{"docs":{},"并":{"docs":{},"传":{"docs":{},"递":{"docs":{},"显":{"docs":{},"式":{"docs":{},"的":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"。":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"在":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"时":{"docs":{},",":{"docs":{},"就":{"docs":{},"能":{"docs":{},"将":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"作":{"docs":{},"为":{"docs":{},"参":{"docs":{},"数":{"docs":{},"传":{"docs":{},"递":{"docs":{},"给":{"docs":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.006060606060606061}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}},"r":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.024896265560165973}},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00404040404040404}},"(":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}},"添":{"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}},"中":{"docs":{},"的":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"方":{"docs":{},"法":{"docs":{},"并":{"docs":{},"非":{"docs":{},"完":{"docs":{},"全":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},",":{"docs":{},"而":{"docs":{},"是":{"docs":{},"通":{"docs":{},"过":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"使":{"docs":{},"用":{"docs":{},"了":{"docs":{},"超":{"docs":{},"类":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"中":{"docs":{},"的":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"声":{"docs":{},"明":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"存":{"docs":{},"储":{"docs":{},"型":{"docs":{},"属":{"docs":{},"性":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{},"它":{"docs":{},"是":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},",":{"docs":{},"默":{"docs":{},"认":{"docs":{},"值":{"docs":{},"是":{"0":{"docs":{},".":{"0":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"“":{"docs":{},"时":{"docs":{},"速":{"docs":{},"是":{"0":{"docs":{},"英":{"docs":{},"里":{"docs":{},"”":{"docs":{},"。":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"有":{"docs":{},"自":{"docs":{},"己":{"docs":{},"的":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"器":{"docs":{},",":{"docs":{},"它":{"docs":{},"将":{"docs":{},"乘":{"docs":{},"客":{"docs":{},"的":{"docs":{},"最":{"docs":{},"大":{"docs":{},"数":{"docs":{},"量":{"docs":{},"设":{"docs":{},"为":{"5":{"docs":{},",":{"docs":{},"轮":{"docs":{},"子":{"docs":{},"数":{"docs":{},"量":{"docs":{},"设":{"docs":{},"为":{"4":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}},"docs":{}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}},"docs":{}},"docs":{}}}}}}}},"docs":{}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"新":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"并":{"docs":{},"打":{"docs":{},"印":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}},"重":{"docs":{},"写":{"docs":{},"了":{"docs":{},"继":{"docs":{},"承":{"docs":{},"来":{"docs":{},"的":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"它":{"docs":{},"的":{"docs":{},"声":{"docs":{},"明":{"docs":{},"与":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"中":{"docs":{},"的":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"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":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}},"s":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.024676850763807285},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.03406998158379374},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.07167235494880546},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.010282776349614395},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.011067193675889328},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.04065040650406504},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.017241379310344827},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.008771929824561403},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":1.1364275668073136},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.014245014245014245}},"匹":{"docs":{},"配":{"docs":{},"同":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"docs":{},"。":{"docs":{},"实":{"docs":{},"际":{"docs":{},"上":{"docs":{},",":{"docs":{},"在":{"docs":{},"这":{"docs":{},"个":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"点":{"docs":{},"(":{"0":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}},"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":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}},"后":{"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":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"块":{"docs":{},"。":{"docs":{},"这":{"docs":{},"也":{"docs":{},"就":{"docs":{},"是":{"docs":{},"说":{"docs":{},",":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"块":{"docs":{},"中":{"docs":{},"显":{"docs":{},"式":{"docs":{},"地":{"docs":{},"使":{"docs":{},"用":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"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":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"就":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"想":{"docs":{},"执":{"docs":{},"行":{"docs":{},"下":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"块":{"docs":{},",":{"docs":{},"需":{"docs":{},"要":{"docs":{},"显":{"docs":{},"式":{"docs":{},"地":{"docs":{},"在":{"docs":{},"你":{"docs":{},"需":{"docs":{},"要":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"块":{"docs":{},"里":{"docs":{},"使":{"docs":{},"用":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"语":{"docs":{},"句":{"docs":{},"。":{"docs":{},"关":{"docs":{},"于":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"语":{"docs":{},"句":{"docs":{},"的":{"docs":{},"更":{"docs":{},"多":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"请":{"docs":{},"参":{"docs":{},"考":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"请":{"docs":{},"使":{"docs":{},"用":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}},"匹":{"docs":{},"配":{"docs":{},"了":{"docs":{},"余":{"docs":{},"下":{"docs":{},"所":{"docs":{},"有":{"docs":{},"可":{"docs":{},"能":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"于":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"五":{"docs":{},"个":{"docs":{},"元":{"docs":{},"音":{"docs":{},",":{"docs":{},"第":{"docs":{},"二":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}},"的":{"docs":{},"模":{"docs":{},"式":{"docs":{},"允":{"docs":{},"许":{"docs":{},"将":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"的":{"docs":{},"值":{"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":{},"a":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}},"都":{"docs":{},"必":{"docs":{},"须":{"docs":{},"包":{"docs":{},"含":{"docs":{},"至":{"docs":{},"少":{"docs":{},"一":{"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":{},"a":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"里":{"docs":{},"引":{"docs":{},"用":{"docs":{},"。":{"docs":{},"在":{"docs":{},"这":{"docs":{},"个":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"它":{"docs":{},"们":{"docs":{},"用":{"docs":{},"于":{"docs":{},"简":{"docs":{},"化":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}},"快":{"docs":{},"没":{"docs":{},"有":{"docs":{},"实":{"docs":{},"际":{"docs":{},"的":{"docs":{},"意":{"docs":{},"义":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"在":{"docs":{},"这":{"docs":{},"个":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{},"了":{"docs":{},"默":{"docs":{},"认":{"docs":{},"块":{"docs":{},"来":{"docs":{},"处":{"docs":{},"理":{"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":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"都":{"docs":{},"声":{"docs":{},"明":{"docs":{},"了":{"docs":{},"常":{"docs":{},"量":{"docs":{},"x":{"docs":{},"和":{"docs":{},"y":{"docs":{},"的":{"docs":{},"占":{"docs":{},"位":{"docs":{},"符":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"临":{"docs":{},"时":{"docs":{},"获":{"docs":{},"取":{"docs":{},"元":{"docs":{},"组":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"或":{"docs":{},"两":{"docs":{},"个":{"docs":{},"值":{"docs":{},"。":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"—":{"docs":{},"—":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"两":{"docs":{},"个":{"docs":{},"值":{"docs":{},"。":{"docs":{},"这":{"docs":{},"些":{"docs":{},"常":{"docs":{},"量":{"docs":{},"被":{"docs":{},"用":{"docs":{},"作":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"的":{"docs":{},"一":{"docs":{},"部":{"docs":{},"分":{"docs":{},",":{"docs":{},"从":{"docs":{},"而":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"动":{"docs":{},"态":{"docs":{},"的":{"docs":{},"过":{"docs":{},"滤":{"docs":{},"器":{"docs":{},"(":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},"。":{"docs":{},"当":{"docs":{},"且":{"docs":{},"仅":{"docs":{},"当":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"的":{"docs":{},"条":{"docs":{},"件":{"docs":{},"为":{"docs":{},"真":{"docs":{},"时":{"docs":{},",":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"到":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"代":{"docs":{},"码":{"docs":{},"执":{"docs":{},"行":{"docs":{},"的":{"docs":{},"一":{"docs":{},"条":{"docs":{},"分":{"docs":{},"支":{"docs":{},",":{"docs":{},"这":{"docs":{},"与":{"docs":{},"i":{"docs":{},"f":{"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":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}},"s":{"docs":{},"里":{"docs":{},"用":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}},"-":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.008547008547008548}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.008547008547008548}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"a":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}}}}}}}},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":1.6840579710144925},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{},"定":{"docs":{},"义":{"docs":{},"一":{"docs":{},"个":{"docs":{},"类":{"docs":{},"层":{"docs":{},"次":{"docs":{},"作":{"docs":{},"为":{"docs":{},"例":{"docs":{},"子":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.8333333333333333}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}},"f":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"b":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}},"'":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}},"l":{"docs":{},"l":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.23396460929578386},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00404040404040404},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0047430830039525695},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002306805074971165},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.28872936109117014}}},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0019223375624759708}}}}}},"u":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0019223375624759708}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}}},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013}},"i":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.007518796992481203}}},"x":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.007518796992481203}}},"属":{"docs":{},"性":{"docs":{},"之":{"docs":{},"后":{"docs":{},"被":{"docs":{},"设":{"docs":{},"置":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"值":{"docs":{},"(":{"1":{"5":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}},"docs":{}},"docs":{}}}}}}}}}}}}}}},".":{"docs":{},"i":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}},"x":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}},"'":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}},"和":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"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":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},":":{"docs":{},"s":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}},"c":{"docs":{},"k":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.013651877133105802},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.8459815546772068},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}},"e":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}},"s":{"docs":{},"n":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}},"e":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":1.0519568151147098},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.006445672191528545},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.007032348804500703},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0044742729306487695},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.008620689655172414},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.006696428571428571}},"e":{"docs":{},"r":{"1":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.009398496240601503}}},"2":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}},"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}},"s":{"docs":{},"(":{"docs":{},"章":{"docs":{},"节":{"docs":{},"信":{"docs":{},"息":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"的":{"docs":{},"可":{"docs":{},"能":{"docs":{},"性":{"docs":{},"都":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"出":{"docs":{},"来":{"docs":{},"是":{"docs":{},"不":{"docs":{},"现":{"docs":{},"实":{"docs":{},"的":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"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":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"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":{},"语":{"docs":{},"句":{"docs":{},"。":{"docs":{},"一":{"docs":{},"旦":{"docs":{},"落":{"docs":{},"入":{"docs":{},"到":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"分":{"docs":{},"支":{"docs":{},"中":{"docs":{},"后":{"docs":{},",":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"语":{"docs":{},"句":{"docs":{},"就":{"docs":{},"完":{"docs":{},"成":{"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":{},"f":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.004219409282700422}}}}}}}},".":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}},"是":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"型":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"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":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"添":{"docs":{},"加":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"计":{"docs":{},"算":{"docs":{},"实":{"docs":{},"例":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"即":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"返":{"docs":{},"回":{"docs":{},"合":{"docs":{},"适":{"docs":{},"的":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"新":{"docs":{},"的":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},")":{"docs":{},"\\":{"0":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}},"docs":{}}}}}}}}},"i":{"docs":{},"n":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":5.003311258278146}},"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":{},"本":{"docs":{},"的":{"docs":{},"过":{"docs":{},"程":{"docs":{},",":{"docs":{},"它":{"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":{},")":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"的":{"docs":{},"目":{"docs":{},"标":{"docs":{},"有":{"docs":{},"值":{"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":{},")":{"docs":{},",":{"docs":{},"则":{"docs":{},"这":{"docs":{},"种":{"docs":{},"调":{"docs":{},"用":{"docs":{},"将":{"docs":{},"返":{"docs":{},"回":{"docs":{},"空":{"docs":{},"(":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},")":{"docs":{},"。":{"docs":{},"多":{"docs":{},"次":{"docs":{},"请":{"docs":{},"求":{"docs":{},"或":{"docs":{},"调":{"docs":{},"用":{"docs":{},"可":{"docs":{},"以":{"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":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813}}}}}}}}}},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813}}}}}}}}}}}}}},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"它":{"docs":{},"的":{"docs":{},"返":{"docs":{},"回":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}},"r":{"docs":{},"i":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0056179775280898875}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.010575793184488837},"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.03734439834024896},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.020676691729323307},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.012853470437017995},"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.005917159763313609},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.022222222222222223},"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.019867549668874173},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.8491436100131752},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.017543859649122806},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.011695906432748537},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.01306532663316583},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}},"前":{"docs":{},"添":{"docs":{},"加":{"docs":{},"@":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"特":{"docs":{},"性":{"docs":{},"(":{"docs":{},"@":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}},")":{"docs":{},"来":{"docs":{},"将":{"docs":{},"整":{"docs":{},"个":{"docs":{},"类":{"docs":{},"标":{"docs":{},"记":{"docs":{},"为":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}},")":{"docs":{},"、":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},")":{"docs":{},"和":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"(":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"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":{},"快":{"docs":{},"捷":{"docs":{},"方":{"docs":{},"式":{"docs":{},"。":{"docs":{},"举":{"docs":{},"例":{"docs":{},"来":{"docs":{},"说":{"docs":{},",":{"docs":{},"用":{"docs":{},"下":{"docs":{},"标":{"docs":{},"访":{"docs":{},"问":{"docs":{},"一":{"docs":{},"个":{"docs":{},"数":{"docs":{},"组":{"docs":{},"(":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"\"":{"docs":{},"x":{"docs":{},"-":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},">":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"它":{"docs":{},"创":{"docs":{},"建":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"以":{"docs":{},"存":{"docs":{},"储":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},"该":{"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":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"表":{"docs":{},"示":{"docs":{},"协":{"docs":{},"议":{"docs":{},"中":{"docs":{},"的":{"docs":{},"成":{"docs":{},"员":{"docs":{},"为":{"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":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}}}}}}}},"、":{"docs":{},"d":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"、":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"、":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"、":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"、":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"、":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"、":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"、":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"、":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"、":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"、":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"、":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{},"s":{"docs":{},"、":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}},"u":{"docs":{},"s":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.015503875968992248}}}}},"u":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.4375915974596971}}}}},"u":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":1.3127747923790913},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00404040404040404},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.006030150753768844},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"需":{"docs":{},"要":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}},")":{"docs":{},"包":{"docs":{},"含":{"docs":{},"了":{"docs":{},"可":{"docs":{},"执":{"docs":{},"行":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"(":{"docs":{},"跟":{"docs":{},"方":{"docs":{},"法":{"docs":{},"主":{"docs":{},"体":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.003015075376884422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.005025125628140704},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00411522633744856}},"e":{"docs":{},"­":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"­":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}},"s":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}},"u":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.009398496240601503},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.005141388174807198}},"值":{"docs":{},"大":{"docs":{},"于":{"docs":{},"任":{"docs":{},"何":{"docs":{},"之":{"docs":{},"前":{"docs":{},"任":{"docs":{},"意":{"docs":{},"a":{"docs":{},"u":{"docs":{},"d":{"docs":{},"i":{"docs":{},"o":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"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":{},"x":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"包":{"docs":{},"含":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}},"的":{"docs":{},"新":{"docs":{},"值":{"docs":{},"大":{"docs":{},"于":{"docs":{},"允":{"docs":{},"许":{"docs":{},"的":{"docs":{},"阈":{"docs":{},"值":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},",":{"docs":{},"属":{"docs":{},"性":{"docs":{},"监":{"docs":{},"视":{"docs":{},"器":{"docs":{},"将":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"的":{"docs":{},"值":{"docs":{},"限":{"docs":{},"定":{"docs":{},"为":{"docs":{},"阈":{"docs":{},"值":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"实":{"docs":{},"例":{"docs":{},"方":{"docs":{},"法":{"docs":{},"a":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"会":{"docs":{},"在":{"docs":{},"更":{"docs":{},"新":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"之":{"docs":{},"前":{"docs":{},"检":{"docs":{},"查":{"docs":{},"所":{"docs":{},"请":{"docs":{},"求":{"docs":{},"的":{"docs":{},"新":{"docs":{},"等":{"docs":{},"级":{"docs":{},"是":{"docs":{},"否":{"docs":{},"已":{"docs":{},"经":{"docs":{},"解":{"docs":{},"锁":{"docs":{},"。":{"docs":{},"a":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"方":{"docs":{},"法":{"docs":{},"返":{"docs":{},"回":{"docs":{},"布":{"docs":{},"尔":{"docs":{},"值":{"docs":{},"以":{"docs":{},"指":{"docs":{},"示":{"docs":{},"是":{"docs":{},"否":{"docs":{},"确":{"docs":{},"实":{"docs":{},"能":{"docs":{},"够":{"docs":{},"设":{"docs":{},"置":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.008438818565400843}},"e":{"docs":{},"逐":{"docs":{},"渐":{"docs":{},"接":{"docs":{},"近":{"docs":{},"到":{"0":{"docs":{},"是":{"docs":{},"需":{"docs":{},"要":{"docs":{},"向":{"docs":{},"正":{"docs":{},"数":{"docs":{},"走":{"docs":{},"还":{"docs":{},"是":{"docs":{},"向":{"docs":{},"负":{"docs":{},"数":{"docs":{},"走":{"docs":{},"。":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"的":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{},"是":{"3":{"docs":{},",":{"docs":{},"这":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}},"i":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}},"t":{"docs":{},"i":{"docs":{},"z":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}}}}},"b":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013}},"(":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}},"的":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"三":{"docs":{},"维":{"docs":{},"空":{"docs":{},"间":{"docs":{},"的":{"docs":{},"立":{"docs":{},"方":{"docs":{},"体":{"docs":{},",":{"docs":{},"包":{"docs":{},"含":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},"、":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"和":{"docs":{},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{},"h":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"还":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"v":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"的":{"docs":{},"只":{"docs":{},"读":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"用":{"docs":{},"来":{"docs":{},"返":{"docs":{},"回":{"docs":{},"立":{"docs":{},"方":{"docs":{},"体":{"docs":{},"的":{"docs":{},"体":{"docs":{},"积":{"docs":{},",":{"docs":{},"设":{"docs":{},"置":{"docs":{},"v":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"的":{"docs":{},"值":{"docs":{},"毫":{"docs":{},"无":{"docs":{},"意":{"docs":{},"义":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"无":{"docs":{},"法":{"docs":{},"确":{"docs":{},"定":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},"、":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"和":{"docs":{},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.01818181818181818},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.006535947712418301}},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}},"和":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}},"之":{"docs":{},"间":{"docs":{},"的":{"docs":{},"关":{"docs":{},"系":{"docs":{},"与":{"docs":{},"前":{"docs":{},"面":{"docs":{},"弱":{"docs":{},"引":{"docs":{},"用":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"和":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"的":{"docs":{},"关":{"docs":{},"系":{"docs":{},"截":{"docs":{},"然":{"docs":{},"不":{"docs":{},"同":{"docs":{},"。":{"docs":{},"在":{"docs":{},"这":{"docs":{},"个":{"docs":{},"数":{"docs":{},"据":{"docs":{},"模":{"docs":{},"型":{"docs":{},"中":{"docs":{},",":{"docs":{},"一":{"docs":{},"个":{"docs":{},"客":{"docs":{},"户":{"docs":{},"可":{"docs":{},"能":{"docs":{},"有":{"docs":{},"或":{"docs":{},"者":{"docs":{},"没":{"docs":{},"有":{"docs":{},"信":{"docs":{},"用":{"docs":{},"卡":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"一":{"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":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"类":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"类":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"非":{"docs":{},"可":{"docs":{},"选":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"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":{},"性":{"docs":{},"的":{"docs":{},"值":{"docs":{},"不":{"docs":{},"允":{"docs":{},"许":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},"持":{"docs":{},"有":{"docs":{},"对":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"而":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"实":{"docs":{},"例":{"docs":{},"持":{"docs":{},"有":{"docs":{},"对":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"该":{"docs":{},"实":{"docs":{},"例":{"docs":{},"被":{"docs":{},"销":{"docs":{},"毁":{"docs":{},"了":{"docs":{},"。":{"docs":{},"其":{"docs":{},"后":{"docs":{},",":{"docs":{},"再":{"docs":{},"也":{"docs":{},"没":{"docs":{},"有":{"docs":{},"指":{"docs":{},"向":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"无":{"docs":{},"主":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"当":{"docs":{},"你":{"docs":{},"断":{"docs":{},"开":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},"变":{"docs":{},"量":{"docs":{},"持":{"docs":{},"有":{"docs":{},"的":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"时":{"docs":{},",":{"docs":{},"再":{"docs":{},"也":{"docs":{},"没":{"docs":{},"有":{"docs":{},"指":{"docs":{},"向":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"用":{"docs":{},"它":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"并":{"docs":{},"将":{"docs":{},"新":{"docs":{},"创":{"docs":{},"建":{"docs":{},"的":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"实":{"docs":{},"例":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"为":{"docs":{},"客":{"docs":{},"户":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}},"语":{"docs":{},"言":{"docs":{},"和":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0044742729306487695}},"中":{"docs":{},"的":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"更":{"docs":{},"加":{"docs":{},"清":{"docs":{},"晰":{"docs":{},"和":{"docs":{},"可":{"docs":{},"预":{"docs":{},"测":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"避":{"docs":{},"免":{"docs":{},"无":{"docs":{},"意":{"docs":{},"识":{"docs":{},"地":{"docs":{},"执":{"docs":{},"行":{"docs":{},"多":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}},"里":{"docs":{},"的":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}},"和":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}}}}}}}}},"风":{"docs":{},"格":{"docs":{},"的":{"docs":{},"落":{"docs":{},"入":{"docs":{},"(":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},")":{"docs":{},"的":{"docs":{},"特":{"docs":{},"性":{"docs":{},",":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"每":{"docs":{},"个":{"docs":{},"需":{"docs":{},"要":{"docs":{},"该":{"docs":{},"特":{"docs":{},"性":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"分":{"docs":{},"支":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"。":{"docs":{},"下":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"使":{"docs":{},"用":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00404040404040404}},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}},"中":{"docs":{},"的":{"docs":{},"比":{"docs":{},"较":{"docs":{},"运":{"docs":{},"算":{"docs":{},"都":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}}}}}}}}}}}}}}}},"和":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00808080808080808}},"z":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}}}}},"y":{"docs":{},"!":{"docs":{},")":{"docs":{},"的":{"docs":{},"方":{"docs":{},"式":{"docs":{},",":{"docs":{},"将":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"属":{"docs":{},"性":{"docs":{},"声":{"docs":{},"明":{"docs":{},"为":{"docs":{},"显":{"docs":{},"示":{"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":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"默":{"docs":{},"认":{"docs":{},"值":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"将":{"docs":{},"实":{"docs":{},"例":{"docs":{},"保":{"docs":{},"存":{"docs":{},"为":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"c":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}},"e":{"docs":{},"(":{"docs":{},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{},"u":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}},",":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},",":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"并":{"docs":{},"没":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"相":{"docs":{},"同":{"docs":{},"的":{"docs":{},"基":{"docs":{},"类":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"采":{"docs":{},"用":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"都":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"了":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"前":{"docs":{},"者":{"docs":{},"把":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"写":{"docs":{},"为":{"docs":{},"计":{"docs":{},"算":{"docs":{},"型":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"后":{"docs":{},"者":{"docs":{},"则":{"docs":{},"把":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}},"-":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}},"c":{"6":{"6":{"9":{"9":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}},"s":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}},"颜":{"docs":{},"色":{"docs":{},"#":{"docs":{},"c":{"docs":{},"c":{"6":{"6":{"9":{"9":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"用":{"docs":{},"十":{"docs":{},"六":{"docs":{},"进":{"docs":{},"制":{"0":{"docs":{},"x":{"docs":{},"c":{"docs":{},"c":{"6":{"6":{"9":{"9":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}},"docs":{}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"等":{"docs":{},"效":{"docs":{},"于":{"docs":{},"一":{"docs":{},"个":{"docs":{},"从":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}},"继":{"docs":{},"承":{"docs":{},"而":{"docs":{},"来":{"docs":{},"的":{"docs":{},"新":{"docs":{},"协":{"docs":{},"议":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}},"?":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.006696428571428571},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.008960573476702509},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}},"a":{"docs":{},"t":{"docs":{"chapter1/01_swift.html#gitbook_105":{"ref":"chapter1/01_swift.html#gitbook_105","tf":0.023809523809523808},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.005639097744360902}}}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}},";":{"docs":{},")":{"docs":{},"元":{"docs":{},"组":{"docs":{},"把":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"值":{"docs":{},"和":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174}}}}}}}}},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}},"b":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"b":{"docs":{},"y":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.005639097744360902}},".":{"docs":{},"v":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.005639097744360902},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.007366482504604052},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0044742729306487695},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":1.1196581196581197}},"循":{"docs":{},"环":{"docs":{},"来":{"docs":{},"遍":{"docs":{},"历":{"docs":{},"某":{"docs":{},"个":{"docs":{},"字":{"docs":{},"典":{"docs":{},"中":{"docs":{},"的":{"docs":{},"键":{"docs":{},"值":{"docs":{},"对":{"docs":{},"。":{"docs":{},"每":{"docs":{},"一":{"docs":{},"个":{"docs":{},"字":{"docs":{},"典":{"docs":{},"中":{"docs":{},"的":{"docs":{},"数":{"docs":{},"据":{"docs":{},"项":{"docs":{},"都":{"docs":{},"由":{"docs":{},"(":{"docs":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"介":{"docs":{},"绍":{"docs":{},"请":{"docs":{},"参":{"docs":{},"见":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}},"请":{"docs":{},"参":{"docs":{},"见":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}},"和":{"docs":{},"半":{"docs":{},"闭":{"docs":{},"区":{"docs":{},"间":{"docs":{},"操":{"docs":{},"作":{"docs":{},"(":{"docs":{},".":{"docs":{},".":{"docs":{},")":{"docs":{},"来":{"docs":{},"迭":{"docs":{},"代":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"。":{"docs":{},"对":{"docs":{},"于":{"docs":{},"每":{"docs":{},"个":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},",":{"docs":{},"函":{"docs":{},"数":{"docs":{},"检":{"docs":{},"查":{"docs":{},"是":{"docs":{},"否":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"不":{"docs":{},"等":{"docs":{},"于":{"docs":{},"对":{"docs":{},"应":{"docs":{},"的":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"不":{"docs":{},"等":{"docs":{},",":{"docs":{},"则":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"容":{"docs":{},"器":{"docs":{},"不":{"docs":{},"匹":{"docs":{},"配":{"docs":{},",":{"docs":{},"返":{"docs":{},"回":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"条":{"docs":{},"件":{"docs":{},"递":{"docs":{},"增":{"docs":{},"(":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":1.6666666666666665}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"语":{"docs":{},"句":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"或":{"docs":{},"常":{"docs":{},"量":{"docs":{},"申":{"docs":{},"明":{"docs":{},"时":{"docs":{},",":{"docs":{},"它":{"docs":{},"可":{"docs":{},"以":{"docs":{},"包":{"docs":{},"含":{"docs":{},"通":{"docs":{},"配":{"docs":{},"符":{"docs":{},"模":{"docs":{},"式":{"docs":{},",":{"docs":{},"标":{"docs":{},"识":{"docs":{},"符":{"docs":{},"模":{"docs":{},"式":{"docs":{},"或":{"docs":{},"者":{"docs":{},"其":{"docs":{},"他":{"docs":{},"包":{"docs":{},"含":{"docs":{},"这":{"docs":{},"两":{"docs":{},"种":{"docs":{},"模":{"docs":{},"式":{"docs":{},"的":{"docs":{},"模":{"docs":{},"式":{"docs":{},"。":{"docs":{},"例":{"docs":{},"如":{"docs":{},",":{"docs":{},"下":{"docs":{},"面":{"docs":{},"这":{"docs":{},"段":{"docs":{},"代":{"docs":{},"码":{"docs":{},"是":{"docs":{},"不":{"docs":{},"正":{"docs":{},"确":{"docs":{},"的":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"(":{"docs":{},"x":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"允":{"docs":{},"许":{"docs":{},"在":{"docs":{},"重":{"docs":{},"复":{"docs":{},"执":{"docs":{},"行":{"docs":{},"代":{"docs":{},"码":{"docs":{},"块":{"docs":{},"的":{"docs":{},"同":{"docs":{},"时":{"docs":{},",":{"docs":{},"迭":{"docs":{},"代":{"docs":{},"集":{"docs":{},"合":{"docs":{},"(":{"docs":{},"或":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"s":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}},"在":{"docs":{},"循":{"docs":{},"环":{"docs":{},"开":{"docs":{},"始":{"docs":{},"前":{"docs":{},"会":{"docs":{},"调":{"docs":{},"用":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"的":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"方":{"docs":{},"法":{"docs":{},"来":{"docs":{},"获":{"docs":{},"取":{"docs":{},"一":{"docs":{},"个":{"docs":{},"生":{"docs":{},"成":{"docs":{},"器":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"这":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},")":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"接":{"docs":{},"下":{"docs":{},"来":{"docs":{},"循":{"docs":{},"环":{"docs":{},"开":{"docs":{},"始":{"docs":{},",":{"docs":{},"调":{"docs":{},"用":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"的":{"docs":{},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"方":{"docs":{},"法":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"其":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"不":{"docs":{},"是":{"docs":{},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},",":{"docs":{},"它":{"docs":{},"将":{"docs":{},"会":{"docs":{},"被":{"docs":{},"赋":{"docs":{},"给":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},",":{"docs":{},"然":{"docs":{},"后":{"docs":{},"执":{"docs":{},"行":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"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":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"也":{"docs":{},"不":{"docs":{},"会":{"docs":{},"执":{"docs":{},"行":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},",":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.005698005698005698}}}}}}},"i":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.005698005698005698}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"循":{"docs":{},"环":{"docs":{},"体":{"docs":{},"中":{"docs":{},",":{"docs":{},"在":{"docs":{},"调":{"docs":{},"用":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.011396011396011397}}}}}}},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192}}}}},"条":{"docs":{},"件":{"docs":{},"递":{"docs":{},"增":{"docs":{},"(":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.003952569169960474}},"e":{"docs":{},"-":{"docs":{},"u":{"docs":{},"n":{"docs":{},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}}}}}}}},"d":{"docs":{},"-":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}},"e":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}},"m":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.008695652173913044},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}},"—":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}},"语":{"docs":{},"句":{"docs":{},"、":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{},"语":{"docs":{},"句":{"docs":{},"、":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"和":{"docs":{},"d":{"docs":{},"o":{"docs":{},"-":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}},"中":{"docs":{},",":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"执":{"docs":{},"行":{"docs":{},"后":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"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":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.005747126436781609},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002306805074971165},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}},"u":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}}}}}},"l":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.003683241252302026},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.026845637583892617},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.003015075376884422},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.005698005698005698}},"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":{},"况":{"docs":{},"下":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"同":{"docs":{},"样":{"docs":{},"的":{"docs":{},",":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}}}}},"l":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":1.113960113960114}},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.004604051565377533},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":1.1196581196581197}},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"不":{"docs":{},"会":{"docs":{},"检":{"docs":{},"查":{"docs":{},"它":{"docs":{},"下":{"docs":{},"一":{"docs":{},"个":{"docs":{},"将":{"docs":{},"会":{"docs":{},"落":{"docs":{},"入":{"docs":{},"执":{"docs":{},"行":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"中":{"docs":{},"的":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"条":{"docs":{},"件":{"docs":{},"。":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"简":{"docs":{},"单":{"docs":{},"地":{"docs":{},"使":{"docs":{},"代":{"docs":{},"码":{"docs":{},"执":{"docs":{},"行":{"docs":{},"继":{"docs":{},"续":{"docs":{},"连":{"docs":{},"接":{"docs":{},"到":{"docs":{},"下":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"中":{"docs":{},"的":{"docs":{},"执":{"docs":{},"行":{"docs":{},"代":{"docs":{},"码":{"docs":{},",":{"docs":{},"这":{"docs":{},"和":{"docs":{},"c":{"docs":{},"语":{"docs":{},"言":{"docs":{},"标":{"docs":{},"准":{"docs":{},"中":{"docs":{},"的":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}},"语":{"docs":{},"句":{"docs":{},"可":{"docs":{},"出":{"docs":{},"现":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"语":{"docs":{},"句":{"docs":{},"中":{"docs":{},"的":{"docs":{},"任":{"docs":{},"意":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"里":{"docs":{},",":{"docs":{},"但":{"docs":{},"不":{"docs":{},"能":{"docs":{},"出":{"docs":{},"现":{"docs":{},"在":{"docs":{},"最":{"docs":{},"后":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"块":{"docs":{},"中":{"docs":{},"。":{"docs":{},"同":{"docs":{},"时":{"docs":{},",":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"语":{"docs":{},"句":{"docs":{},"也":{"docs":{},"不":{"docs":{},"能":{"docs":{},"把":{"docs":{},"控":{"docs":{},"制":{"docs":{},"权":{"docs":{},"传":{"docs":{},"递":{"docs":{},"给":{"docs":{},"使":{"docs":{},"用":{"docs":{},"了":{"docs":{},"可":{"docs":{},"选":{"docs":{},"绑":{"docs":{},"定":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"于":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"语":{"docs":{},"句":{"docs":{},"中":{"docs":{},"传":{"docs":{},"递":{"docs":{},"控":{"docs":{},"制":{"docs":{},"权":{"docs":{},"。":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"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":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"传":{"docs":{},"递":{"docs":{},"给":{"docs":{},"下":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"。":{"docs":{},"这":{"docs":{},"种":{"docs":{},"传":{"docs":{},"递":{"docs":{},"是":{"docs":{},"无":{"docs":{},"条":{"docs":{},"件":{"docs":{},"的":{"docs":{},",":{"docs":{},"即":{"docs":{},"使":{"docs":{},"下":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"的":{"docs":{},"值":{"docs":{},"与":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"字":{"docs":{},"符":{"docs":{},"的":{"docs":{},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{},"-":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}},"docs":{}},"docs":{}}}}}}}},"的":{"4":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}},"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}},",":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}}},"i":{"docs":{},"b":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036},"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.019867549668874173},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.016260162601626018},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0019223375624759708}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0066815144766146995}}}}}},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"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":{},",":{"docs":{},"例":{"docs":{},"如":{"docs":{},"计":{"docs":{},"算":{"docs":{},"型":{"docs":{},"属":{"docs":{},"性":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.013245033112582781}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}}}}}}}}}},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0019223375624759708}}}}},"s":{"docs":{},"i":{"docs":{},"x":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.012448132780082987},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"属":{"docs":{},"性":{"docs":{},"或":{"docs":{},"下":{"docs":{},"标":{"docs":{},",":{"docs":{},"在":{"docs":{},"编":{"docs":{},"译":{"docs":{},"时":{"docs":{},"会":{"docs":{},"报":{"docs":{},"错":{"docs":{},"。":{"docs":{},"在":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"中":{"docs":{},",":{"docs":{},"你":{"docs":{},"添":{"docs":{},"加":{"docs":{},"到":{"docs":{},"类":{"docs":{},"里":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"属":{"docs":{},"性":{"docs":{},"或":{"docs":{},"下":{"docs":{},"标":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"的":{"docs":{},"定":{"docs":{},"义":{"docs":{},"里":{"docs":{},"标":{"docs":{},"记":{"docs":{},"为":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"来":{"docs":{},"防":{"docs":{},"止":{"docs":{},"它":{"docs":{},"们":{"docs":{},"被":{"docs":{},"重":{"docs":{},"写":{"docs":{},",":{"docs":{},"只":{"docs":{},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"声":{"docs":{},"明":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"前":{"docs":{},"加":{"docs":{},"上":{"docs":{},"@":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"特":{"docs":{},"性":{"docs":{},"即":{"docs":{},"可":{"docs":{},"。":{"docs":{},"(":{"docs":{},"例":{"docs":{},"如":{"docs":{},":":{"docs":{},"@":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.011970534069981584},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.007518796992481203}},"e":{"docs":{},",":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},",":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}},"这":{"docs":{},"表":{"docs":{},"明":{"docs":{},"你":{"docs":{},"必":{"docs":{},"须":{"docs":{},"刚":{"docs":{},"好":{"docs":{},"落":{"docs":{},"在":{"docs":{},"方":{"docs":{},"格":{"2":{"5":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}},"docs":{}},"docs":{}}}}}}}}}}}}}},",":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},",":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"(":{"docs":{},"[":{"3":{"docs":{},".":{"1":{"4":{"1":{"5":{"9":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{},"\"":{"docs":{},"m":{"docs":{},"i":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}},"<":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}},">":{"docs":{},"(":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}},"中":{"docs":{},"这":{"docs":{},"个":{"docs":{},"单":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"写":{"docs":{},"做":{"docs":{},":":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"现":{"docs":{},"在":{"docs":{},"则":{"docs":{},"可":{"docs":{},"以":{"docs":{},"成":{"docs":{},"功":{"docs":{},"的":{"docs":{},"编":{"docs":{},"译":{"docs":{},"过":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"作":{"docs":{},"用":{"docs":{},"于":{"docs":{},"任":{"docs":{},"何":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"如":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"或":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"用":{"docs":{},"某":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}},"(":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}},"的":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"版":{"docs":{},"本":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"。":{"docs":{},"请":{"docs":{},"注":{"docs":{},"意":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"仍":{"docs":{},"然":{"docs":{},"返":{"docs":{},"回":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"非":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"该":{"docs":{},"函":{"docs":{},"数":{"docs":{},"功":{"docs":{},"能":{"docs":{},"是":{"docs":{},"去":{"docs":{},"查":{"docs":{},"找":{"docs":{},"包":{"docs":{},"含":{"docs":{},"一":{"docs":{},"给":{"docs":{},"定":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{},"的":{"docs":{},"数":{"docs":{},"组":{"docs":{},"。":{"docs":{},"若":{"docs":{},"查":{"docs":{},"找":{"docs":{},"到":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"的":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},",":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"函":{"docs":{},"数":{"docs":{},"返":{"docs":{},"回":{"docs":{},"该":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"在":{"docs":{},"数":{"docs":{},"组":{"docs":{},"中":{"docs":{},"的":{"docs":{},"索":{"docs":{},"引":{"docs":{},"值":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},",":{"docs":{},"反":{"docs":{},"之":{"docs":{},"则":{"docs":{},"返":{"docs":{},"回":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}},")":{"docs":{},",":{"docs":{},"它":{"docs":{},"返":{"docs":{},"回":{"docs":{},"的":{"docs":{},"是":{"docs":{},"当":{"docs":{},"前":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}},"m":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}},"l":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}},"x":{"docs":{},"e":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013}},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013}}}}}}}}}}}},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"包":{"docs":{},"含":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"的":{"docs":{},"变":{"docs":{},"量":{"docs":{},"存":{"docs":{},"储":{"docs":{},"属":{"docs":{},"性":{"docs":{},"和":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},"的":{"docs":{},"常":{"docs":{},"量":{"docs":{},"存":{"docs":{},"储":{"docs":{},"属":{"docs":{},"性":{"docs":{},"。":{"docs":{},"在":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"b":{"docs":{},"y":{"docs":{},"x":{"docs":{},"(":{"2":{"docs":{},".":{"0":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}}}}}}}}},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.005847953216374269},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}},"并":{"docs":{},"指":{"docs":{},"定":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{},"为":{"4":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}},"docs":{}}}}}}}},"表":{"docs":{},"示":{"3":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}},"docs":{}},"docs":{}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"-":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.006696428571428571}},"-":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.006696428571428571},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}},"p":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}}}}}}},"u":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.004454342984409799}}}},"w":{"docs":{},"章":{"docs":{},"节":{"docs":{},"有":{"docs":{},"该":{"docs":{},"游":{"docs":{},"戏":{"docs":{},"的":{"docs":{},"详":{"docs":{},"细":{"docs":{},"介":{"docs":{},"绍":{"docs":{},")":{"docs":{},"游":{"docs":{},"戏":{"docs":{},"的":{"docs":{},"新":{"docs":{},"版":{"docs":{},"本":{"docs":{},".":{"docs":{},"新":{"docs":{},"版":{"docs":{},"本":{"docs":{},"使":{"docs":{},"用":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"作":{"docs":{},"为":{"docs":{},"骰":{"docs":{},"子":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"实":{"docs":{},"现":{"docs":{},"了":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}},"a":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}},"r":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"y":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.010752688172043012}},"e":{"docs":{},"的":{"docs":{},"值":{"docs":{},"从":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"!":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"改":{"docs":{},"为":{"docs":{},"了":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"o":{"docs":{},"n":{"docs":{},"j":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"!":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}}}},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"方":{"docs":{},"法":{"docs":{},"来":{"docs":{},"试":{"docs":{},"图":{"docs":{},"找":{"docs":{},"到":{"docs":{},"具":{"docs":{},"有":{"docs":{},"特":{"docs":{},"定":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"的":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"成":{"docs":{},"员":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"例":{"docs":{},"子":{"docs":{},"通":{"docs":{},"过":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"7":{"docs":{},"识":{"docs":{},"别":{"docs":{},"u":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"u":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174}}}}}}}}}},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0282021151586369},"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.02074688796680498},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.03938115330520394},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.014044943820224719},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.04113110539845758},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.01098901098901099},"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.01775147928994083},"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.009933774834437087},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.008620689655172414},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.02882205513784461},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.03288490284005979},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0038446751249519417},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.02046783625730994},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.003015075376884422},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"来":{"docs":{},"声":{"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.49043273476597},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.883610161211529},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.01046337817638266},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.006151480199923107},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.29978463747307965}},"s":{"docs":{},")":{"docs":{},"函":{"docs":{},"数":{"docs":{},"参":{"docs":{},"数":{"docs":{},"与":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.23255813953488372}}}}}}}}}}}}}},"的":{"docs":{},"定":{"docs":{},"义":{"docs":{},"与":{"docs":{},"调":{"docs":{},"用":{"docs":{},"(":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.23255813953488372}}}}}}}}}}}}}}}},",":{"docs":{},"它":{"docs":{},"们":{"docs":{},"定":{"docs":{},"义":{"docs":{},"在":{"docs":{},"全":{"docs":{},"局":{"docs":{},"域":{"docs":{},"中":{"docs":{},"。":{"docs":{},"你":{"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":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},")":{"docs":{},"。":{"docs":{},"这":{"docs":{},"包":{"docs":{},"括":{"docs":{},"在":{"docs":{},"没":{"docs":{},"有":{"docs":{},"权":{"docs":{},"限":{"docs":{},"获":{"docs":{},"取":{"docs":{},"原":{"docs":{},"始":{"docs":{},"源":{"docs":{},"代":{"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":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"中":{"docs":{},"的":{"docs":{},"分":{"docs":{},"类":{"docs":{},"(":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.005847953216374269},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.003015075376884422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00411522633744856}}}}}}}},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}}}}}},")":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"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":{},"d":{"docs":{},"d":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{},"(":{"docs":{},")":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"中":{"docs":{},",":{"docs":{},"_":{"docs":{},"_":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"_":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}},"作":{"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":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"之":{"docs":{},"前":{"docs":{},"加":{"docs":{},"上":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},";":{"docs":{},"声":{"docs":{},"明":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"和":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"在":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"之":{"docs":{},"前":{"docs":{},"加":{"docs":{},"上":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0037593984962406013}}}}},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0037593984962406013}},"e":{"docs":{},"d":{"docs":{},"协":{"docs":{},"议":{"docs":{},"含":{"docs":{},"有":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},".":{"docs":{},"因":{"docs":{},"此":{"docs":{},"其":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"者":{"docs":{},"必":{"docs":{},"须":{"docs":{},"含":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{},"类":{"docs":{},"型":{"docs":{},"为":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"w":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}},"e":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.005747126436781609}}},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}},")":{"docs":{},"\\":{"docs":{},"n":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}},"(":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"0":{"docs":{},"a":{"docs":{},")":{"docs":{},"、":{"docs":{},"回":{"docs":{},"车":{"docs":{},"符":{"docs":{},"(":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}}}}}}}}}},"c":{"docs":{},")":{"docs":{},"以":{"docs":{},"及":{"docs":{},"空":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},")":{"docs":{},"(":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"0":{"0":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter1/01_swift.html#gitbook_105":{"ref":"chapter1/01_swift.html#gitbook_105","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.005875440658049354},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.007518796992481203},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.004604051565377533},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.02531645569620253},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.006711409395973154},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00404040404040404},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.011494252873563218},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}},"-":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813}}}}}}}}}},"p":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.005639097744360902}}}},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}},"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}},"成":{"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"y":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.011135857461024499}}}}}}}},"r":{"docs":{},"e":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.008298755186721992},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.009398496240601503},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00404040404040404},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.005747126436781609},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}},"’":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0030757400999615533}}},"'":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}},"x":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}},"-":{"docs":{},"d":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.03794642857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.011659807956104253}}}}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.011160714285714286},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.003429355281207133}},"a":{"docs":{},"l":{"docs":{},"-":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.011160714285714286},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.003429355281207133}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.009398496240601503},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.008620689655172414}},"=":{"docs":{},"\"":{"1":{"2":{"0":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}},"docs":{}},"6":{"9":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}},"docs":{}},"docs":{}},"2":{"8":{"8":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013}}},"docs":{}},"9":{"0":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}},"docs":{}},"docs":{}},"3":{"5":{"7":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}},"docs":{}},"8":{"7":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}},"docs":{}},"docs":{}},"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.005012531328320802}},"协":{"docs":{},"议":{"docs":{},"时":{"docs":{},",":{"docs":{},"通":{"docs":{},"过":{"docs":{},"a":{"docs":{},"s":{"docs":{},"?":{"docs":{},"操":{"docs":{},"作":{"docs":{},"符":{"docs":{},"将":{"docs":{},"其":{"docs":{},"可":{"docs":{},"选":{"docs":{},"绑":{"docs":{},"定":{"docs":{},"(":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}},"/":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}},"h":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.008948545861297539}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}},"e":{"docs":{},"和":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"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":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"约":{"docs":{},"束":{"docs":{},",":{"docs":{},"包":{"docs":{},"括":{"docs":{},"任":{"docs":{},"何":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"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":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"要":{"docs":{},"求":{"docs":{},"满":{"docs":{},"足":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"也":{"docs":{},"必":{"docs":{},"须":{"docs":{},"满":{"docs":{},"足":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.011185682326621925}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}},"f":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}},"v":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}},"r":{"docs":{},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.010238907849829351}}}}}}}},"w":{"docs":{},"k":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}}},"m":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.006265664160401002}},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"可":{"docs":{},"以":{"docs":{},"作":{"docs":{},"为":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}},"e":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036}}}}}},"s":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}},"l":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.004229142637447136}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"2":{"0":{"0":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}},"s":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"4":{"0":{"4":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.007168458781362007}},".":{"0":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}},"1":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}},"docs":{}}}}}}}},"docs":{}},"docs":{}},"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.005376344086021506}}}},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.012121212121212121}},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00404040404040404}}}}}},"d":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"的":{"docs":{},"消":{"docs":{},"息":{"docs":{},"并":{"docs":{},"没":{"docs":{},"有":{"docs":{},"别":{"docs":{},"打":{"docs":{},"印":{"docs":{},",":{"docs":{},"证":{"docs":{},"明":{"docs":{},"了":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"无":{"docs":{},"主":{"docs":{},"引":{"docs":{},"用":{"docs":{},"是":{"docs":{},"正":{"docs":{},"确":{"docs":{},"的":{"docs":{},"解":{"docs":{},"决":{"docs":{},"循":{"docs":{},"环":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},"。":{"docs":{},"这":{"docs":{},"样":{"docs":{},"这":{"docs":{},"样":{"docs":{},"编":{"docs":{},"写":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"现":{"docs":{},"和":{"docs":{},"之":{"docs":{},"前":{"docs":{},"的":{"docs":{},"实":{"docs":{},"现":{"docs":{},"一":{"docs":{},"致":{"docs":{},",":{"docs":{},"只":{"docs":{},"是":{"docs":{},"在":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"中":{"docs":{},"多":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"占":{"docs":{},"有":{"docs":{},"列":{"docs":{},"表":{"docs":{},"。":{"docs":{},"这":{"docs":{},"里":{"docs":{},",":{"docs":{},"占":{"docs":{},"有":{"docs":{},"列":{"docs":{},"表":{"docs":{},"是":{"docs":{},"[":{"docs":{},"u":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"产":{"docs":{},"生":{"docs":{},"了":{"docs":{},"类":{"docs":{},"实":{"docs":{},"例":{"docs":{},"和":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}},"只":{"docs":{},"提":{"docs":{},"供":{"docs":{},"一":{"docs":{},"个":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"通":{"docs":{},"过":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"和":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"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":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},"这":{"docs":{},"个":{"docs":{},"元":{"docs":{},"素":{"docs":{},"的":{"docs":{},"名":{"docs":{},"称":{"docs":{},",":{"docs":{},"例":{"docs":{},"如":{"docs":{},"代":{"docs":{},"表":{"docs":{},"段":{"docs":{},"落":{"docs":{},"的":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"p":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"代":{"docs":{},"表":{"docs":{},"换":{"docs":{},"行":{"docs":{},"的":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"r":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"。":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"还":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"属":{"docs":{},"性":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"设":{"docs":{},"置":{"docs":{},"和":{"docs":{},"展":{"docs":{},"现":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"还":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"l":{"docs":{},"a":{"docs":{},"z":{"docs":{},"y":{"docs":{},"属":{"docs":{},"性":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},"引":{"docs":{},"用":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"闭":{"docs":{},"包":{"docs":{},",":{"docs":{},"将":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"和":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"组":{"docs":{},"合":{"docs":{},"成":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.010282776349614395}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}},"u":{"docs":{},"n":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.010282776349614395}}}}}}}}}}}}}}}}},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}},"-":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.8372859025032937},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.006825938566552901}}}}}}},"o":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.009398496240601503},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0031620553359683794},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.005012531328320802}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter1/01_swift.html#gitbook_105":{"ref":"chapter1/01_swift.html#gitbook_105","tf":0.09523809523809523},"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.017921146953405017},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}},",":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}},"(":{"docs":{},"章":{"docs":{},"节":{"docs":{},"信":{"docs":{},"息":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}},"的":{"docs":{},"n":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"n":{"docs":{},"s":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}},"中":{"docs":{},"的":{"docs":{},"类":{"docs":{},"方":{"docs":{},"法":{"docs":{},"(":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}},"表":{"docs":{},"示":{"docs":{},"的":{"docs":{},"声":{"docs":{},"明":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"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":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"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":{},"构":{"docs":{},"器":{"docs":{},",":{"docs":{},"以":{"docs":{},"下":{"docs":{},"下":{"docs":{},"标":{"docs":{},"。":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"c":{"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":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"里":{"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":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"-":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}},"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":{},"们":{"docs":{},"被":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"给":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"时":{"docs":{},"只":{"docs":{},"被":{"docs":{},"视":{"docs":{},"为":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"只":{"docs":{},"有":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}},".":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}},"数":{"docs":{},"组":{"docs":{},"的":{"docs":{},"元":{"docs":{},"素":{"docs":{},"是":{"docs":{},"否":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"了":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0037593984962406013},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.02197802197802198}},"前":{"docs":{},"缀":{"docs":{},"的":{"docs":{},"协":{"docs":{},"议":{"docs":{},"中":{"docs":{},"生":{"docs":{},"效":{"docs":{},".":{"docs":{},"且":{"docs":{},"@":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"c":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}},"用":{"docs":{},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},"协":{"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":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},",":{"docs":{},"此":{"docs":{},"外":{"docs":{},",":{"docs":{},"@":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"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":{},".":{"docs":{},"详":{"docs":{},"情":{"docs":{},"查":{"docs":{},"看":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}}}},"特":{"docs":{},"性":{"docs":{},"修":{"docs":{},"饰":{"docs":{},"一":{"docs":{},"个":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"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":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"应":{"docs":{},"用":{"docs":{},"于":{"docs":{},"一":{"docs":{},"个":{"docs":{},"类":{"docs":{},"或":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"它":{"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":{},"b":{"docs":{},"j":{"docs":{},"c":{"docs":{},"特":{"docs":{},"性":{"docs":{},"的":{"docs":{},"类":{"docs":{},",":{"docs":{},"编":{"docs":{},"译":{"docs":{},"器":{"docs":{},"会":{"docs":{},"隐":{"docs":{},"式":{"docs":{},"地":{"docs":{},"为":{"docs":{},"它":{"docs":{},"的":{"docs":{},"子":{"docs":{},"类":{"docs":{},"添":{"docs":{},"加":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"c":{"docs":{},"特":{"docs":{},"性":{"docs":{},"。":{"docs":{},"标":{"docs":{},"记":{"docs":{},"了":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"c":{"docs":{},"特":{"docs":{},"性":{"docs":{},"的":{"docs":{},"协":{"docs":{},"议":{"docs":{},"不":{"docs":{},"能":{"docs":{},"继":{"docs":{},"承":{"docs":{},"自":{"docs":{},"没":{"docs":{},"有":{"docs":{},"标":{"docs":{},"记":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"c":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"由":{"docs":{},"标":{"docs":{},"记":{"docs":{},"符":{"docs":{},"组":{"docs":{},"成":{"docs":{},"。":{"docs":{},"当":{"docs":{},"你":{"docs":{},"想":{"docs":{},"把":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"c":{"docs":{},"所":{"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":{},",":{"docs":{},"你":{"docs":{},"就":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"这":{"docs":{},"个":{"docs":{},"特":{"docs":{},"性":{"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":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},",":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},",":{"docs":{},"以":{"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":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"中":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"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":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":5.004149377593361},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},",":{"docs":{},"这":{"docs":{},"样":{"docs":{},"一":{"docs":{},"来":{"docs":{},",":{"docs":{},"当":{"docs":{},"属":{"docs":{},"性":{"docs":{},"值":{"docs":{},"改":{"docs":{},"变":{"docs":{},"时":{"docs":{},",":{"docs":{},"类":{"docs":{},"就":{"docs":{},"会":{"docs":{},"被":{"docs":{},"通":{"docs":{},"知":{"docs":{},"到":{"docs":{},"。":{"docs":{},"可":{"docs":{},"以":{"docs":{},"为":{"docs":{},"任":{"docs":{},"何":{"docs":{},"属":{"docs":{},"性":{"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":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}}}}}},"s":{"docs":{"chapter1/01_swift.html#gitbook_105":{"ref":"chapter1/01_swift.html#gitbook_105","tf":0.047619047619047616},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"[":{"docs":{},"\"":{"docs":{},"j":{"docs":{},"a":{"docs":{},"y":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}},"-":{"docs":{},"d":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.006696428571428571},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"a":{"docs":{},"l":{"docs":{},"-":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.011160714285714286},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.003429355281207133}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825},"chapter3/01_About_the_Language_Reference.html#gitbook_171":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_171","tf":0.041666666666666664},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.008771929824561403},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.044642857142857144},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.012658227848101266},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.10905349794238683},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.05982905982905983}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.016129032258064516},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505},"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":5.009933774834437},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.014229249011857707},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.005012531328320802},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.005847953216374269},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.006030150753768844},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}},"a":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}},"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}},"e":{"docs":{},"?":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"<":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}},"特":{"docs":{},"性":{"docs":{},"修":{"docs":{},"饰":{"docs":{},"那":{"docs":{},"些":{"docs":{},"标":{"docs":{},"记":{"docs":{},"了":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"c":{"docs":{},"特":{"docs":{},"性":{"docs":{},"的":{"docs":{},"协":{"docs":{},"议":{"docs":{},"。":{"docs":{},"因":{"docs":{},"此":{"docs":{},",":{"docs":{},"只":{"docs":{},"有":{"docs":{},"类":{"docs":{},"类":{"docs":{},"型":{"docs":{},"可":{"docs":{},"以":{"docs":{},"a":{"docs":{},"d":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"枚":{"docs":{},"举":{"docs":{},",":{"docs":{},"有":{"docs":{},"两":{"docs":{},"种":{"docs":{},"形":{"docs":{},"式":{"docs":{},",":{"docs":{},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"和":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"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":{},"用":{"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":{},"t":{"docs":{},"[":{"docs":{},"]":{"docs":{},")":{"docs":{},"?":{"docs":{},",":{"docs":{},"写":{"docs":{},"成":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.005847953216374269},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.014619883040935672}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.443209574987787},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.012648221343873518},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.05613225682429835},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.01306532663316583},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.015625},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.009602194787379973}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.47619047619047616}}}}}},"位":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.47619047619047616}}}}}}}}}}}},"按":{"docs":{},"位":{"docs":{},"左":{"docs":{},"移":{"docs":{},"/":{"docs":{},"右":{"docs":{},"移":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.47619047619047616}}}}}}}}}}}}}}}}},")":{"docs":{},"主":{"docs":{},"要":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.2857142857142857}}}}}}}}}}}}}}},"的":{"docs":{},"更":{"docs":{},"多":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"请":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}},"’":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}},"按":{"docs":{},"位":{"docs":{},"与":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.47619047619047616}}}}}}}}}}}},"取":{"docs":{},"反":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.47619047619047616}}}}}}}}}}}}},"异":{"docs":{},"或":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.47619047619047616}}}}}}}}}}}}},"或":{"docs":{},"运":{"docs":{},"算":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.47619047619047616}}}}}}}}}}}}},")":{"docs":{},"三":{"docs":{},"元":{"docs":{},"条":{"docs":{},"件":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"(":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.2857142857142857}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"转":{"docs":{},"换":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"(":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.2857142857142857}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}},")":{"docs":{},"、":{"docs":{},"后":{"docs":{},"缀":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"(":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}}}}}}}}}},"或":{"docs":{},"二":{"docs":{},"元":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"(":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}},"e":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}},"e":{"docs":{},"和":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"i":{"docs":{},"p":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"会":{"docs":{},"被":{"docs":{},"推":{"docs":{},"测":{"docs":{},"为":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"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":{},"t":{"docs":{},"和":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"创":{"docs":{},"建":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},"给":{"docs":{},"它":{"docs":{},"们":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"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":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.005747126436781609},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.02531645569620253}},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813}}}}}}},".":{"docs":{},"i":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.007518796992481203}}},"x":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.007518796992481203}}}},"i":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.005747126436781609}}},"x":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.005747126436781609}}}}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.003683241252302026},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.02074688796680498},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}},"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"。":{"docs":{},"这":{"docs":{},"么":{"docs":{},"做":{"docs":{},",":{"docs":{},"你":{"docs":{},"就":{"docs":{},"表":{"docs":{},"明":{"docs":{},"了":{"docs":{},"你":{"docs":{},"是":{"docs":{},"想":{"docs":{},"提":{"docs":{},"供":{"docs":{},"一":{"docs":{},"个":{"docs":{},"重":{"docs":{},"写":{"docs":{},"版":{"docs":{},"本":{"docs":{},",":{"docs":{},"而":{"docs":{},"非":{"docs":{},"错":{"docs":{},"误":{"docs":{},"地":{"docs":{},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"相":{"docs":{},"同":{"docs":{},"的":{"docs":{},"定":{"docs":{},"义":{"docs":{},"。":{"docs":{},"意":{"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":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"会":{"docs":{},"提":{"docs":{},"醒":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.010380622837370242},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.005025125628140704}},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.47619047619047616}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}}}}}}},"n":{"docs":{},"l":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.007712082262210797}},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.005141388174807198}}}}}}}}}}}}}}},"k":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0019223375624759708}},"e":{"docs":{},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.005747126436781609}}}}}}},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}},".":{"docs":{},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}},"枚":{"docs":{},"举":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"了":{"docs":{},"t":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}},"u":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.010238907849829351},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.01098901098901099},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.005639097744360902},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.011235955056179775},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.032520325203252036},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.006265664160401002},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002306805074971165}},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}}}},"l":{"docs":{},"d":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.004454342984409799}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.004454342984409799},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.005625879043600563},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0019223375624759708}}}}}}}},"t":{"docs":{},"a":{"docs":{},"w":{"docs":{},"a":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00404040404040404}}}}}}},"d":{"docs":{},"y":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848}}}}}}}},"x":{"docs":{},"c":{"docs":{},"c":{"6":{"6":{"9":{"9":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.004700352526439483},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.026905829596412557},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.02197802197802198},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.003015075376884422},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.06976744186046512},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/01_swift.html#gitbook_105":{"ref":"chapter1/01_swift.html#gitbook_105","tf":0.023809523809523808},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}},"和":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"方":{"docs":{},"法":{"docs":{},"可":{"docs":{},"能":{"docs":{},"会":{"docs":{},"失":{"docs":{},"败":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"它":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"被":{"docs":{},"写":{"docs":{},"作":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"?":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"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":{},"t":{"docs":{},"值":{"docs":{},"也":{"docs":{},"可":{"docs":{},"能":{"docs":{},"不":{"docs":{},"包":{"docs":{},"含":{"docs":{},"值":{"docs":{},"。":{"docs":{},"(":{"docs":{},"不":{"docs":{},"能":{"docs":{},"包":{"docs":{},"含":{"docs":{},"其":{"docs":{},"他":{"docs":{},"任":{"docs":{},"何":{"docs":{},"值":{"docs":{},"比":{"docs":{},"如":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"值":{"docs":{},"或":{"docs":{},"者":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{},"。":{"docs":{},"只":{"docs":{},"能":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"来":{"docs":{},"尝":{"docs":{},"试":{"docs":{},"将":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"转":{"docs":{},"换":{"docs":{},"成":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"i":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}},"k":{"docs":{},"y":{"docs":{},"o":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.011135857461024499}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.005625879043600563}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},":":{"docs":{},"\"":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.005625879043600563}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.013157894736842105}},"s":{"docs":{},"设":{"docs":{},"置":{"docs":{},"新":{"docs":{},"值":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},",":{"docs":{},"它":{"docs":{},"的":{"docs":{},"w":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}},"-":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}},"-":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}}}}}}}}}}},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},"含":{"docs":{},"有":{"docs":{},"t":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"函":{"docs":{},"数":{"docs":{},".":{"docs":{},"根":{"docs":{},"据":{"docs":{},"函":{"docs":{},"数":{"docs":{},"名":{"docs":{},"称":{"docs":{},"推":{"docs":{},"测":{"docs":{},",":{"docs":{},"t":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"可":{"docs":{},"能":{"docs":{},"用":{"docs":{},"于":{"docs":{},"切":{"docs":{},"换":{"docs":{},"或":{"docs":{},"恢":{"docs":{},"复":{"docs":{},"某":{"docs":{},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},".":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"协":{"docs":{},"议":{"docs":{},"时":{"docs":{},",":{"docs":{},"必":{"docs":{},"须":{"docs":{},"在":{"docs":{},"t":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"方":{"docs":{},"法":{"docs":{},"前":{"docs":{},"加":{"docs":{},"上":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0019223375624759708}}}}}},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"s":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}},"e":{"docs":{},"实":{"docs":{},"现":{"docs":{},"了":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},"中":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}}}}}}}},"那":{"docs":{},"些":{"docs":{},"包":{"docs":{},"含":{"docs":{},"可":{"docs":{},"选":{"docs":{},"成":{"docs":{},"员":{"docs":{},"需":{"docs":{},"求":{"docs":{},"的":{"docs":{},"协":{"docs":{},"议":{"docs":{},"。":{"docs":{},"更":{"docs":{},"多":{"docs":{},"关":{"docs":{},"于":{"docs":{},"如":{"docs":{},"何":{"docs":{},"使":{"docs":{},"用":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"特":{"docs":{},"性":{"docs":{},"以":{"docs":{},"及":{"docs":{},"如":{"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":{},"n":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"0":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}},"1":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}},"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.015503875968992248}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}},"k":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.02074688796680498}},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}},"类":{"docs":{},"也":{"docs":{},"继":{"docs":{},"承":{"docs":{},"了":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}},"b":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}},"l":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0044742729306487695}}},"(":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}},")":{"docs":{},"\\":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}},"(":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"0":{"9":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}},"docs":{},"b":{"docs":{},")":{"docs":{},"、":{"docs":{},"换":{"docs":{},"页":{"docs":{},"符":{"docs":{},"(":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}},"k":{"docs":{},"e":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"i":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0019223375624759708}}}}}}},"e":{"docs":{},"a":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}},"m":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.004700352526439483}}}}}}}},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00404040404040404}}}}}},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}},".":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}},"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.008771929824561403}}}}}}}},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.2582899556583767}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.004020100502512563}}}}}}},"m":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"f":{"docs":{},"a":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.009208103130755065}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"a":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.01195814648729447}}}},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}},"x":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.020202020202020204}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"p":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"或":{"docs":{},"者":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"p":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"还":{"docs":{},"是":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},",":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"p":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.006265664160401002}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},"含":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0044742729306487695},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0066815144766146995}}}}}}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}},"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"的":{"docs":{},"值":{"docs":{},"被":{"docs":{},"用":{"docs":{},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"[":{"6":{"docs":{},"]":{"docs":{},"。":{"docs":{},"这":{"docs":{},"句":{"docs":{},"话":{"docs":{},"访":{"docs":{},"问":{"docs":{},"了":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"的":{"docs":{},"第":{"docs":{},"六":{"docs":{},"个":{"docs":{},"元":{"docs":{},"素":{"docs":{},",":{"docs":{},"返":{"docs":{},"回":{"1":{"8":{"docs":{},"或":{"docs":{},"者":{"6":{"docs":{},"的":{"3":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}},"docs":{}}},"docs":{}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}},"f":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.005747126436781609}}}}}},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}},"e":{"docs":{},"作":{"docs":{},"为":{"docs":{},"数":{"docs":{},"据":{"docs":{},"源":{"docs":{},"开":{"docs":{},"实":{"docs":{},"例":{"docs":{},"化":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}},"实":{"docs":{},"现":{"docs":{},"了":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0054869684499314125},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}},")":{"docs":{},"带":{"docs":{},"标":{"docs":{},"签":{"docs":{},"的":{"docs":{},"语":{"docs":{},"句":{"docs":{},"控":{"docs":{},"制":{"docs":{},"传":{"docs":{},"递":{"docs":{},"语":{"docs":{},"句":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":1.1111111111111112}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}},"g":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0071146245059288534},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0037593984962406013},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}},"s":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"0":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}},".":{"0":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}},"docs":{}}},"3":{"docs":{},".":{"1":{"4":{"1":{"5":{"9":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"4":{"2":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}},"docs":{}},"docs":{},"\"":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}},"(":{"3":{"docs":{},".":{"0":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}},"docs":{}}},"docs":{}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}},"数":{"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"被":{"docs":{},"直":{"docs":{},"接":{"docs":{},"遍":{"docs":{},"历":{"docs":{},",":{"docs":{},"并":{"docs":{},"调":{"docs":{},"用":{"docs":{},"其":{"docs":{},"中":{"docs":{},"元":{"docs":{},"素":{"docs":{},"的":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}},"被":{"docs":{},"当":{"docs":{},"做":{"docs":{},"是":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{},"h":{"docs":{},"a":{"docs":{},"m":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"等":{"docs":{},"类":{"docs":{},"型":{"docs":{},".":{"docs":{},"因":{"docs":{},"此":{"docs":{},"能":{"docs":{},"且":{"docs":{},"仅":{"docs":{},"能":{"docs":{},"调":{"docs":{},"用":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}},"s":{"docs":{},"e":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}}}},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.016260162601626018}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"’":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.007366482504604052},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.003015075376884422},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}},"s":{"docs":{},"t":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}}}}},"例":{"docs":{},"子":{"docs":{},"是":{"docs":{},"基":{"docs":{},"于":{"docs":{},"一":{"docs":{},"个":{"docs":{},"固":{"docs":{},"定":{"docs":{},"的":{"docs":{},"数":{"docs":{},"学":{"docs":{},"公":{"docs":{},"式":{"docs":{},"。":{"docs":{},"它":{"docs":{},"并":{"docs":{},"不":{"docs":{},"适":{"docs":{},"合":{"docs":{},"开":{"docs":{},"放":{"docs":{},"写":{"docs":{},"权":{"docs":{},"限":{"docs":{},"来":{"docs":{},"对":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"[":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"中":{"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":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}},"创":{"docs":{},"建":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"用":{"docs":{},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},"索":{"docs":{},"引":{"docs":{},"值":{"docs":{},"三":{"docs":{},"倍":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"数":{"docs":{},"值":{"3":{"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":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.008948545861297539}},"i":{"docs":{},"a":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.004700352526439483}},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}},".":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}},"u":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0447427293064877},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.003952569169960474},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.004484304932735426},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.004020100502512563},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.008547008547008548}},"。":{"docs":{},"从":{"docs":{},"字":{"docs":{},"面":{"docs":{},"意":{"docs":{},"思":{"docs":{},"来":{"docs":{},"说":{"docs":{},",":{"docs":{},"断":{"docs":{},"言":{"docs":{},"“":{"docs":{},"断":{"docs":{},"言":{"docs":{},"”":{"docs":{},"一":{"docs":{},"个":{"docs":{},"条":{"docs":{},"件":{"docs":{},"是":{"docs":{},"否":{"docs":{},"为":{"docs":{},"真":{"docs":{},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"断":{"docs":{},"言":{"docs":{},"来":{"docs":{},"保":{"docs":{},"证":{"docs":{},"在":{"docs":{},"运":{"docs":{},"行":{"docs":{},"其":{"docs":{},"他":{"docs":{},"代":{"docs":{},"码":{"docs":{},"之":{"docs":{},"前":{"docs":{},",":{"docs":{},"某":{"docs":{},"些":{"docs":{},"重":{"docs":{},"要":{"docs":{},"的":{"docs":{},"条":{"docs":{},"件":{"docs":{},"已":{"docs":{},"经":{"docs":{},"被":{"docs":{},"满":{"docs":{},"足":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"条":{"docs":{},"件":{"docs":{},"判":{"docs":{},"断":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"docs":{},"代":{"docs":{},"码":{"docs":{},"运":{"docs":{},"行":{"docs":{},"会":{"docs":{},"继":{"docs":{},"续":{"docs":{},"进":{"docs":{},"行":{"docs":{},";":{"docs":{},"如":{"docs":{},"果":{"docs":{},"条":{"docs":{},"件":{"docs":{},"判":{"docs":{},"断":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}},",":{"docs":{},"会":{"docs":{},"重":{"docs":{},"复":{"docs":{},"运":{"docs":{},"行":{"docs":{},"一":{"docs":{},"系":{"docs":{},"列":{"docs":{},"语":{"docs":{},"句":{"docs":{},",":{"docs":{},"直":{"docs":{},"到":{"docs":{},"条":{"docs":{},"件":{"docs":{},"变":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}},"则":{"docs":{},"会":{"docs":{},"执":{"docs":{},"行":{"docs":{},"大":{"docs":{},"括":{"docs":{},"号":{"docs":{},"内":{"docs":{},"部":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}},")":{"docs":{},",":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"将":{"docs":{},"会":{"docs":{},"被":{"docs":{},"执":{"docs":{},"行":{"docs":{},",":{"docs":{},"然":{"docs":{},"后":{"docs":{},"转":{"docs":{},"到":{"docs":{},"第":{"3":{"docs":{},"步":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"为":{"docs":{},"假":{"docs":{},"(":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"和":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"都":{"docs":{},"不":{"docs":{},"会":{"docs":{},"被":{"docs":{},"执":{"docs":{},"行":{"docs":{},",":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}},"转":{"docs":{},"到":{"docs":{},"第":{"1":{"docs":{},"步":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"为":{"docs":{},"假":{"docs":{},"(":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{},"d":{"docs":{},"o":{"docs":{},"-":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}},"2":{"docs":{},"步":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"为":{"docs":{},"假":{"docs":{},"(":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}},"n":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.016597510373443983}}}}},"i":{"docs":{},"l":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.44040058622374206},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}}}}}},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}},"e":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}},"a":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}},"e":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}},")":{"docs":{},"的":{"docs":{},"叶":{"docs":{},"子":{"docs":{},"节":{"docs":{},"点":{"docs":{},"传":{"docs":{},"向":{"docs":{},"根":{"docs":{},"节":{"docs":{},"点":{"docs":{},"。":{"docs":{},"也":{"docs":{},"就":{"docs":{},"是":{"docs":{},"说":{"docs":{},",":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.003952569169960474},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}}},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}},"l":{"docs":{},"i":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}},"p":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":1.667587476979742},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.005847953216374269},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.006030150753768844},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}},"e":{"docs":{},"-":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}},"e":{"docs":{},"-":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}},"y":{"docs":{},"[":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}},"e":{"docs":{},"l":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.008771929824561403},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.008771929824561403},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.008438818565400843},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}},"-":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.012658227848101266},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.012658227848101266},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"-":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"n":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}},"i":{"docs":{},"p":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.005376344086021506}},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036}}}}}}}}}}}}}}}}},"w":{"docs":{},"o":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0071146245059288534},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.005382545174932718}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},",":{"docs":{},"然":{"docs":{},"而":{"docs":{},"常":{"docs":{},"量":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"8":{"docs":{},"。":{"docs":{},"它":{"docs":{},"们":{"docs":{},"不":{"docs":{},"能":{"docs":{},"直":{"docs":{},"接":{"docs":{},"相":{"docs":{},"加":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"它":{"docs":{},"们":{"docs":{},"类":{"docs":{},"型":{"docs":{},"不":{"docs":{},"同":{"docs":{},"。":{"docs":{},"所":{"docs":{},"以":{"docs":{},"要":{"docs":{},"调":{"docs":{},"用":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},"(":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},")":{"docs":{},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},"数":{"docs":{},"字":{"docs":{},"并":{"docs":{},"用":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}},"-":{"docs":{},"d":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}}}}}},"’":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.2582899556583767},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":5.011135857461024},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.47496156739606843},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.443209574987787},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.4476360791326702},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":3.3862977602108035},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":5.013452914798206},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0038446751249519417},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":10.078947368421053},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.3178750897343862},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.008438818565400843},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.015503875968992248},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.01440329218106996}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.007473841554559043},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"s":{"docs":{},"-":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}}},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}}},"s":{"docs":{},"(":{"docs":{},"章":{"docs":{},"节":{"docs":{},"信":{"docs":{},"息":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}},")":{"docs":{},"使":{"docs":{},"用":{"docs":{},"函":{"docs":{},"数":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.23255813953488372}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"类":{"docs":{},"型":{"docs":{},"作":{"docs":{},"为":{"docs":{},"参":{"docs":{},"数":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.23255813953488372}}}}}}}}}}}},"返":{"docs":{},"回":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.23255813953488372}}}}}}}}}}}}}}}}}},"嵌":{"docs":{},"套":{"docs":{},"函":{"docs":{},"数":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.23255813953488372}}}}}}}}}}},"—":{"docs":{},"—":{"docs":{},"比":{"docs":{},"如":{"docs":{},"表":{"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":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"中":{"docs":{},"知":{"docs":{},"道":{"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":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"去":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"新":{"docs":{},"的":{"docs":{},"常":{"docs":{},"量":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"如":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"、":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},"外":{"docs":{},",":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"任":{"docs":{},"何":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"包":{"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":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},")":{"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":{},"g":{"docs":{},"e":{"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"声":{"docs":{},"明":{"docs":{},"属":{"docs":{},"性":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"时":{"docs":{},",":{"docs":{},"在":{"docs":{},"前":{"docs":{},"面":{"docs":{},"加":{"docs":{},"上":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"u":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"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":{},"u":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"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":{},"型":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"需":{"docs":{},"要":{"docs":{},"前":{"docs":{},"置":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"方":{"docs":{},"便":{"docs":{},"的":{"docs":{},"修":{"docs":{},"改":{"docs":{},"实":{"docs":{},"例":{"docs":{},"及":{"docs":{},"其":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"值":{"docs":{},"而":{"docs":{},"无":{"docs":{},"需":{"docs":{},"改":{"docs":{},"变":{"docs":{},"类":{"docs":{},"型":{"docs":{},";":{"docs":{},"而":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"和":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"中":{"docs":{},"的":{"docs":{},"成":{"docs":{},"员":{"docs":{},"均":{"docs":{},"为":{"docs":{},"值":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"上":{"docs":{},"下":{"docs":{},"文":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},")":{"docs":{},"中":{"docs":{},",":{"docs":{},"隐":{"docs":{},"式":{"docs":{},"成":{"docs":{},"员":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"是":{"docs":{},"访":{"docs":{},"问":{"docs":{},"某":{"docs":{},"个":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"的":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"。":{"docs":{},",":{"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":{},"f":{"docs":{},"语":{"docs":{},"句":{"docs":{},"来":{"docs":{},"检":{"docs":{},"查":{"docs":{},"是":{"docs":{},"否":{"docs":{},"能":{"docs":{},"成":{"docs":{},"功":{"docs":{},"调":{"docs":{},"用":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"s":{"docs":{},"方":{"docs":{},"法":{"docs":{},":":{"docs":{},"如":{"docs":{},"果":{"docs":{},"方":{"docs":{},"法":{"docs":{},"通":{"docs":{},"过":{"docs":{},"可":{"docs":{},"选":{"docs":{},"链":{"docs":{},"调":{"docs":{},"用":{"docs":{},"成":{"docs":{},"功":{"docs":{},",":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"s":{"docs":{},"的":{"docs":{},"隐":{"docs":{},"式":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"将":{"docs":{},"会":{"docs":{},"是":{"docs":{},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"没":{"docs":{},"有":{"docs":{},"成":{"docs":{},"功":{"docs":{},",":{"docs":{},"将":{"docs":{},"返":{"docs":{},"回":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.005847953216374269},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00823045267489712}}}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.014619883040935672},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0102880658436214}},"e":{"docs":{},"r":{"docs":{},"­":{"docs":{},":":{"docs":{},"­":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"-":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"-":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}}}}}},"=":{"docs":{},"=":{"docs":{},"­":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"-":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00411522633744856}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.008771929824561403},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.008771929824561403},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00411522633744856}},"e":{"docs":{},"­":{"docs":{},":":{"docs":{},"­":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"-":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"-":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"-":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.008438818565400843},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}}}}}}}}}},"’":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}},"。":{"docs":{},"协":{"docs":{},"议":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"元":{"docs":{},"类":{"docs":{},"型":{"docs":{},"—":{"docs":{},"—":{"docs":{},"并":{"docs":{},"不":{"docs":{},"是":{"docs":{},"运":{"docs":{},"行":{"docs":{},"时":{"docs":{},"适":{"docs":{},"配":{"docs":{},"该":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"具":{"docs":{},"体":{"docs":{},"类":{"docs":{},"型":{"docs":{},"—":{"docs":{},"—":{"docs":{},"是":{"docs":{},"该":{"docs":{},"协":{"docs":{},"议":{"docs":{},"名":{"docs":{},"字":{"docs":{},"紧":{"docs":{},"跟":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"。":{"docs":{},"比":{"docs":{},"如":{"docs":{},",":{"docs":{},"类":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"的":{"docs":{},"元":{"docs":{},"类":{"docs":{},"型":{"docs":{},"就":{"docs":{},"是":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},",":{"docs":{},"协":{"docs":{},"议":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"的":{"docs":{},"元":{"docs":{},"类":{"docs":{},"型":{"docs":{},"就":{"docs":{},"是":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}},"在":{"docs":{},"声":{"docs":{},"明":{"docs":{},"时":{"docs":{},"候":{"docs":{},"所":{"docs":{},"定":{"docs":{},"义":{"docs":{},"(":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}},"的":{"docs":{},"名":{"docs":{},"字":{"docs":{},"(":{"docs":{},"当":{"docs":{},"然":{"docs":{},"了":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"我":{"docs":{},"都":{"docs":{},"知":{"docs":{},"道":{"docs":{},"它":{"docs":{},"的":{"docs":{},"名":{"docs":{},"字":{"docs":{},"了":{"docs":{},"还":{"docs":{},"需":{"docs":{},"要":{"docs":{},"动":{"docs":{},"态":{"docs":{},"来":{"docs":{},"获":{"docs":{},"取":{"docs":{},"它":{"docs":{},"吗":{"docs":{},")":{"docs":{},"。":{"docs":{},"动":{"docs":{},"态":{"docs":{},"类":{"docs":{},"型":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"运":{"docs":{},"行":{"docs":{},"时":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"某":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"的":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.011135857461024499}}}},"-":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192}}}}}}}},"d":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.024608501118568233}},">":{"1":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}},"*":{"docs":{},"<":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}}}}}}},"2":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}},"3":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}},"4":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}},"5":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}},"6":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}},"7":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}},"8":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}},"9":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}},"docs":{}}},")":{"docs":{},"是":{"docs":{},"用":{"docs":{},"尖":{"docs":{},"括":{"docs":{},"号":{"docs":{},"括":{"docs":{},"起":{"docs":{},"来":{"docs":{},"的":{"docs":{},"(":{"docs":{},"<":{"docs":{},"t":{"docs":{},">":{"docs":{},")":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"尖":{"docs":{},"括":{"docs":{},"号":{"docs":{},"告":{"docs":{},"诉":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"那":{"docs":{},"个":{"docs":{},"t":{"docs":{},"是":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"函":{"docs":{},"数":{"docs":{},"所":{"docs":{},"定":{"docs":{},"义":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"因":{"docs":{},"为":{"docs":{},"t":{"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":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"分":{"docs":{},"别":{"docs":{},"代":{"docs":{},"表":{"docs":{},"t":{"docs":{},"n":{"docs":{},"t":{"docs":{},"和":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"“":{"docs":{},"某":{"docs":{},"种":{"docs":{},"类":{"docs":{},"型":{"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":{},"t":{"docs":{},"”":{"docs":{},"。":{"docs":{},"在":{"docs":{},"这":{"docs":{},"种":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},",":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},")":{"docs":{},"来":{"docs":{},"代":{"docs":{},"替":{"docs":{},"实":{"docs":{},"际":{"docs":{},"类":{"docs":{},"型":{"docs":{},"名":{"docs":{},"(":{"docs":{},"如":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"、":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"或":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},"。":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"docs":{},"名":{"docs":{},"并":{"docs":{},"不":{"docs":{},"是":{"docs":{},"表":{"docs":{},"示":{"docs":{},"t":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"任":{"docs":{},"何":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"其":{"docs":{},"规":{"docs":{},"定":{"docs":{},"a":{"docs":{},"和":{"docs":{},"b":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"同":{"docs":{},"一":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"t":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"管":{"docs":{},"t":{"docs":{},"表":{"docs":{},"示":{"docs":{},"任":{"docs":{},"何":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"只":{"docs":{},"有":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"函":{"docs":{},"数":{"docs":{},"在":{"docs":{},"每":{"docs":{},"次":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},"所":{"docs":{},"传":{"docs":{},"入":{"docs":{},"的":{"docs":{},"实":{"docs":{},"际":{"docs":{},"类":{"docs":{},"型":{"docs":{},"决":{"docs":{},"定":{"docs":{},"了":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"被":{"docs":{},"用":{"docs":{},"作":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"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":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"的":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"需":{"docs":{},"要":{"docs":{},"t":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"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":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"u":{"docs":{},",":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"需":{"docs":{},"要":{"docs":{},"u":{"docs":{},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"@":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.02197802197802198}}}}}}}}}}}},"u":{"docs":{},",":{"docs":{},"v":{"docs":{},",":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},",":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}},"则":{"docs":{},"是":{"docs":{},"跟":{"docs":{},"这":{"docs":{},"些":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"的":{"docs":{},"公":{"docs":{},"共":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"最":{"docs":{},"接":{"docs":{},"近":{"docs":{},"的":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},".":{"docs":{},"(":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"就":{"docs":{},"是":{"docs":{},"数":{"docs":{},"组":{"docs":{},"中":{"docs":{},"元":{"docs":{},"素":{"docs":{},"的":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}},"和":{"docs":{},"u":{"docs":{},"遵":{"docs":{},"守":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"同":{"docs":{},"时":{"docs":{},"要":{"docs":{},"求":{"docs":{},"它":{"docs":{},"们":{"docs":{},"的":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},"等":{"docs":{},"同":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"这":{"docs":{},"样":{"docs":{},"来":{"docs":{},"表":{"docs":{},"达":{"docs":{},":":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"2":{"4":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}},"docs":{}},"docs":{"chapter1/01_swift.html#gitbook_105":{"ref":"chapter1/01_swift.html#gitbook_105","tf":0.047619047619047616},"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.007168458781362007},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.01565377532228361},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.02056555269922879},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.011185682326621925},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0031620553359683794},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.005747126436781609},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.004998077662437524},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.008771929824561403},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.016080402010050253},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.011160714285714286},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.03375527426160337},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.015503875968992248},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.005698005698005698}},".":{"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}},"n":{"docs":{},"n":{"docs":{},",":{"docs":{},"其":{"docs":{},"中":{"docs":{},"n":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}},"-":{"docs":{},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192}}}}}},"和":{"docs":{},"y":{"docs":{},"是":{"docs":{},"常":{"docs":{},"量":{"docs":{},",":{"docs":{},"这":{"docs":{},"是":{"docs":{},"因":{"docs":{},"为":{"docs":{},"没":{"docs":{},"有":{"docs":{},"必":{"docs":{},"要":{"docs":{},"在":{"docs":{},"其":{"docs":{},"对":{"docs":{},"应":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"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":{},"将":{"docs":{},"会":{"docs":{},"创":{"docs":{},"建":{"docs":{},"临":{"docs":{},"时":{"docs":{},"变":{"docs":{},"量":{"docs":{},",":{"docs":{},"并":{"docs":{},"用":{"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":{},"a":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.47734387872796175},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.014064697609001406},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.07829977628635347},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.02391629297458894},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.011695906432748537},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.011160714285714286}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}},"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.016260162601626018}},"(":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}}}}},"二":{"docs":{},"十":{"docs":{},"一":{"docs":{},"点":{"docs":{},")":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"模":{"docs":{},"拟":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"中":{"docs":{},"的":{"docs":{},"扑":{"docs":{},"克":{"docs":{},"牌":{"docs":{},"点":{"docs":{},"数":{"docs":{},"。":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"包":{"docs":{},"含":{"2":{"docs":{},"个":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"定":{"docs":{},"义":{"docs":{},"的":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"类":{"docs":{},"型":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"没":{"docs":{},"有":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"的":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},",":{"docs":{},"在":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"结":{"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":{},",":{"docs":{},"也":{"docs":{},"同":{"docs":{},"样":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"属":{"docs":{},"性":{"docs":{},"用":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"和":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"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":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"规":{"docs":{},"则":{"docs":{},"中":{"docs":{},",":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"牌":{"docs":{},"可":{"docs":{},"以":{"docs":{},"表":{"docs":{},"示":{"1":{"docs":{},"或":{"docs":{},"者":{"1":{"1":{"docs":{},",":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"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":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter3/01_About_the_Language_Reference.html#gitbook_171":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_171","tf":0.08333333333333333}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.004700352526439483},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.004219409282700422},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.02247191011235955},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.007712082262210797},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.01098901098901099},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}},"。":{"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":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"地":{"docs":{},"方":{"docs":{},"使":{"docs":{},"用":{"docs":{},"了":{"docs":{},"非":{"docs":{},"布":{"docs":{},"尔":{"docs":{},"值":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}}}},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"实":{"docs":{},"际":{"docs":{},"上":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"和":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"默":{"docs":{},"认":{"docs":{},"都":{"docs":{},"是":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}},"h":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0030757400999615533},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}},"n":{"docs":{},"j":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.007168458781362007}}}}}}},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0055248618784530384},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}},")":{"docs":{},",":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"[":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}},"[":{"0":{"3":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.003683241252302026},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}},"6":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}},"9":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192}}},"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}},"1":{"0":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}},"4":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192}}},"9":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}},"docs":{}},"2":{"2":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192}}},"4":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}},"6":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}},"docs":{}},"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.004604051565377533},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}},"x":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192}}},"d":{"docs":{},"i":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00404040404040404},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}},"y":{"docs":{},")":{"docs":{},"中":{"docs":{},",":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"指":{"docs":{},"向":{"docs":{},"这":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"本":{"docs":{},"身":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"某":{"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":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{},"[":{"0":{"9":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}},"docs":{}},"1":{"4":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}},"docs":{}},"2":{"2":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}},"docs":{}},"docs":{}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767}},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.02074688796680498}},"e":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"新":{"docs":{},"类":{"docs":{},"是":{"docs":{},"在":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"的":{"docs":{},"基":{"docs":{},"础":{"docs":{},"上":{"docs":{},"创":{"docs":{},"建":{"docs":{},"起":{"docs":{},"来":{"docs":{},"。":{"docs":{},"因":{"docs":{},"此":{"docs":{},"你":{"docs":{},"需":{"docs":{},"要":{"docs":{},"将":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"放":{"docs":{},"在":{"docs":{},"b":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"不":{"docs":{},"仅":{"docs":{},"可":{"docs":{},"以":{"docs":{},"继":{"docs":{},"承":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"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":{},"b":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"你":{"docs":{},"就":{"docs":{},"可":{"docs":{},"以":{"docs":{},"调":{"docs":{},"用":{"docs":{},"它":{"docs":{},"继":{"docs":{},"承":{"docs":{},"来":{"docs":{},"的":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"的":{"docs":{},"子":{"docs":{},"类":{"docs":{},",":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"是":{"docs":{},"b":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"的":{"docs":{},"超":{"docs":{},"类":{"docs":{},"。":{"docs":{},"新":{"docs":{},"的":{"docs":{},"b":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"自":{"docs":{},"动":{"docs":{},"获":{"docs":{},"得":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"的":{"docs":{},"特":{"docs":{},"性":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"和":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"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":{},"性":{"docs":{},"来":{"docs":{},"更":{"docs":{},"好":{"docs":{},"地":{"docs":{},"描":{"docs":{},"述":{"docs":{},"b":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"子":{"docs":{},"类":{"docs":{},":":{"docs":{},"双":{"docs":{},"人":{"docs":{},"自":{"docs":{},"行":{"docs":{},"车":{"docs":{},"(":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},")":{"docs":{},"。":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"从":{"docs":{},"b":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"继":{"docs":{},"承":{"docs":{},"了":{"docs":{},"两":{"docs":{},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"而":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},"是":{"docs":{},"b":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"从":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"继":{"docs":{},"承":{"docs":{},"而":{"docs":{},"来":{"docs":{},"的":{"docs":{},"。":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"并":{"docs":{},"不":{"docs":{},"修":{"docs":{},"改":{"docs":{},"轮":{"docs":{},"子":{"docs":{},"的":{"docs":{},"数":{"docs":{},"量":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"它":{"docs":{},"仍":{"docs":{},"是":{"docs":{},"一":{"docs":{},"辆":{"docs":{},"自":{"docs":{},"行":{"docs":{},"车":{"docs":{},",":{"docs":{},"有":{"2":{"docs":{},"个":{"docs":{},"轮":{"docs":{},"子":{"docs":{},"。":{"docs":{},"但":{"docs":{},"它":{"docs":{},"需":{"docs":{},"要":{"docs":{},"修":{"docs":{},"改":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"器":{"docs":{},"来":{"docs":{},"设":{"docs":{},"置":{"docs":{},"它":{"docs":{},"定":{"docs":{},"制":{"docs":{},"的":{"docs":{},"特":{"docs":{},"性":{"docs":{},"(":{"docs":{},"自":{"docs":{},"行":{"docs":{},"车":{"docs":{},"只":{"docs":{},"有":{"2":{"docs":{},"个":{"docs":{},"轮":{"docs":{},"子":{"docs":{},")":{"docs":{},"。":{"docs":{},"b":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"的":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"器":{"docs":{},"调":{"docs":{},"用":{"docs":{},"了":{"docs":{},"它":{"docs":{},"父":{"docs":{},"类":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"的":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"器":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},",":{"docs":{},"以":{"docs":{},"此":{"docs":{},"确":{"docs":{},"保":{"docs":{},"在":{"docs":{},"b":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"试":{"docs":{},"图":{"docs":{},"修":{"docs":{},"改":{"docs":{},"那":{"docs":{},"些":{"docs":{},"继":{"docs":{},"承":{"docs":{},"来":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"前":{"docs":{},",":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"它":{"docs":{},"继":{"docs":{},"承":{"docs":{},"了":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.005025125628140704},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0054869684499314125}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"­":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"­":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.006696428571428571},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"a":{"docs":{},"l":{"docs":{},"-":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.011160714285714286},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.003429355281207133}}}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.005382545174932718},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.28671931083991387}}}}},"d":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},")":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"控":{"docs":{},"制":{"docs":{},"转":{"docs":{},"移":{"docs":{},"语":{"docs":{},"句":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"在":{"docs":{},"循":{"docs":{},"环":{"docs":{},"体":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"代":{"docs":{},"码":{"docs":{},"块":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":1.6666666666666665}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},",":{"docs":{},"通":{"docs":{},"过":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"9":{"docs":{},"试":{"docs":{},"图":{"docs":{},"访":{"docs":{},"问":{"docs":{},"一":{"docs":{},"个":{"docs":{},"行":{"docs":{},"星":{"docs":{},"。":{"docs":{},"i":{"docs":{},"f":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}}},"docs":{}}}}}}},"来":{"docs":{},"检":{"docs":{},"查":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}},")":{"docs":{},"到":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}},"自":{"docs":{},"动":{"docs":{},"拆":{"docs":{},"包":{"docs":{},"并":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"给":{"docs":{},"常":{"docs":{},"量":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.020761245674740483},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}},"-":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.4869555665403416},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.009045226130653266}}}}}}},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0066815144766146995}}}},"n":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0066815144766146995}}}}},"k":{"docs":{"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.04142011834319527}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.01775147928994083}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.005917159763313609}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.011834319526627219}}}}}}}}}}}}}}}}},"和":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"e":{"docs":{},"r":{"docs":{},"。":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"管":{"docs":{},"理":{"docs":{},"一":{"docs":{},"个":{"docs":{},"虚":{"docs":{},"拟":{"docs":{},"货":{"docs":{},"币":{"docs":{},"的":{"docs":{},"流":{"docs":{},"通":{"docs":{},",":{"docs":{},"在":{"docs":{},"这":{"docs":{},"个":{"docs":{},"流":{"docs":{},"通":{"docs":{},"中":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"永":{"docs":{},"远":{"docs":{},"不":{"docs":{},"可":{"docs":{},"能":{"docs":{},"拥":{"docs":{},"有":{"docs":{},"超":{"docs":{},"过":{"1":{"0":{"docs":{},",":{"0":{"0":{"0":{"docs":{},"的":{"docs":{},"硬":{"docs":{},"币":{"docs":{},"。":{"docs":{},"在":{"docs":{},"这":{"docs":{},"个":{"docs":{},"游":{"docs":{},"戏":{"docs":{},"中":{"docs":{},"有":{"docs":{},"且":{"docs":{},"只":{"docs":{},"能":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"存":{"docs":{},"在":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.005917159763313609}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"根":{"docs":{},"据":{"docs":{},"它":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"属":{"docs":{},"性":{"docs":{},"来":{"docs":{},"跟":{"docs":{},"踪":{"docs":{},"当":{"docs":{},"前":{"docs":{},"它":{"docs":{},"拥":{"docs":{},"有":{"docs":{},"的":{"docs":{},"硬":{"docs":{},"币":{"docs":{},"数":{"docs":{},"量":{"docs":{},"。":{"docs":{},"银":{"docs":{},"行":{"docs":{},"还":{"docs":{},"提":{"docs":{},"供":{"docs":{},"两":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"—":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"和":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.005917159763313609}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0031620553359683794},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}},"i":{"docs":{},"c":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}},"c":{"docs":{},"k":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.011235955056179775}},"s":{"docs":{},"(":{"docs":{},"s":{"1":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}},"docs":{}}}}}}}},"s":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0056179775280898875}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}},"e":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"c":{"docs":{},"a":{"docs":{},"(":{"8":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}},"docs":{}},"和":{"docs":{},"其":{"docs":{},"整":{"docs":{},"数":{"docs":{},"值":{"docs":{},"被":{"docs":{},"新":{"docs":{},"的":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},".":{"docs":{},"q":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"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":{},"个":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"c":{"docs":{},"a":{"docs":{},"或":{"docs":{},"者":{"docs":{},"一":{"docs":{},"个":{"docs":{},".":{"docs":{},"q":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"它":{"docs":{},"可":{"docs":{},"以":{"docs":{},"是":{"docs":{},"u":{"docs":{},"p":{"docs":{},"c":{"docs":{},"a":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"关":{"docs":{},"联":{"docs":{},"值":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"q":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},"-":{"docs":{},"t":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.07692307692307693},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00823045267489712}},"s":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.054945054945054944}}}}}}}}}}}}}}}}}}},"e":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.03636363636363636},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.004454342984409799},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.4373533027830558},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.9566100950183994}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"y":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}},"t":{"docs":{},"o":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002691272587466359}}}}}}},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}},"o":{"docs":{},"w":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0047430830039525695},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00461361014994233}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0019223375624759708}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}},"g":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.013245033112582781}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.009933774834437087}},"e":{"docs":{},"r":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},",":{"docs":{},"不":{"docs":{},"是":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.009933774834437087}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.009933774834437087}},"e":{"docs":{},"r":{"docs":{},"作":{"docs":{},"为":{"docs":{},"地":{"docs":{},"址":{"docs":{},"的":{"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":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":5.010989010989011}},"特":{"docs":{},"性":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}}}}}}}},":":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{},"i":{"docs":{},"b":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{},"i":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"i":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"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":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"来":{"docs":{},"与":{"docs":{},"x":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"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":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.008287292817679558},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.014245014245014245}},",":{"docs":{},"和":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"语":{"docs":{},"句":{"docs":{},"。":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}},"语":{"docs":{},"句":{"docs":{},"会":{"docs":{},"立":{"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":{},",":{"docs":{},"你":{"docs":{},"都":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"没":{"docs":{},"有":{"docs":{},"使":{"docs":{},"用":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"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":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"循":{"docs":{},"环":{"docs":{},"体":{"docs":{},"。":{"docs":{},"使":{"docs":{},"用":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{},"标":{"docs":{},"签":{"docs":{},"清":{"docs":{},"晰":{"docs":{},"的":{"docs":{},"表":{"docs":{},"明":{"docs":{},"了":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"、":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"、":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"语":{"docs":{},"句":{"docs":{},"和":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"后":{"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":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"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":{},"参":{"docs":{},"考":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"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":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"语":{"docs":{},"句":{"docs":{},"时":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"只":{"docs":{},"写":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"这":{"docs":{},"个":{"docs":{},"关":{"docs":{},"键":{"docs":{},"词":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"后":{"docs":{},"面":{"docs":{},"跟":{"docs":{},"上":{"docs":{},"标":{"docs":{},"签":{"docs":{},"名":{"docs":{},"(":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},",":{"docs":{},"请":{"docs":{},"参":{"docs":{},"考":{"docs":{},"控":{"docs":{},"制":{"docs":{},"流":{"docs":{},"一":{"docs":{},"章":{"docs":{},"的":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"不":{"docs":{},"会":{"docs":{},"发":{"docs":{},"生":{"docs":{},"这":{"docs":{},"种":{"docs":{},"“":{"docs":{},"掉":{"docs":{},"入":{"docs":{},"”":{"docs":{},"的":{"docs":{},"情":{"docs":{},"况":{"docs":{},"。":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}},"、":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"、":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"docs":{},"、":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"、":{"docs":{},"d":{"docs":{},"o":{"docs":{},"、":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"、":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"、":{"docs":{},"i":{"docs":{},"f":{"docs":{},"、":{"docs":{},"i":{"docs":{},"n":{"docs":{},"、":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"、":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"、":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"、":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"、":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.005698005698005698}}}}}}},"时":{"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":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"用":{"docs":{},"于":{"docs":{},"终":{"docs":{},"止":{"docs":{},"上":{"docs":{},"下":{"docs":{},"文":{"docs":{},"中":{"docs":{},"包":{"docs":{},"含":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0044742729306487695},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.005847953216374269}}}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}},"-":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.008547008547008548}}}}}}}}}}}},">":{"docs":{},"提":{"docs":{},"示":{"docs":{},"<":{"docs":{},"/":{"docs":{},"b":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.01098901098901099}}}}}}}},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"d":{"1":{"2":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}},"docs":{}},"6":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}},"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.009398496240601503},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}},"a":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123}}},"v":{"docs":{},"e":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.005847953216374269}}}},"n":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0056179775280898875}}}}}}}},"t":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.011278195488721804},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0019223375624759708},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}},".":{"docs":{},"t":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.011278195488721804}},"e":{"docs":{},"r":{"docs":{},"和":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.005639097744360902}},"e":{"docs":{},"r":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"不":{"docs":{},"从":{"docs":{},"文":{"docs":{},"件":{"docs":{},"中":{"docs":{},"导":{"docs":{},"入":{"docs":{},"数":{"docs":{},"据":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"当":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"被":{"docs":{},"创":{"docs":{},"建":{"docs":{},"时":{"docs":{},",":{"docs":{},"就":{"docs":{},"没":{"docs":{},"有":{"docs":{},"必":{"docs":{},"要":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"同":{"docs":{},"时":{"docs":{},",":{"docs":{},"更":{"docs":{},"有":{"docs":{},"意":{"docs":{},"义":{"docs":{},"的":{"docs":{},"是":{"docs":{},"当":{"docs":{},"用":{"docs":{},"到":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"功":{"docs":{},"能":{"docs":{},"是":{"docs":{},"从":{"docs":{},"文":{"docs":{},"件":{"docs":{},"导":{"docs":{},"入":{"docs":{},"数":{"docs":{},"据":{"docs":{},",":{"docs":{},"该":{"docs":{},"功":{"docs":{},"能":{"docs":{},"由":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"包":{"docs":{},"含":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"的":{"docs":{},"存":{"docs":{},"储":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"空":{"docs":{},"的":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{},"数":{"docs":{},"组":{"docs":{},"。":{"docs":{},"虽":{"docs":{},"然":{"docs":{},"没":{"docs":{},"有":{"docs":{},"写":{"docs":{},"出":{"docs":{},"全":{"docs":{},"部":{"docs":{},"代":{"docs":{},"码":{"docs":{},",":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}},"e":{"docs":{},"?":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"?":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"能":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"在":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"后":{"docs":{},"边":{"docs":{},"加":{"docs":{},"上":{"docs":{},"了":{"docs":{},"?":{"docs":{},"标":{"docs":{},"记":{"docs":{},"来":{"docs":{},"表":{"docs":{},"明":{"docs":{},"只":{"docs":{},"在":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"非":{"docs":{},"空":{"docs":{},"时":{"docs":{},"才":{"docs":{},"去":{"docs":{},"调":{"docs":{},"用":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"存":{"docs":{},"在":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"也":{"docs":{},"无":{"docs":{},"法":{"docs":{},"保":{"docs":{},"证":{"docs":{},"其":{"docs":{},"是":{"docs":{},"否":{"docs":{},"实":{"docs":{},"现":{"docs":{},"了":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"在":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.008287292817679558},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.23677754881758414},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.010238907849829351},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0034602076124567475},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.008438818565400843},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.005698005698005698}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}},"-":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.008547008547008548}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0047430830039525695},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.004484304932735426},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.005382545174932718}},"i":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.011834319526627219},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.01818181818181818},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}},"来":{"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":{"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.005917159763313609}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.030303030303030304}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.012448132780082987},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0031620553359683794},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}}},"b":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767}}}}}}},"c":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0030757400999615533},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.008620689655172414}}}}},"-":{"docs":{},"d":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.015625},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0054869684499314125}}}}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.011160714285714286},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.003429355281207133}},"a":{"docs":{},"l":{"docs":{},"-":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.011160714285714286},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.003429355281207133}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0019223375624759708},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.003015075376884422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":10.018518518518519},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.008547008547008548}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.004801097393689987}}}}}}}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}}}}}},"p":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.005639097744360902}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"l":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.010282776349614395},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}},"x":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.005141388174807198},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}},"e":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"?":{"docs":{},".":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},",":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}},"不":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}},"属":{"docs":{},"性":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}},"并":{"docs":{},"不":{"docs":{},"是":{"docs":{},"该":{"docs":{},"游":{"docs":{},"戏":{"docs":{},"的":{"docs":{},"必":{"docs":{},"备":{"docs":{},"条":{"docs":{},"件":{"docs":{},",":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"被":{"docs":{},"定":{"docs":{},"义":{"docs":{},"为":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"的":{"docs":{},"可":{"docs":{},"选":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"在":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"i":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.015659955257270694}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"i":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}},"c":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"<":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.004454342984409799}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}},"e":{"docs":{},"l":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}}},"的":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"上":{"docs":{},",":{"docs":{},"当":{"docs":{},"然":{"docs":{},"其":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"类":{"docs":{},"型":{"docs":{},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"基":{"docs":{},"本":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"如":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"a":{"docs":{},"l":{"docs":{},"-":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.003015075376884422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00411522633744856}},",":{"docs":{},"­":{"docs":{},"(":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}},"­":{"docs":{},",":{"docs":{},"­":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"-":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"特":{"docs":{},"化":{"docs":{},"版":{"docs":{},"本":{"docs":{},",":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.008908685968819599},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.01098901098901099},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.004020100502512563}}}}}}}}},"e":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.018796992481203006}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.022099447513812154},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.007518796992481203}},"l":{"docs":{},":":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}},"(":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0037593984962406013}}}}}},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.010025062656641603}},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0037593984962406013}},"a":{"docs":{},"t":{"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":{},"的":{"docs":{},"逻":{"docs":{},"辑":{"docs":{},"中":{"docs":{},",":{"docs":{},"即":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0037593984962406013}},"e":{"docs":{},"r":{"docs":{},"实":{"docs":{},"现":{"docs":{},"了":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}},"遵":{"docs":{},"循":{"docs":{},"了":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}},"协":{"docs":{},"议":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"任":{"docs":{},"意":{"docs":{},"含":{"docs":{},"有":{"docs":{},"骰":{"docs":{},"子":{"docs":{},"的":{"docs":{},"游":{"docs":{},"戏":{"docs":{},"中":{"docs":{},"实":{"docs":{},"现":{"docs":{},",":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"来":{"docs":{},"追":{"docs":{},"踪":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"含":{"docs":{},"有":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"和":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"两":{"docs":{},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"前":{"docs":{},"者":{"docs":{},"用":{"docs":{},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},"骰":{"docs":{},"子":{"docs":{},"有":{"docs":{},"几":{"docs":{},"个":{"docs":{},"面":{"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":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"类":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"代":{"docs":{},"表":{"docs":{},"桌":{"docs":{},"游":{"docs":{},"中":{"docs":{},"的":{"docs":{},"n":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"可":{"docs":{},"被":{"docs":{},"当":{"docs":{},"作":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}},"遵":{"docs":{},"循":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.007518796992481203},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}},"属":{"docs":{},"性":{"docs":{},"监":{"docs":{},"视":{"docs":{},"器":{"docs":{},"将":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}},"监":{"docs":{},"视":{"docs":{},"器":{"docs":{},"会":{"docs":{},"将":{"docs":{},"旧":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"值":{"docs":{},"作":{"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":{},"l":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"在":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"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":{},"如":{"docs":{},"果":{"docs":{},"总":{"docs":{},"的":{"docs":{},"步":{"docs":{},"数":{"docs":{},"增":{"docs":{},"加":{"docs":{},"了":{"docs":{},",":{"docs":{},"就":{"docs":{},"输":{"docs":{},"出":{"docs":{},"一":{"docs":{},"个":{"docs":{},"消":{"docs":{},"息":{"docs":{},"表":{"docs":{},"示":{"docs":{},"增":{"docs":{},"加":{"docs":{},"了":{"docs":{},"多":{"docs":{},"少":{"docs":{},"步":{"docs":{},"。":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"没":{"docs":{},"有":{"docs":{},"提":{"docs":{},"供":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"名":{"docs":{},"称":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"默":{"docs":{},"认":{"docs":{},"值":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00411522633744856}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.011235955056179775}},"e":{"docs":{},"s":{"docs":{},"[":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.010276679841897233}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.017064846416382253}},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"当":{"docs":{},"它":{"docs":{},"等":{"docs":{},"于":{"docs":{},".":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},",":{"docs":{},"打":{"docs":{},"印":{"docs":{},"“":{"docs":{},"l":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"被":{"docs":{},"推":{"docs":{},"断":{"docs":{},"当":{"docs":{},"它":{"docs":{},"被":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"能":{"docs":{},"值":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"。":{"docs":{},"一":{"docs":{},"旦":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"被":{"docs":{},"声":{"docs":{},"明":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"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":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}},"o":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.011067193675889328}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}},"o":{"docs":{},"v":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}}}}},"j":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.003952569169960474},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}},"o":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.012925969447708578},"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.012448132780082987},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.008960573476702509},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0066815144766146995},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.004219409282700422},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.012853470437017995},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.01098901098901099},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.012648221343873518},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.017241379310344827},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.011278195488721804},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.005979073243647235},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.008771929824561403},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}},"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.005639097744360902}}}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}},"或":{"docs":{},"者":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}},"精":{"docs":{},"确":{"docs":{},"度":{"docs":{},"很":{"docs":{},"高":{"docs":{},",":{"docs":{},"至":{"docs":{},"少":{"docs":{},"有":{"1":{"5":{"docs":{},"位":{"docs":{},"数":{"docs":{},"字":{"docs":{},",":{"docs":{},"而":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"最":{"docs":{},"少":{"docs":{},"只":{"docs":{},"有":{"6":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}},"docs":{}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}},"表":{"docs":{},"示":{"6":{"4":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}},"docs":{}},"docs":{}}},"[":{"docs":{},"]":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}},"和":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}},"型":{"docs":{},"的":{"docs":{},"值":{"1":{"docs":{},".":{"0":{"docs":{},"被":{"docs":{},"用":{"docs":{},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},"“":{"1":{"docs":{},"米":{"docs":{},"”":{"docs":{},"。":{"docs":{},"这":{"docs":{},"就":{"docs":{},"是":{"docs":{},"为":{"docs":{},"什":{"docs":{},"么":{"docs":{},"m":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"返":{"docs":{},"回":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"—":{"docs":{},"—":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"1":{"docs":{},".":{"docs":{},"m":{"docs":{},"被":{"docs":{},"认":{"docs":{},"为":{"docs":{},"是":{"docs":{},"计":{"docs":{},"算":{"1":{"docs":{},".":{"0":{"docs":{},"的":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}},"docs":{}}},"docs":{},"看":{"docs":{},"作":{"docs":{},"是":{"docs":{},"某":{"docs":{},"单":{"docs":{},"位":{"docs":{},"下":{"docs":{},"的":{"docs":{},"长":{"docs":{},"度":{"docs":{},"值":{"docs":{},"。":{"docs":{},"即":{"docs":{},"使":{"docs":{},"它":{"docs":{},"们":{"docs":{},"被":{"docs":{},"实":{"docs":{},"现":{"docs":{},"为":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"但":{"docs":{},"这":{"docs":{},"些":{"docs":{},"属":{"docs":{},"性":{"docs":{},"仍":{"docs":{},"可":{"docs":{},"以":{"docs":{},"接":{"docs":{},"一":{"docs":{},"个":{"docs":{},"带":{"docs":{},"有":{"docs":{},"d":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174}}}}}}},")":{"docs":{},"。":{"docs":{},"在":{"docs":{},"第":{"docs":{},"二":{"docs":{},"个":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"函":{"docs":{},"数":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"a":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"被":{"docs":{},"指":{"docs":{},"定":{"docs":{},"为":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"表":{"docs":{},"示":{"6":{"4":{"docs":{},"位":{"docs":{},"浮":{"docs":{},"点":{"docs":{},"数":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.009398496240601503},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0044742729306487695},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}},"c":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0044742729306487695}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}}}}}}}}}}}}},"t":{"docs":{},"f":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}},"docs":{}},"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}},"docs":{}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}},"、":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"和":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.007366482504604052},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":1.1253561253561255}},"e":{"docs":{},"-":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.005698005698005698}}}}}}}}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}},"’":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}},"w":{"docs":{},"n":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013}},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.016600790513833993}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"和":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.8333333333333333}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}},"(":{"docs":{},".":{"docs":{},")":{"docs":{},"语":{"docs":{},"法":{"docs":{},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},"在":{"docs":{},"其":{"docs":{},"它":{"docs":{},"模":{"docs":{},"块":{"docs":{},"(":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"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":{},"例":{"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":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"模":{"docs":{},"块":{"docs":{},"中":{"docs":{},"声":{"docs":{},"明":{"docs":{},"的":{"docs":{},"命":{"docs":{},"名":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"m":{"docs":{},"y":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}}}},"o":{"docs":{},"t":{"docs":{},"n":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"t":{"docs":{},"o":{"docs":{},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}},"’":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}},"`":{"docs":{},"`":{"docs":{},"o":{"docs":{},"`":{"docs":{},"`":{"docs":{},"g":{"docs":{},"`":{"docs":{},"`":{"docs":{},"!":{"docs":{},"和":{"docs":{},"":{"docs":{},"":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}},"u":{"docs":{},"b":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.013363028953229399}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.008908685968819599}},".":{"docs":{},"\"":{"docs":{},"(":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"原":{"docs":{},"值":{"docs":{},"是":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848}}}}}},"r":{"docs":{},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"c":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}},"i":{"docs":{},"c":{"docs":{},"-":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}},"e":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.004604051565377533},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.005847953216374269},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.008928571428571428},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767}},"-":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}},".":{"docs":{},"\"":{"docs":{},"(":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.2582899556583767},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.004454342984409799},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.005875440658049354},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.023890784982935155},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.016260162601626018},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}},"e":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.017064846416382253},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.004484304932735426}}}}}}}},"函":{"docs":{},"数":{"docs":{},"来":{"docs":{},"进":{"docs":{},"行":{"docs":{},"数":{"docs":{},"组":{"docs":{},"遍":{"docs":{},"历":{"docs":{},"。":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"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":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":3.333333333333333}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"-":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0027434842249657062}}}}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.008438818565400843},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}}},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}},"o":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.011185682326621925}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}}}}}}}},"r":{"docs":{},"y":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}}}}}},".":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}},";":{"docs":{},"和":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}},"表":{"docs":{},"示":{"docs":{},"t":{"docs":{},"遵":{"docs":{},"守":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"而":{"docs":{},"且":{"docs":{},"t":{"docs":{},"的":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},"t":{"docs":{},".":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"遵":{"docs":{},"守":{"docs":{},"e":{"docs":{},"a":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},"(":{"docs":{},"t":{"docs":{},"有":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"因":{"docs":{},"为":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"声":{"docs":{},"明":{"docs":{},"了":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"而":{"docs":{},"t":{"docs":{},"遵":{"docs":{},"守":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},">":{"docs":{},"(":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"都":{"docs":{},"可":{"docs":{},"以":{"docs":{},"安":{"docs":{},"全":{"docs":{},"的":{"docs":{},"使":{"docs":{},"用":{"docs":{},"在":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"函":{"docs":{},"数":{"docs":{},"中":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"其":{"docs":{},"保":{"docs":{},"证":{"docs":{},"支":{"docs":{},"持":{"docs":{},"等":{"docs":{},"式":{"docs":{},"操":{"docs":{},"作":{"docs":{},"。":{"docs":{},"为":{"docs":{},"了":{"docs":{},"说":{"docs":{},"明":{"docs":{},"这":{"docs":{},"个":{"docs":{},"事":{"docs":{},"实":{"docs":{},",":{"docs":{},"当":{"docs":{},"你":{"docs":{},"定":{"docs":{},"义":{"docs":{},"一":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"时":{"docs":{},",":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"写":{"docs":{},"一":{"docs":{},"个":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"也":{"docs":{},"就":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"“":{"docs":{},"任":{"docs":{},"何":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"都":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.5165799113167534},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.004219409282700422},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.005141388174807198},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.01114955786236063}}}},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0038446751249519417}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599},"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002691272587466359},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.004020100502512563}},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}},"n":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.005847953216374269}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.008695652173913044},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.008458285274894272}},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.005875440658049354}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"m":{"docs":{},"y":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}},"c":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}},"l":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}},"l":{"docs":{},"i":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}}},"-":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.003015075376884422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}},",":{"docs":{},"那":{"docs":{},"这":{"docs":{},"个":{"docs":{},"数":{"docs":{},"相":{"docs":{},"当":{"docs":{},"于":{"docs":{},"基":{"docs":{},"数":{"docs":{},"和":{"1":{"0":{"docs":{},"^":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}},"docs":{}},"2":{"docs":{},"^":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}},"docs":{}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.443209574987787},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0030757400999615533},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":2.049246231155779},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.004464285714285714},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.008438818565400843},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.019204389574759947},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.037037037037037035}},"i":{"docs":{},"o":{"docs":{},"n":{"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":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"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":{},"行":{"docs":{},"完":{"docs":{},"成":{"docs":{},"后":{"docs":{},",":{"docs":{},"重":{"docs":{},"复":{"docs":{},"执":{"docs":{},"行":{"docs":{},"第":{"2":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},")":{"docs":{},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.43478260869565216}}}}}},"前":{"docs":{},"缀":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.2857142857142857}}}}}}}}}}}}}},"字":{"docs":{},"符":{"docs":{},"型":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.2857142857142857}}}}}}}}}}}}}}}},")":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.2857142857142857}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.2857142857142857}}}}}}}}}}}}}},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"函":{"docs":{},"数":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.2857142857142857}}}}}}}}}}}}}}}},"可":{"docs":{},"选":{"docs":{},"链":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"-":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.2857142857142857}}}}}}}}}}}}}}}}}}}}}}},"后":{"docs":{},"缀":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.2857142857142857}}}}}}}}}}}}}}}}}}},"圆":{"docs":{},"括":{"docs":{},"号":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.2857142857142857}}}}}}}}}}}}}}}}}},"强":{"docs":{},"制":{"docs":{},"取":{"docs":{},"值":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},"-":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.2857142857142857}}}}}}}}}}}}}}}}}}}}},"显":{"docs":{},"式":{"docs":{},"成":{"docs":{},"员":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.2857142857142857}}}}}}}}}}}}}}}}}},"超":{"docs":{},"类":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.2857142857142857}}}}}}}}}}}}}}}}}},"闭":{"docs":{},"包":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.2857142857142857}}}}}}}}}}}}}},"隐":{"docs":{},"式":{"docs":{},"成":{"docs":{},"员":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.2857142857142857}}}}}}}}}}}}}}}}}},"。":{"docs":{},"起":{"docs":{},"保":{"docs":{},"护":{"docs":{},"作":{"docs":{},"用":{"docs":{},"的":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"是":{"docs":{},"这":{"docs":{},"样":{"docs":{},"构":{"docs":{},"成":{"docs":{},"的":{"docs":{},":":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"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":{},"仅":{"docs":{},"当":{"docs":{},"控":{"docs":{},"制":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"的":{"docs":{},"某":{"docs":{},"个":{"docs":{},"模":{"docs":{},"式":{"docs":{},"且":{"docs":{},"起":{"docs":{},"保":{"docs":{},"护":{"docs":{},"作":{"docs":{},"用":{"docs":{},"的":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"为":{"docs":{},"真":{"docs":{},"时":{"docs":{},",":{"docs":{},"对":{"docs":{},"应":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"块":{"docs":{},"中":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"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":{},"含":{"docs":{},"两":{"docs":{},"个":{"docs":{},"相":{"docs":{},"等":{"docs":{},"元":{"docs":{},"素":{"docs":{},"的":{"docs":{},"元":{"docs":{},"组":{"docs":{},",":{"docs":{},"如":{"docs":{},"(":{"1":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"会":{"docs":{},"首":{"docs":{},"先":{"docs":{},"被":{"docs":{},"计":{"docs":{},"算":{"docs":{},",":{"docs":{},"然":{"docs":{},"后":{"docs":{},"与":{"docs":{},"每":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"的":{"docs":{},"模":{"docs":{},"式":{"docs":{},"(":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"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":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"块":{"docs":{},"里":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"。":{"docs":{},"另":{"docs":{},"外":{"docs":{},",":{"docs":{},"每":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"块":{"docs":{},"都":{"docs":{},"不":{"docs":{},"能":{"docs":{},"为":{"docs":{},"空":{"docs":{},",":{"docs":{},"也":{"docs":{},"就":{"docs":{},"是":{"docs":{},"说":{"docs":{},"在":{"docs":{},"每":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"块":{"docs":{},"中":{"docs":{},"至":{"docs":{},"少":{"docs":{},"有":{"docs":{},"一":{"docs":{},"条":{"docs":{},"语":{"docs":{},"句":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"不":{"docs":{},"想":{"docs":{},"在":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"到":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"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":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}},"-":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}},"­":{"docs":{},",":{"docs":{},"­":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0027434842249657062},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.008438818565400843},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}},".":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}},"[":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}},"­":{"docs":{},",":{"docs":{},"­":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}},":":{"docs":{},"­":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":10.031609195402298},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.006265664160401002},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"]":{"docs":{},"[":{"6":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}},"7":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}},"docs":{}}},"-":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}}}}},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}},"r":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.23677754881758414},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.8747066055661116},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"r":{"docs":{},"a":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.014245014245014245}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0030757400999615533}}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}},"w":{"docs":{},"w":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}},"a":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0056179775280898875}}}},"g":{"docs":{},"g":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0200445434298441}},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.005847953216374269}}}}}}},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.013651877133105802}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.006825938566552901}}}}}}}},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}}}}}},"s":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.010238907849829351}}},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}},"c":{"docs":{},"h":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.008695652173913044},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.004484304932735426},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0019223375624759708}}}}},"l":{"docs":{},"v":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}},"-":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.005847953216374269},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.005698005698005698}}}}}}}},"语":{"docs":{},"句":{"docs":{},"也":{"docs":{},"可":{"docs":{},"包":{"docs":{},"含":{"docs":{},"i":{"docs":{},"f":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}},",":{"docs":{},"当":{"docs":{},"只":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"-":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.011160714285714286},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.003429355281207133}}}}}}}}}}}}}}}}},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.009398496240601503},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}},"e":{"docs":{},"t":{"docs":{},"g":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013}},"s":{"docs":{},"和":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}},"和":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.008298755186721992}}}}}}},"(":{"docs":{},"或":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_171":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_171","tf":0.16666666666666666},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_171":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_171","tf":0.125}},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_171":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_171","tf":0.125},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0027434842249657062}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"-":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00411522633744856}}}}}}}}}}}}}}}},"方":{"docs":{},"法":{"docs":{},"​":{"docs":{},"​":{"docs":{},"块":{"docs":{},"可":{"docs":{},"以":{"docs":{},"由":{"docs":{},"一":{"docs":{},"个":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"子":{"docs":{},"句":{"docs":{},"后":{"docs":{},"跟":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"子":{"docs":{},"句":{"docs":{},"构":{"docs":{},"成":{"docs":{},",":{"docs":{},"用":{"docs":{},"大":{"docs":{},"括":{"docs":{},"号":{"docs":{},"括":{"docs":{},"起":{"docs":{},"来":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"由":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"子":{"docs":{},"句":{"docs":{},"后":{"docs":{},"跟":{"docs":{},"一":{"docs":{},"个":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_171":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_171","tf":0.041666666666666664}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}}}}}}}}}}},"/":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}}}},"获":{"docs":{},"取":{"docs":{},"某":{"docs":{},"个":{"docs":{},"值":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"通":{"docs":{},"过":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{},"但":{"docs":{},"它":{"docs":{},"不":{"docs":{},"要":{"docs":{},"求":{"docs":{},"属":{"docs":{},"性":{"docs":{},"是":{"docs":{},"存":{"docs":{},"储":{"docs":{},"型":{"docs":{},"属":{"docs":{},"性":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}},"代":{"docs":{},"码":{"docs":{},"块":{"docs":{},"中":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"写":{"docs":{},"在":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"表":{"docs":{},"示":{"docs":{},"。":{"docs":{},"它":{"docs":{},"们":{"docs":{},"的":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"是":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"型":{"docs":{},",":{"docs":{},"而":{"docs":{},"且":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"于":{"docs":{},"所":{"docs":{},"有":{"docs":{},"接":{"docs":{},"受":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.02074688796680498}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.007518796992481203},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.06201550387596899},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},".":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}}}}}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"-":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.015503875968992248},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.003429355281207133}},"e":{"docs":{},"[":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}},"]":{"docs":{},".":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"-":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}}},"­":{"docs":{},",":{"docs":{},"­":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"-":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.031007751937984496},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.003429355281207133}},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.006172839506172839}}}}}}}},"­":{"docs":{},",":{"docs":{},"­":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"-":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}},"b":{"docs":{},"y":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.008620689655172414}}}}}},"e":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00404040404040404},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.005747126436781609},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.003015075376884422}},"(":{"docs":{},"\"":{"docs":{},"b":{"docs":{},"o":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"该":{"docs":{},"函":{"docs":{},"数":{"docs":{},"结":{"docs":{},"束":{"docs":{},"它":{"docs":{},"的":{"docs":{},"执":{"docs":{},"行":{"docs":{},"并":{"docs":{},"返":{"docs":{},"回":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}}}},"a":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}},"t":{"docs":{},"m":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"t":{"docs":{},"h":{"docs":{},"n":{"docs":{},"k":{"docs":{},"l":{"docs":{},"k":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.016483516483516484}},"[":{"docs":{},"(":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.01098901098901099}}}}}}}}},"a":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}},"p":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}},"e":{"docs":{},"m":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_171":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_171","tf":0.08333333333333333},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.015503875968992248},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.042735042735042736}}}}}}},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}}}}},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.012658227848101266},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.02247191011235955},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0044742729306487695},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0030757400999615533},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.10989010989010989},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.02631578947368421},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.011160714285714286},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.004801097393689987}},";":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}},"g":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002306805074971165},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.023668639053254437},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.015037593984962405}},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.003683241252302026},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0037593984962406013}},"去":{"docs":{},"跳":{"docs":{},"转":{"docs":{},"到":{"docs":{},"下":{"docs":{},"一":{"docs":{},"次":{"docs":{},"循":{"docs":{},"环":{"docs":{},"迭":{"docs":{},"代":{"docs":{},"时":{"docs":{},",":{"docs":{},"这":{"docs":{},"里":{"docs":{},"使":{"docs":{},"用":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{},"标":{"docs":{},"签":{"docs":{},"并":{"docs":{},"不":{"docs":{},"是":{"docs":{},"严":{"docs":{},"格":{"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":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"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":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"使":{"docs":{},"用":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{},"标":{"docs":{},"签":{"docs":{},"也":{"docs":{},"是":{"docs":{},"没":{"docs":{},"有":{"docs":{},"危":{"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":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"语":{"docs":{},"句":{"docs":{},"结":{"docs":{},"束":{"docs":{},"本":{"docs":{},"次":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}},"跳":{"docs":{},"转":{"docs":{},"控":{"docs":{},"制":{"docs":{},"去":{"docs":{},"执":{"docs":{},"行":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}}}}}},",":{"docs":{},"d":{"1":{"2":{"docs":{},",":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"m":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},")":{"docs":{},"-":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}}}}}},"方":{"docs":{},"法":{"docs":{},"从":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"参":{"docs":{},"数":{"docs":{},"获":{"docs":{},"取":{"docs":{},"游":{"docs":{},"戏":{"docs":{},"信":{"docs":{},"息":{"docs":{},"并":{"docs":{},"输":{"docs":{},"出":{"docs":{},".":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"在":{"docs":{},"方":{"docs":{},"法":{"docs":{},"中":{"docs":{},"被":{"docs":{},"当":{"docs":{},"做":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"方":{"docs":{},"法":{"docs":{},"中":{"docs":{},"只":{"docs":{},"能":{"docs":{},"访":{"docs":{},"问":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}}}}}},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"b":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848}}}}}}}}}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0034602076124567475}},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"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":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"类":{"docs":{},"型":{"docs":{},"都":{"docs":{},"是":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"集":{"docs":{},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"数":{"docs":{},"组":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"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":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.008547008547008548}}}}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.005698005698005698}}}}}}}}}}}}}}},"j":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0044742729306487695},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.016260162601626018}}}}},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.04040404040404041},"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.006622516556291391},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0037593984962406013}},"!":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00404040404040404}}}}}}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}},"变":{"docs":{},"量":{"docs":{},"被":{"docs":{},"设":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},"后":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"实":{"docs":{},"例":{"docs":{},"和":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"7":{"3":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00404040404040404}},",":{"docs":{},"并":{"docs":{},"分":{"docs":{},"别":{"docs":{},"被":{"docs":{},"设":{"docs":{},"定":{"docs":{},"为":{"docs":{},"下":{"docs":{},"面":{"docs":{},"的":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"和":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"变":{"docs":{},"量":{"docs":{},"都":{"docs":{},"被":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"在":{"docs":{},"被":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},"后":{"docs":{},",":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"实":{"docs":{},"例":{"docs":{},"和":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}},"赋":{"docs":{},"值":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}},"docs":{}},"docs":{}}}}}}}},"现":{"docs":{},"在":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"指":{"docs":{},"向":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"而":{"docs":{},"变":{"docs":{},"量":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"7":{"3":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"指":{"docs":{},"向":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"可":{"docs":{},"选":{"docs":{},"类":{"docs":{},"型":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"变":{"docs":{},"量":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"保":{"docs":{},"存":{"docs":{},"某":{"docs":{},"个":{"docs":{},"特":{"docs":{},"定":{"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":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},"里":{"docs":{},"的":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"属":{"docs":{},"性":{"docs":{},"。":{"docs":{},"这":{"docs":{},"里":{"docs":{},"使":{"docs":{},"用":{"docs":{},"了":{"docs":{},"两":{"docs":{},"层":{"docs":{},"可":{"docs":{},"选":{"docs":{},"链":{"docs":{},"来":{"docs":{},"联":{"docs":{},"系":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"和":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.013245033112582781}}},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.013245033112582781}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"!":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}},"?":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"?":{"docs":{},".":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{},"?":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.006622516556291391}}}}}}}}}}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.009933774834437087}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}},"[":{"0":{"docs":{},"]":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.006622516556291391}}}}}}}},"docs":{}}},"不":{"docs":{},"是":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},"时":{"docs":{},",":{"docs":{},"会":{"docs":{},"运":{"docs":{},"行":{"docs":{},"通":{"docs":{},"过":{"docs":{},",":{"docs":{},"且":{"docs":{},"会":{"docs":{},"将":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"值":{"docs":{},"现":{"docs":{},"在":{"docs":{},"包":{"docs":{},"含":{"docs":{},"一":{"docs":{},"个":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"然":{"docs":{},"而":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"现":{"docs":{},"在":{"docs":{},"是":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"?":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"?":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"后":{"docs":{},"面":{"docs":{},",":{"docs":{},"在":{"docs":{},"子":{"docs":{},"脚":{"docs":{},"本":{"docs":{},"括":{"docs":{},"号":{"docs":{},"的":{"docs":{},"前":{"docs":{},"面":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.006622516556291391}},".":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.006622516556291391}},"e":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.006622516556291391}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.013245033112582781}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813},"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.011834319526627219}},"(":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813}}}}}}}},"s":{"1":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813}}},"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.007032348804500703}}}}}},"e":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.014064697609001406}},"的":{"docs":{},"值":{"docs":{},"没":{"docs":{},"有":{"docs":{},"被":{"docs":{},"指":{"docs":{},"定":{"docs":{},",":{"docs":{},"函":{"docs":{},"数":{"docs":{},"会":{"docs":{},"使":{"docs":{},"用":{"docs":{},"默":{"docs":{},"认":{"docs":{},"值":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}},"中":{"docs":{},",":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"叫":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"的":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"和":{"docs":{},"s":{"1":{"docs":{},"的":{"docs":{},"局":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},",":{"docs":{},"第":{"docs":{},"二":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"叫":{"docs":{},"t":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"的":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"和":{"docs":{},"s":{"2":{"docs":{},"的":{"docs":{},"局":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},",":{"docs":{},"第":{"docs":{},"三":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"叫":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"和":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"另":{"docs":{},"一":{"docs":{},"个":{"docs":{},"版":{"docs":{},"本":{"docs":{},",":{"docs":{},"这":{"docs":{},"个":{"docs":{},"版":{"docs":{},"本":{"docs":{},"中":{"docs":{},"并":{"docs":{},"没":{"docs":{},"有":{"docs":{},"为":{"docs":{},"它":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"提":{"docs":{},"供":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"其":{"docs":{},"中":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036}}}}}}}}}}}}}}}},"p":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.006825938566552901}}}}}}},"k":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}},"n":{"docs":{},"e":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}}}},"e":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.008908685968819599},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0056179775280898875},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}},"y":{"docs":{},"s":{"docs":{},"或":{"docs":{},"者":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.004454342984409799}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}},"和":{"docs":{},"一":{"docs":{},"个":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}},"-":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}},"的":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}},"e":{"docs":{},"p":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.014367816091954023}}},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.016260162601626018}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}},"o":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}},"s":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.011185682326621925}}}}}}}}}}}}}}}}}}},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002691272587466359},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.003015075376884422}}}}}},"u":{"docs":{},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848}}}}}}}},"m":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.005875440658049354},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.005747126436781609},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0037593984962406013}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}},"k":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002691272587466359}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}},"o":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.008426966292134831}},"(":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.008426966292134831}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"整":{"docs":{},"型":{"docs":{},"变":{"docs":{},"量":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},"初":{"docs":{},"始":{"docs":{},"为":{"0":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}},"将":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"其":{"docs":{},"包":{"docs":{},"含":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"叫":{"docs":{},"做":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.02074688796680498}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"u":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}},"s":{"docs":{},"或":{"docs":{},"者":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},")":{"docs":{},"和":{"docs":{},"一":{"docs":{},"个":{"docs":{},"指":{"docs":{},"定":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},"(":{"docs":{},"比":{"docs":{},"如":{"docs":{},"数":{"docs":{},"字":{"1":{"0":{"docs":{},"或":{"docs":{},"者":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"新":{"docs":{},"常":{"docs":{},"量":{"docs":{},",":{"docs":{},"并":{"docs":{},"给":{"docs":{},"它":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"1":{"0":{"docs":{},"。":{"docs":{},"然":{"docs":{},"后":{"docs":{},",":{"docs":{},"声":{"docs":{},"明":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"字":{"docs":{},"是":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"的":{"docs":{},"变":{"docs":{},"量":{"docs":{},"并":{"docs":{},"将":{"docs":{},"它":{"docs":{},"的":{"docs":{},"值":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"为":{"0":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}},"s":{"docs":{},",":{"docs":{},"它":{"docs":{},"用":{"docs":{},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},"所":{"docs":{},"有":{"docs":{},"a":{"docs":{},"u":{"docs":{},"d":{"docs":{},"i":{"docs":{},"o":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036}}}}}}},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.011278195488721804}}}}}},"a":{"docs":{},"g":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013}}}}}}}}}}},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}},"p":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.014044943820224719}},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.004454342984409799}},"e":{"docs":{},"s":{"docs":{},"y":{"docs":{},"r":{"docs":{},"u":{"docs":{},"p":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.004454342984409799}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.004219409282700422}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"2":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813}}},"docs":{},"a":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}},"的":{"docs":{},"变":{"docs":{},"量":{"docs":{},",":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"‘":{"docs":{},"一":{"docs":{},"个":{"docs":{},"有":{"docs":{},"两":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"型":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"并":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},"’":{"docs":{},",":{"docs":{},"并":{"docs":{},"让":{"docs":{},"这":{"docs":{},"个":{"docs":{},"新":{"docs":{},"变":{"docs":{},"量":{"docs":{},"指":{"docs":{},"向":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.016483516483516484}},"(":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}},"[":{"0":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}},"1":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}},"2":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}},"docs":{}},"下":{"docs":{},"标":{"docs":{},"的":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"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":{},"入":{"docs":{},"参":{"docs":{},"的":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"是":{"docs":{},"否":{"docs":{},"有":{"docs":{},"效":{"docs":{},"的":{"docs":{},"判":{"docs":{},"断":{"docs":{},"。":{"docs":{},"为":{"docs":{},"了":{"docs":{},"方":{"docs":{},"便":{"docs":{},"进":{"docs":{},"行":{"docs":{},"断":{"docs":{},"言":{"docs":{},",":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"x":{"docs":{},"包":{"docs":{},"含":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"的":{"docs":{},"成":{"docs":{},"员":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"确":{"docs":{},"认":{"docs":{},"入":{"docs":{},"参":{"docs":{},"的":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"或":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"在":{"docs":{},"阅":{"docs":{},"读":{"docs":{},"顺":{"docs":{},"序":{"docs":{},"从":{"docs":{},"左":{"docs":{},"上":{"docs":{},"到":{"docs":{},"右":{"docs":{},"下":{"docs":{},"的":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"x":{"docs":{},"实":{"docs":{},"例":{"docs":{},"中":{"docs":{},"的":{"docs":{},"数":{"docs":{},"组":{"docs":{},"实":{"docs":{},"例":{"docs":{},"g":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"两":{"docs":{},"个":{"docs":{},"入":{"docs":{},"参":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"入":{"docs":{},"参":{"docs":{},"分":{"docs":{},"别":{"docs":{},"是":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"s":{"docs":{},",":{"docs":{},"创":{"docs":{},"建":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"足":{"docs":{},"够":{"docs":{},"容":{"docs":{},"纳":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"右":{"docs":{},"上":{"docs":{},"值":{"docs":{},"为":{"1":{"docs":{},".":{"5":{"docs":{},",":{"docs":{},"坐":{"docs":{},"下":{"docs":{},"值":{"docs":{},"为":{"3":{"docs":{},".":{"2":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}},"docs":{}}},"docs":{}}}}}}},"docs":{}}},"docs":{}}}}}},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},",":{"docs":{},"将":{"docs":{},"呈":{"docs":{},"现":{"docs":{},"一":{"docs":{},"个":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"二":{"docs":{},"维":{"docs":{},"数":{"docs":{},"组":{"docs":{},"。":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.005979073243647235},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}},")":{"docs":{},"”":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"“":{"docs":{},"最":{"docs":{},"大":{"docs":{},"适":{"docs":{},"合":{"docs":{},"”":{"docs":{},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.006825938566552901}},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.005747126436781609}}}}}}},"k":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}},"d":{"docs":{},"e":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.005747126436781609},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}},"s":{"docs":{},"k":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.46048954956968813},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.004020100502512563}},")":{"docs":{},",":{"docs":{},"实":{"docs":{},"例":{"docs":{},"属":{"docs":{},"性":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}},"类":{"docs":{},"方":{"docs":{},"法":{"docs":{},"(":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}},"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":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"定":{"docs":{},"义":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"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":{},"扩":{"docs":{},"展":{"docs":{},"它":{"docs":{},"们":{"docs":{},"的":{"docs":{},"功":{"docs":{},"能":{"docs":{},";":{"docs":{},"可":{"docs":{},"以":{"docs":{},"遵":{"docs":{},"守":{"docs":{},"协":{"docs":{},"议":{"docs":{},"(":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},"方":{"docs":{},"法":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.43478260869565216}}}}}}}}}}}},")":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"属":{"docs":{},"性":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.43478260869565216}}}}}}}}}}},"。":{"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":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"修":{"docs":{},"改":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"称":{"docs":{},"(":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.43478260869565216}}}}}}}}}}}}}}}}}}}},"在":{"docs":{},"变":{"docs":{},"异":{"docs":{},"方":{"docs":{},"法":{"docs":{},"中":{"docs":{},"给":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"(":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.43478260869565216}}}}}}}}}}}}}}}}}}}}}},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"局":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"称":{"docs":{},"和":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"称":{"docs":{},"(":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.43478260869565216}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"b":{"docs":{},"y":{"docs":{},"x":{"docs":{},",":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"b":{"docs":{},"y":{"docs":{},"x":{"docs":{},"用":{"docs":{},"来":{"docs":{},"移":{"docs":{},"动":{"docs":{},"一":{"docs":{},"个":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"。":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"b":{"docs":{},"y":{"docs":{},"x":{"docs":{},"方":{"docs":{},"法":{"docs":{},"在":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},"修":{"docs":{},"改":{"docs":{},"了":{"docs":{},"这":{"docs":{},"个":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"。":{"docs":{},"方":{"docs":{},"法":{"docs":{},"定":{"docs":{},"义":{"docs":{},"时":{"docs":{},"加":{"docs":{},"上":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"方":{"docs":{},"法":{"docs":{},"(":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.43478260869565216}}}}}}}}}}},"中":{"docs":{},",":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"等":{"docs":{},"同":{"docs":{},"于":{"docs":{},"当":{"docs":{},"前":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.017241379310344827}}}},"a":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}},"e":{"docs":{},"-":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.005847953216374269},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00461361014994233}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{},"f":{"docs":{},"l":{"docs":{},"i":{"docs":{},"f":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.010752688172043012},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.5804737975592247}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}}}},")":{"docs":{},"中":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"docs":{},"这":{"docs":{},"个":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"的":{"docs":{},"名":{"docs":{},"字":{"docs":{},",":{"docs":{},"在":{"docs":{},"某":{"docs":{},"个":{"docs":{},"文":{"docs":{},"件":{"docs":{},"的":{"docs":{},"顶":{"docs":{},"端":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.006825938566552901}}}}}}},"d":{"docs":{},"i":{"docs":{},"a":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.020553359683794466}},"。":{"docs":{},"为":{"docs":{},"了":{"docs":{},"能":{"docs":{},"够":{"docs":{},"使":{"docs":{},"用":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}}}},"因":{"docs":{},"为":{"docs":{},"不":{"docs":{},"确":{"docs":{},"定":{"docs":{},",":{"docs":{},"a":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.45020677322007374},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.016442451420029897},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}},"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":{},"变":{"docs":{},"它":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},";":{"docs":{},"并":{"docs":{},"且":{"docs":{},"它":{"docs":{},"做":{"docs":{},"的":{"docs":{},"任":{"docs":{},"何":{"docs":{},"改":{"docs":{},"变":{"docs":{},"在":{"docs":{},"方":{"docs":{},"法":{"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":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"方":{"docs":{},"法":{"docs":{},"时":{"docs":{},",":{"docs":{},"不":{"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":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"方":{"docs":{},"法":{"docs":{},"时":{"docs":{},",":{"docs":{},"必":{"docs":{},"须":{"docs":{},"写":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.2582899556583767},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.005376344086021506}},"g":{"docs":{},"u":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}},"p":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.235371079056684},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767}},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.007518796992481203},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.01098901098901099},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}},"e":{"docs":{},"r":{"docs":{},"作":{"docs":{},"为":{"docs":{},"\\":{"docs":{},"(":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}},"y":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}},"s":{"docs":{},"(":{"docs":{},"a":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}},"s":{"docs":{},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}},"c":{"docs":{},"h":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"整":{"docs":{},"数":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.008040201005025126}}}}}}}},"i":{"docs":{},"n":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.005917159763313609}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036}}}}}},"和":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}},"d":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}},"u":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0044742729306487695}}}}},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.006711409395973154}}}}}}}}},"l":{"docs":{},"k":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.008908685968819599}},"i":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013}}}},"l":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.003683241252302026}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}}}}}},"x":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}}}}}}}},"p":{"docs":{},"h":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.016597510373443983}}}},"o":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}},"e":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767}},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0015378700499807767}}}}}}},"v":{"docs":{},"e":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.006445672191528545},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002691272587466359}},"n":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"o":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.005625879043600563}},"(":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813}}}}}}}}}}}}}},"指":{"docs":{},"向":{"docs":{},"了":{"docs":{},"正":{"docs":{},"确":{"docs":{},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"它":{"docs":{},"可":{"docs":{},"以":{"docs":{},"被":{"docs":{},"用":{"docs":{},"来":{"docs":{},"数":{"docs":{},"到":{"0":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"y":{"docs":{},"x":{"docs":{},"(":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.005141388174807198},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}},"创":{"docs":{},"建":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"结":{"docs":{},"构":{"docs":{},"(":{"docs":{},"它":{"docs":{},"的":{"docs":{},"x":{"docs":{},"和":{"docs":{},"i":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.05928853754940711}},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.003952569169960474}}}}}},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0031620553359683794}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0031620553359683794}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0047430830039525695}}}}}}},"实":{"docs":{},"例":{"docs":{},"和":{"docs":{},"三":{"docs":{},"个":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"在":{"docs":{},"它":{"docs":{},"被":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"时":{"docs":{},"根":{"docs":{},"据":{"docs":{},"它":{"docs":{},"的":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"标":{"docs":{},"记":{"docs":{},"符":{"docs":{},"和":{"docs":{},"里":{"docs":{},"面":{"docs":{},"的":{"docs":{},"内":{"docs":{},"容":{"docs":{},"(":{"docs":{},"p":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"将":{"docs":{},"用":{"docs":{},"于":{"docs":{},"打":{"docs":{},"印":{"docs":{},"一":{"docs":{},"个":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"描":{"docs":{},"述":{"docs":{},",":{"docs":{},"包":{"docs":{},"括":{"docs":{},"它":{"docs":{},"的":{"docs":{},"导":{"docs":{},"演":{"docs":{},"的":{"docs":{},"名":{"docs":{},"字":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"。":{"docs":{},"当":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"真":{"docs":{},"的":{"docs":{},"包":{"docs":{},"含":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"docs":{},"(":{"docs":{},"这":{"docs":{},"个":{"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":{},"f":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}},"d":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.005141388174807198},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}},"y":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}},"e":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174}}}},"u":{"docs":{},"l":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.003015075376884422}},"e":{"docs":{},"的":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"只":{"docs":{},"能":{"docs":{},"调":{"docs":{},"用":{"docs":{},"在":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"-":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"声":{"docs":{},"明":{"docs":{},"中":{"docs":{},"的":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848}}}}},"m":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.005875440658049354},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.022326674500587545},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.015590200445434299},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.004604051565377533},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.24099695810028457},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.44040058622374206},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.8772772996535151},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.011185682326621925},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.03232323232323232},"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.03642384105960265},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.008695652173913044},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.015037593984962405},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.007035175879396985},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.011396011396011397}},"d":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123}},"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"协":{"docs":{},"议":{"docs":{},"包":{"docs":{},"含":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},";":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"协":{"docs":{},"议":{"docs":{},"包":{"docs":{},"含":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},".":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"_":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"_":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"a":{"docs":{},"n":{"docs":{},"_":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"_":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"s":{"docs":{},"_":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"_":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"_":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},"s":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"_":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"_":{"docs":{},"o":{"docs":{},"b":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}},"s":{"docs":{},"_":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}},"_":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"_":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}},"_":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"_":{"docs":{},"o":{"docs":{},"f":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"y":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"_":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"f":{"docs":{},"-":{"1":{"6":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}},"docs":{}},"8":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}},"docs":{}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"_":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"_":{"docs":{},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"_":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}},"y":{"docs":{},"_":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"_":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"_":{"docs":{},"a":{"docs":{},"_":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"_":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"l":{"docs":{},"y":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"_":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{},">":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"实":{"docs":{},"参":{"docs":{},"语":{"docs":{},"句":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":5.007751937984496}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},">":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"形":{"docs":{},"参":{"docs":{},"语":{"docs":{},"句":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}},">":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"<":{"docs":{},"a":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":5}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"z":{"docs":{},"y":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"1":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}}},"2":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}}},"3":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}}},"4":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}}},"5":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}}},"6":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}}},"7":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}}},"8":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}}}},"docs":{}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.011135857461024499}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"[":{"1":{"6":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}},"docs":{}},"docs":{}}}}}}}}}}}},")":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.23255813953488372}}}}}}}}}}}}}},"简":{"docs":{},"写":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"(":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.23255813953488372}}}}}}}}}}}}}}}}}}},"默":{"docs":{},"认":{"docs":{},"参":{"docs":{},"数":{"docs":{},"值":{"docs":{},"(":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.23255813953488372}}}}}}}}}}}}}}}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}}}}}}},"[":{"docs":{},"i":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.0022371364653243847}}}}},"(":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}}}}}},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.008287292817679558}}}}}}}}}}},"i":{"docs":{},"v":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}},"v":{"docs":{},"i":{"docs":{},"g":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.004484304932735426}}}}}},"e":{"docs":{},"w":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013},"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.011834319526627219},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0034602076124567475},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}}}}}}}}}}}},"i":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}},"x":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"必":{"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":{},"e":{"docs":{},"t":{"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":{},"在":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"代":{"docs":{},"码":{"docs":{},"块":{"docs":{},"中":{"docs":{},"依":{"docs":{},"然":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"i":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}},"x":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}},"p":{"docs":{},"t":{"docs":{},"u":{"docs":{},"n":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}},"r":{"docs":{},"n":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}},"x":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}},"方":{"docs":{},"法":{"docs":{},"时":{"docs":{},",":{"docs":{},"开":{"docs":{},"关":{"docs":{},"在":{"docs":{},"不":{"docs":{},"同":{"docs":{},"的":{"docs":{},"电":{"docs":{},"源":{"docs":{},"状":{"docs":{},"态":{"docs":{},"(":{"docs":{},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},",":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},",":{"docs":{},"h":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}}},"e":{"docs":{},"d":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0031620553359683794},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897}}}}},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.005382545174932718}}},"a":{"docs":{},"r":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.016877637130801686}}}}},"i":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":5.021505376344086},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0066815144766146995},"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.005917159763313609},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.024242424242424242},"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.016260162601626018},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.004484304932735426},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.014619883040935672},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.007035175879396985}},",":{"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}},"条":{"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":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}},"但":{"docs":{},"是":{"docs":{},"后":{"docs":{},"面":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"运":{"docs":{},"行":{"docs":{},"需":{"docs":{},"要":{"docs":{},"一":{"docs":{},"个":{"docs":{},"非":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}},"不":{"docs":{},"是":{"docs":{},"指":{"docs":{},"针":{"docs":{},"—":{"docs":{},"—":{"docs":{},"它":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"确":{"docs":{},"定":{"docs":{},"的":{"docs":{},"值":{"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":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"话":{"docs":{},"请":{"docs":{},"不":{"docs":{},"要":{"docs":{},"使":{"docs":{},"用":{"docs":{},"隐":{"docs":{},"式":{"docs":{},"解":{"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":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},"使":{"docs":{},"用":{"docs":{},"弱":{"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":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"方":{"docs":{},"式":{"docs":{},"断":{"docs":{},"开":{"docs":{},"两":{"docs":{},"个":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"(":{"docs":{},"包":{"docs":{},"括":{"docs":{},"最":{"docs":{},"先":{"docs":{},"的":{"docs":{},"那":{"docs":{},"个":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},")":{"docs":{},",":{"docs":{},"只":{"docs":{},"留":{"docs":{},"下":{"docs":{},"一":{"docs":{},"个":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"选":{"docs":{},"项":{"docs":{},"会":{"docs":{},"导":{"docs":{},"致":{"docs":{},"运":{"docs":{},"行":{"docs":{},"错":{"docs":{},"误":{"docs":{},"(":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}},"时":{"docs":{},",":{"docs":{},"将":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"内":{"docs":{},"的":{"docs":{},"占":{"docs":{},"有":{"docs":{},"定":{"docs":{},"义":{"docs":{},"为":{"docs":{},"弱":{"docs":{},"引":{"docs":{},"用":{"docs":{},"。":{"docs":{},"弱":{"docs":{},"引":{"docs":{},"用":{"docs":{},"总":{"docs":{},"是":{"docs":{},"可":{"docs":{},"选":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"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":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"没":{"docs":{},"有":{"docs":{},"任":{"docs":{},"何":{"docs":{},"一":{"docs":{},"个":{"docs":{},"析":{"docs":{},"构":{"docs":{},"函":{"docs":{},"数":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},"。":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"循":{"docs":{},"环":{"docs":{},"阻":{"docs":{},"止":{"docs":{},"了":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"和":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"了":{"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":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"s":{"docs":{},",":{"docs":{},"它":{"docs":{},"将":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"包":{"docs":{},"含":{"docs":{},"默":{"docs":{},"认":{"docs":{},"值":{"1":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},",":{"docs":{},"不":{"docs":{},"论":{"docs":{},"你":{"docs":{},"调":{"docs":{},"用":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"、":{"docs":{},"方":{"docs":{},"法":{"docs":{},"、":{"docs":{},"子":{"docs":{},"脚":{"docs":{},"本":{"docs":{},"等":{"docs":{},"返":{"docs":{},"回":{"docs":{},"的":{"docs":{},"值":{"docs":{},"是":{"docs":{},"不":{"docs":{},"是":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"值":{"docs":{},",":{"docs":{},"它":{"docs":{},"的":{"docs":{},"返":{"docs":{},"回":{"docs":{},"结":{"docs":{},"果":{"docs":{},"都":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"值":{"docs":{},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"利":{"docs":{},"用":{"docs":{},"这":{"docs":{},"个":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"来":{"docs":{},"检":{"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":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.008130081300813009}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}},"-":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"i":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949}}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}}}}}},"w":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.008438818565400843},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.007518796992481203},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.028277634961439587},"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.047337278106508875},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.013452914798206279},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.002691272587466359},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.010238907849829351}},"”":{"docs":{},"。":{"docs":{},"当":{"docs":{},"它":{"docs":{},"等":{"docs":{},"于":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},",":{"docs":{},"打":{"docs":{},"印":{"docs":{},"“":{"docs":{},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},",":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"和":{"docs":{},"w":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},")":{"docs":{},"是":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"的":{"docs":{},"成":{"docs":{},"员":{"docs":{},"值":{"docs":{},"(":{"docs":{},"或":{"docs":{},"者":{"docs":{},"成":{"docs":{},"员":{"docs":{},")":{"docs":{},"。":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.04395604395604396}},"特":{"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":{},"e":{"docs":{},")":{"docs":{},"为":{"docs":{},"用":{"docs":{},"该":{"docs":{},"特":{"docs":{},"性":{"docs":{},"标":{"docs":{},"记":{"docs":{},"的":{"docs":{},"。":{"docs":{},"相":{"docs":{},"反":{"docs":{},",":{"docs":{},"对":{"docs":{},"于":{"docs":{},"一":{"docs":{},"个":{"docs":{},"已":{"docs":{},"经":{"docs":{},"用":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"特":{"docs":{},"性":{"docs":{},"标":{"docs":{},"记":{"docs":{},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},"或":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"你":{"docs":{},"则":{"docs":{},"不":{"docs":{},"可":{"docs":{},"以":{"docs":{},"将":{"docs":{},"它":{"docs":{},"重":{"docs":{},"写":{"docs":{},"为":{"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":{},"m":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.003683241252302026},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.005979073243647235},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}},"a":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"7":{"3":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.01616161616161616}},"!":{"docs":{},".":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00404040404040404}}}}}}}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.01645123384253819},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.004604051565377533},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.007032348804500703},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.028089887640449437},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.01818181818181818},"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.033112582781456956},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0007905138339920949},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.018069973087274125},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.005847953216374269},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.007050528789659225}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.015424164524421594}}}},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.005012531328320802}},"s":{"docs":{},"属":{"docs":{},"性":{"docs":{},"被":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"为":{"0":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}},"docs":{}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.02074688796680498}}}}}}},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}},"s":{"docs":{},"[":{"docs":{},"\"":{"docs":{},"b":{"docs":{},"i":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}},"的":{"docs":{},"变":{"docs":{},"量":{"docs":{},"并":{"docs":{},"用":{"docs":{},"一":{"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":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{},"s":{"docs":{},"的":{"docs":{},"字":{"docs":{},"典":{"docs":{},"存":{"docs":{},"放":{"docs":{},"值":{"docs":{},"类":{"docs":{},"型":{"docs":{},"推":{"docs":{},"断":{"docs":{},"为":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.023668639053254437}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.019867549668874173}},"s":{"docs":{},"是":{"docs":{},"非":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"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":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"s":{"docs":{},"总":{"docs":{},"是":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"?":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"操":{"docs":{},"作":{"docs":{},"有":{"docs":{},"可":{"docs":{},"能":{"docs":{},"失":{"docs":{},"败":{"docs":{},",":{"docs":{},"可":{"docs":{},"选":{"docs":{},"链":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"?":{"docs":{},"类":{"docs":{},"型":{"docs":{},"值":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"称":{"docs":{},"作":{"docs":{},"“":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"”":{"docs":{},"。":{"docs":{},"当":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"是":{"docs":{},"空":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},"(":{"docs":{},"上":{"docs":{},"例":{"docs":{},")":{"docs":{},",":{"docs":{},"选":{"docs":{},"择":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"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":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}}}}}}}},"y":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.003683241252302026}},"是":{"docs":{},"否":{"docs":{},"是":{"docs":{},"拉":{"docs":{},"丁":{"docs":{},",":{"docs":{},"阿":{"docs":{},"拉":{"docs":{},"伯":{"docs":{},",":{"docs":{},"中":{"docs":{},"文":{"docs":{},"或":{"docs":{},"者":{"docs":{},"泰":{"docs":{},"语":{"docs":{},"中":{"docs":{},"的":{"1":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"4":{"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":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"?":{"docs":{},"类":{"docs":{},"型":{"docs":{},"变":{"docs":{},"量":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.010238907849829351}}}}}}},"的":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"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":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"的":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}}}}}},"变":{"docs":{},"量":{"docs":{},"之":{"docs":{},"后":{"docs":{},"除":{"docs":{},"以":{"1":{"0":{"docs":{"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437}}},"docs":{}},"docs":{}}}}}}},"值":{"docs":{},"和":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"实":{"docs":{},"例":{"docs":{},"传":{"docs":{},"递":{"docs":{},"给":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"的":{"docs":{},"方":{"docs":{},"式":{"docs":{},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"这":{"docs":{},"样":{"docs":{},"可":{"docs":{},"以":{"docs":{},"确":{"docs":{},"保":{"docs":{},"当":{"docs":{},"创":{"docs":{},"建":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"实":{"docs":{},"例":{"docs":{},"时":{"docs":{},"总":{"docs":{},"是":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"l":{"docs":{},"l":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}},"s":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},")":{"docs":{},"来":{"docs":{},"暗":{"docs":{},"示":{"docs":{},"值":{"docs":{},"缺":{"docs":{},"失":{"docs":{},"。":{"docs":{},"这":{"docs":{},"种":{"docs":{},"方":{"docs":{},"法":{"docs":{},"假":{"docs":{},"设":{"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":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.007518796992481203}},"和":{"docs":{},"n":{"docs":{},"s":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"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":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"并":{"docs":{},"将":{"docs":{},"其":{"docs":{},"传":{"docs":{},"递":{"docs":{},"给":{"docs":{},"一":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"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":{},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"和":{"docs":{},"n":{"docs":{},"s":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"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":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}},"e":{"docs":{},"d":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"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":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"c":{"1":{"7":{"0":{"1":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}},".":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}},"v":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.004219409282700422},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.04935370152761457},"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.029045643153526972},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.014336917562724014},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.011278195488721804},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.022271714922048998},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.01565377532228361},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.011251758087201125},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.011235955056179775},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.006825938566552901},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.05075187969924812},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.028277634961439587},"chapter2/12_Subscripts.html#gitbook_145":{"ref":"chapter2/12_Subscripts.html#gitbook_145","tf":0.016483516483516484},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.011185682326621925},"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.01775147928994083},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.04040404040404041},"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.029801324503311258},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0047430830039525695},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.024390243902439025},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.034482758620689655},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.041353383458646614},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.02391629297458894},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0030757400999615533},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099},"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.02046783625730994},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.010050251256281407},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0027434842249657062}},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.23396460929578386},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0037593984962406013},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0029895366218236174},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0011534025374855825}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.005639097744360902}}}}},"-":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.004801097393689987},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.002849002849002849}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.004801097393689987}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.00411522633744856}}}}}}}}},"d":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}},"或":{"docs":{},"者":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.0034129692832764505}}}}}}},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"定":{"docs":{},"义":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"包":{"docs":{},"括":{"docs":{},"只":{"docs":{},"读":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"他":{"docs":{},"们":{"docs":{},"的":{"docs":{},"值":{"docs":{},"不":{"docs":{},"是":{"docs":{},"固":{"docs":{},"定":{"docs":{},"的":{"docs":{},"。":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},")":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"是":{"docs":{},"常":{"docs":{},"量":{"docs":{},"存":{"docs":{},"储":{"docs":{},"属":{"docs":{},"性":{"docs":{},"(":{"docs":{},"用":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.010752688172043012},"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.2620493541546173},"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.026726057906458798},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":1.6823204419889501},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.012658227848101266},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.44040058622374206},"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":3.370875995449374},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.020676691729323307},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.45020677322007374},"chapter2/16_Automatic_Reference_Counting.html#gitbook_152":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_152","tf":0.00202020202020202},"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.006622516556291391},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.020553359683794466},"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.04878048780487805},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401},"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.017937219730941704},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.030757400999615533},"chapter3/06_Attributes.html#gitbook_169":{"ref":"chapter3/06_Attributes.html#gitbook_169","tf":0.01098901098901099},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.01507537688442211},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.012658227848101266}},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.007751937984496124}},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"定":{"docs":{},"义":{"docs":{},",":{"docs":{},"其":{"docs":{},"中":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"是":{"docs":{},"字":{"docs":{},"典":{"docs":{},"中":{"docs":{},"键":{"docs":{},"的":{"docs":{},"数":{"docs":{},"据":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.008968609865470852}},"”":{"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":{},"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":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"都":{"docs":{},"关":{"docs":{},"联":{"docs":{},"独":{"docs":{},"特":{"docs":{},"的":{"docs":{},"键":{"docs":{},"(":{"docs":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_126":{"ref":"chapter2/04_Collection_Types.html#gitbook_126","tf":0.0022271714922048997}}}}}}}}}}}}},"元":{"docs":{},"组":{"docs":{},"。":{"docs":{},"下":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"字":{"docs":{},"典":{"docs":{},"的":{"docs":{},"键":{"docs":{},"(":{"docs":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"这":{"docs":{},"些":{"docs":{},"量":{"docs":{},"是":{"docs":{},"不":{"docs":{},"能":{"docs":{},"被":{"docs":{},"修":{"docs":{},"改":{"docs":{},"的":{"docs":{},"。":{"docs":{},"当":{"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":{},"m":{"docs":{},"p":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},")":{"docs":{},"函":{"docs":{},"数":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.23255813953488372}}}}}}}}}}}}},"可":{"docs":{},"变":{"docs":{},"参":{"docs":{},"数":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.23255813953488372}}}}}}}}}}}}},"多":{"docs":{},"重":{"docs":{},"输":{"docs":{},"入":{"docs":{},"参":{"docs":{},"数":{"docs":{},"(":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.23255813953488372}}}}}}}}}}}}}},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"函":{"docs":{},"数":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.23255813953488372}}}}}}}}}}}}}}},"默":{"docs":{},"认":{"docs":{},"值":{"docs":{},"参":{"docs":{},"数":{"docs":{},"的":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.23255813953488372}}}}}}}}}}}}}}}}}}}},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"(":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":3.333333333333333}}}}}}}}}},"(":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_158":{"ref":"chapter2/19_Nested_Types.html#gitbook_158","tf":0.024390243902439025}}}}}}}}},")":{"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":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}}}}},"-":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.008438818565400843}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"-":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.008438818565400843},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0013717421124828531}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}}}}}},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0023501762632197414}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.004700352526439483}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0011750881316098707},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.004604051565377533},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0037593984962406013}}}}},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0023715415019762848},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"a":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.024896265560165973}},"e":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"子":{"docs":{},"类":{"docs":{},",":{"docs":{},"叫":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},",":{"docs":{},"它":{"docs":{},"重":{"docs":{},"写":{"docs":{},"了":{"docs":{},"从":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"继":{"docs":{},"承":{"docs":{},"来":{"docs":{},"的":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"基":{"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":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"和":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{},"。":{"docs":{},"这":{"docs":{},"些":{"docs":{},"属":{"docs":{},"性":{"docs":{},"在":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"方":{"docs":{},"法":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{},",":{"docs":{},"这":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"中":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"的":{"docs":{},"默":{"docs":{},"认":{"docs":{},"值":{"docs":{},"对":{"docs":{},"自":{"docs":{},"行":{"docs":{},"车":{"docs":{},"来":{"docs":{},"说":{"docs":{},"已":{"docs":{},"经":{"docs":{},"是":{"docs":{},"正":{"docs":{},"确":{"docs":{},"的":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"在":{"docs":{},"b":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"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":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"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":{},"中":{"docs":{},"将":{"docs":{},"它":{"docs":{},"更":{"docs":{},"改":{"docs":{},"为":{"2":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"器":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}},"的":{"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":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_110":{"ref":"chapter2/13_Inheritance.html#gitbook_110","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"u":{"docs":{"chapter2/08_Enumerations.html#gitbook_139":{"ref":"chapter2/08_Enumerations.html#gitbook_139","tf":0.006825938566552901}}},"d":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.005917159763313609}}}}}},"方":{"docs":{},"法":{"docs":{},"在":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"分":{"docs":{},"发":{"docs":{},"硬":{"docs":{},"币":{"docs":{},"之":{"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":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"比":{"docs":{},"请":{"docs":{},"求":{"docs":{},"时":{"docs":{},"小":{"docs":{},"的":{"docs":{},"数":{"docs":{},"字":{"docs":{},"(":{"docs":{},"如":{"docs":{},"果":{"docs":{},"没":{"docs":{},"有":{"docs":{},"硬":{"docs":{},"币":{"docs":{},"留":{"docs":{},"在":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"中":{"docs":{},"就":{"docs":{},"返":{"docs":{},"回":{"0":{"docs":{},")":{"docs":{},"。":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"方":{"docs":{},"法":{"docs":{},"声":{"docs":{},"明":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"变":{"docs":{},"量":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"这":{"docs":{},"样":{"docs":{},"就":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"方":{"docs":{},"法":{"docs":{},"体":{"docs":{},"的":{"docs":{},"内":{"docs":{},"部":{"docs":{},"修":{"docs":{},"改":{"docs":{},"数":{"docs":{},"字":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"定":{"docs":{},"义":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"变":{"docs":{},"量":{"docs":{},"。":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/15_Deinitialization.html#gitbook_150":{"ref":"chapter2/15_Deinitialization.html#gitbook_150","tf":0.005917159763313609}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"2":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.016916570549788543}},"(":{"1":{"docs":{},".":{"0":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}},"docs":{}}},"docs":{},"x":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0057670126874279125}}}}}},"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.007304882737408689}},".":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}},"x":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}},"t":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}}}}}}}},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0027624309392265192},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.008438818565400843},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.014367816091954023}},"代":{"docs":{},"替":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},".":{"docs":{},"v":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}},"。":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"中":{"docs":{},",":{"docs":{},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407}}}}}}}}}}}}}}},"(":{"docs":{},"参":{"docs":{},"见":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}},"?":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{},",":{"docs":{},"因":{"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":{},"p":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_154":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_154","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"空":{"docs":{},"元":{"docs":{},"组":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},")":{"docs":{},"的":{"docs":{},"别":{"docs":{},"名":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"括":{"docs":{},"号":{"docs":{},"内":{"docs":{},"只":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"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":{},"t":{"docs":{},")":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_173":{"ref":"chapter3/03_Types.html#gitbook_173","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.005639097744360902}}}}}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.0018796992481203006}}}}}},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/22_Generics.html#gitbook_164":{"ref":"chapter2/22_Generics.html#gitbook_164","tf":0.004484304932735426}}}},"c":{"docs":{},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}},"y":{"1":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}},"2":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_107":{"ref":"chapter1/02_a_swift_tour.html#gitbook_107","tf":0.0035252643948296123},"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.019337016574585635},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/10_Properties.html#gitbook_141":{"ref":"chapter2/10_Properties.html#gitbook_141","tf":0.011278195488721804},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.033419023136246784},"chapter2/02_Basic_Operators.html#gitbook_147":{"ref":"chapter2/02_Basic_Operators.html#gitbook_147","tf":0.011185682326621925},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0031620553359683794},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.014367816091954023},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.010380622837370242},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.011055276381909548},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.02531645569620253},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_182","tf":0.023255813953488372},"chapter3/10_Statements.html#gitbook_186":{"ref":"chapter3/10_Statements.html#gitbook_186","tf":0.005698005698005698}},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_114":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_114","tf":0.0018796992481203006}}}}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013}}}}}}}}}}}}}}}},")":{"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":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"将":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"一":{"docs":{},"个":{"docs":{},"横":{"docs":{},"坐":{"docs":{},"标":{"docs":{},"为":{"0":{"docs":{},"的":{"docs":{},"点":{"docs":{},",":{"docs":{},"并":{"docs":{},"把":{"docs":{},"这":{"docs":{},"个":{"docs":{},"点":{"docs":{},"的":{"docs":{},"纵":{"docs":{},"坐":{"docs":{},"标":{"docs":{},"赋":{"docs":{},"给":{"docs":{},"临":{"docs":{},"时":{"docs":{},"的":{"docs":{},"常":{"docs":{},"量":{"docs":{},"y":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}},":":{"docs":{},"和":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}}}}}}}},"中":{"docs":{},"的":{"docs":{},"元":{"docs":{},"组":{"docs":{},"模":{"docs":{},"式":{"docs":{},",":{"docs":{},"只":{"docs":{},"要":{"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":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"分":{"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":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"元":{"docs":{},"组":{"docs":{},"(":{"1":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}}},"docs":{}}}}}}}}},"-":{"docs":{},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.001841620626151013}}}}}},"上":{"docs":{},",":{"docs":{},"是":{"docs":{},"否":{"docs":{},"在":{"docs":{},"紫":{"docs":{},"色":{"docs":{},"的":{"docs":{},"对":{"docs":{},"角":{"docs":{},"线":{"docs":{},"x":{"docs":{"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"'":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.002506265664160401}}}},"’":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.0007689350249903883}}}}}},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.00038446751249519417}}}}}}},"_":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0035842293906810036},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.004604051565377533},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0028129395218002813},"chapter2/11_Methods.html#gitbook_143":{"ref":"chapter2/11_Methods.html#gitbook_143","tf":0.002570694087403599},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_162":{"ref":"chapter2/21_Protocols.html#gitbook_162","tf":0.0037593984962406013},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.003015075376884422},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.013392857142857142},"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.008438818565400843},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0054869684499314125}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"_":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"_":{"docs":{"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0020100502512562816}}}}}}},"、":{"docs":{},"基":{"docs":{},"本":{"docs":{},"多":{"docs":{},"语":{"docs":{},"言":{"docs":{},"面":{"docs":{},"(":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{},"c":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.002232142857142857}}}}}}}}}}}}}}},")":{"docs":{},"。":{"docs":{},"当":{"docs":{},"你":{"docs":{},"不":{"docs":{},"关":{"docs":{},"心":{"docs":{},"被":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"的":{"docs":{},"值":{"docs":{},"时":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"此":{"docs":{},"模":{"docs":{},"式":{"docs":{},"。":{"docs":{},"例":{"docs":{},"如":{"docs":{},",":{"docs":{},"下":{"docs":{},"面":{"docs":{},"这":{"docs":{},"段":{"docs":{},"代":{"docs":{},"码":{"docs":{},"进":{"docs":{},"行":{"docs":{},"了":{"1":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"3":{"docs":{"chapter3/07_Patterns.html#gitbook_180":{"ref":"chapter3/07_Patterns.html#gitbook_180","tf":0.004219409282700422}}},"docs":{}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"z":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/05_Control_Flow.html#gitbook_128":{"ref":"chapter2/05_Control_Flow.html#gitbook_128","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_160":{"ref":"chapter2/20_Extensions.html#gitbook_160","tf":0.0028735632183908046},"chapter3/04_Expressions.html#gitbook_175":{"ref":"chapter3/04_Expressions.html#gitbook_175","tf":0.0010050251256281408},"chapter3/02_Lexical_Structure.html#gitbook_178":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_178","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_184":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_184","tf":0.0006858710562414266}},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"chapter2/01_The_Basics.html#gitbook_112":{"ref":"chapter2/01_The_Basics.html#gitbook_112","tf":0.0017921146953405018},"chapter2/06_Functions.html#gitbook_130":{"ref":"chapter2/06_Functions.html#gitbook_130","tf":0.005625879043600563},"chapter2/07_Closures.html#gitbook_132":{"ref":"chapter2/07_Closures.html#gitbook_132","tf":0.0028089887640449437},"chapter2/18_Type_Casting.html#gitbook_156":{"ref":"chapter2/18_Type_Casting.html#gitbook_156","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.005382545174932718}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_167":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_167","tf":0.47619047619047616}}}}}}}}}}}}},"length":6491},"corpusTokens":["0","0(空字符)、\\\\(反斜线)、\\t(水平制表符)、\\n(换行符)、\\r(回车符)、\\"(双引号)、\\'","0)中的元素0","0)会首先匹配case","0)可以匹配所有四个case。但是,如果存在多个匹配,那么只会执行第一个被匹配到的case块。考虑点(0","0)将匹配一个纵坐标为0的点,并把这个点的横坐标赋给临时的常量x。类似的,第二个case——cas","0)的case","0),因此剩下的能够匹配(0","0),宽度高度都是10","0),是否在红色的x轴上,是否在黄色y轴上,是否在一个以原点为中心的4x4","0,$1,$2","0,1","0..3","0..count","0..self","0..somecontainer.count","0..time","0.0","0.0125","0.0254","0.1","0.14159","0.25","0.37464991998171","0.5","0.729023776863283","0.914399970739201","00000000","00000001","00000100","00001000","00001111","00001111(前4","00010000","00010001","000123.456","00111100","005","005000.76","01111111","02","0746381295[9","08","09","0b","0b00000101","0b00001111","0b00010100","0b00111111","0b01011110","0b10001","0b10110010","0b11110000","0b11111100","0o","0o21","0x","0x000099","0x0000cc","0x0000ff","0x006600","0x00ff00","0x11","0x66","0x99","0xc.3p0","0xcc","0xcc0000","0xcc6699","0xff0000","0xfp-2","0xfp2","0x)。小数点两边必须有至少一个十进制数字(或者是十六进制的数字)。浮点原始值还有一个可选的指数,在十进制浮点数中通过大写或者小写的e来指定,在十六进制浮点数中通过大写或者小写的p","0~255","0——编译器会正确的推断出x的类型int。类似的,当完整的类型可以从上下文推断出来时,你也可以忽略类型的一部分。比如,如果你写了let","0中x的类型首先根据0的类型进行推断,然后将该类型信息传递到根节点(变量x","0为fals","0为true的时候代码运行才会继续,也就是说,当age的值非负的时候。如果age的值是负数,就像代码中那样,ag","0到9.每一个条形码都有一个代表“数字系统”的数字,该数字后接10","0和$1","0和maxpasseng","0是真的(true),这将使得choosestepfunction返回stepbackward函数。一个指向返回的函数的引用保存在了movenearertozero","0的数据项的值再次等于"six","0而不是1","0,你可以完全忽略类型而简写成var","1","1)都被锁定。每次有玩家完成一个等级,这个等级就对这个设备上的所有玩家解锁。leveltrack","1...3","1...4","1...5","1...amounttopad","1...digitindex","1...finalsquar","1...power","1.0","1.21875e1","1.25","1.25e-2","1.25e2","1.5","10","10...99","10.0","100","100...999","100.0","1000...999_999","10000","10000.56","1000000","10000000","1000_000","102","103","107","10^-2","10^2","10^-2","10_000","10_000.56","10中,如果number为16,则返回6,58返回8,510返回0","10为0,这时闭包会将字符串输出,而map","10可以总是作为一个digitnam","10被传递给x","10,同时maxinputlevelforallchannel","11","110","111","11110000","11111110","11111111","11,则会将右声道的currentlevel","12","12,gener","12-side","12.1875","12.5663708","120","123","1234567890123456","123456789[0]返回9","123456789[1]返回8","1234_5678_9012_3456","124","125.0","125.0;同样,1.25e-2","127","128","128054","128054,是一个十六进制1f436","13","130","132","135","139968.0","140","144","15","15),表示向右上方移动正方形到如图所示橙色正方形的位置。设置属性center的值会调用setter来修改属性origin的x和i","15.0","150","153","159","16","16,58,510","160","16变成了1,58变成了5,510变成了51","17","182","19","195.m","1],编译提也能推断出dict的类型是dictionary<str","1_000.0","1_000_000","1_000_000.000_000_1","1到5的闭区间数字。index","1千米等于1,000米,所以km计算属性要把值乘以1_000.00来转化成单位米下的数值。类似地,1米有3.28024英尺,所以ft计算属性要把对应的double值除以3.28024","1后变成2","1的时候才为1","1的条件是两个输入数的同一位都不为0(即任意一个为1","1的比较结果是bool类型,所以第二个例子可以通过类型检查。类似i","2","2)中的元组模式(x","2)的结构是逗号分隔的,包含两个元素的列表。因为模式代表一种值的结构,而不是特定的某个值,你可以把模式和各种同类型的值匹配起来。比如,(x","2,953","2...2","2.0","2.5","2.71828","20","200","2000","2001","2014","204","21","2100","21位数字(和名称),例如u+0061表示小写的拉丁字母a","22","240","243610.0","243_610","25","25.4.mm","254","255","25,你必须重新掷骰子,直到你掷出的骰子数刚好使你能落在方格25","26","29573.0","2^-2","2^2","2_000","2:返回对应的type。我们可以用它来动态的获取某个instance的typ","3","3.0","3.1","3.14159","3.1415927","3.14159,0.1和-273.15","3.2","3.28084","3.59","3.69","3.75","3.79","3.ft","3.repetit","30","32","32767","32768","32位平台上,int和int32","32位平台上,uint和uint32","32华氏度(水的冰点)。如果是,则打印一条消息;否则,不打印任何消息,继续执行if","33","35.0","360","3877.0","39","39;&'","39;*'","39;,'","39;,'分隔。一旦使用了参数列表,就必须使用'in'关键字(在任何情况下都得这样做,包括忽略参数的名字,typ","39;.dynamictype'","39;.self'","39;?'","39;as'","39;in'","39;is'","39;type","39;unowned'","39;weak'","3_000_000_000_000","3可以直接和原始值0.14159","3没有显式声明类型,而表达式中出现了一个浮点原始值,所以表达式会被推测为doubl","3的6倍是18","4","4...9","4.0","4.75会变成4,-3.9会变成-3","40","40.0","404","40华氏度,不算太冷,没必要再围围巾——因此,els","42","42.0","42.km","42495.0","42和-23","42和3.14159","42并且没有标明类型,swift","42被绑定(赋值)给常量somevalu","43","4]],array3d[0][1]是指[3","4],array3d[0][1][1]则是指值4","4个string","4个位都为1","5","5.0","5.2","50","5000.76","510","536","55357","55357),第二个值为u+dc36","56374","58","59049","597","5乘法表结果。该语句执行后,index","6","6,gener","6-side","6.0","60","60.0","60;同样,0xfp-2","64位平台上,int和int64","64位平台上,uint和uint64","66","6699","68","69105","6项,而且不包括mapl","7","7.5","7.simpledescript","70","70.0","72","73","746381295[0","746381295[1","746381295[2","746381295[8","746381295[9","75","7900","7,类属性maxinputlevelforallchannel","8","8-bit","8.0","8590951226","85909_51226","86","87","896","8:09","8、16、32和64","8位无符号整数类型是uint8,32位有符号整数类型是int32","8除于2.5等于3余0.5","9","9.3","9.45","9.9","90","94","95;_column__","95;_file__","95;_function__","95;_line__","99","9900","9的行星,通过fromraw返回的可选planet值将是nil","_","_column_","_file_","_function_","_line_","_、基本多语言面(basic","_)。当你不关心被匹配的值时,可以使用此模式。例如,下面这段代码进行了1...3","a++.b","a+b","a...b","a..b","a.adjust","a.simpledescript","aardvark","abcdefghijklmnop","abov","absolut","ac","access","accord","ace.toraw","acerawvalu","achiev","act","act1scenecount","action","actual","actualnumb","actualnumber常量可以在if语句的第一个分支中使用。它已经被可选包含的值初始化过,所以不需要再使用!后缀来获取它的值。在这个例子中,actualnumb","ad","add","addit","addon","addone(numb","address","address。它有三个自判断属性他们额类型是string?。前面两个自判断属性buildingnam","address实例时的使用(john.residence.address)。john.residence属性是一个自判断类型,因此你需要在它获取address","address类中的buildingidentifi","address类还提供了一个buildingidentifier的方法,它的返回值类型为string?。这个方法检查buildingname和buildingnumber的属性,如果buildingname有值则将其返回,或者如果buildingnumb","address设定一个实例来作为john.residence.address的值,并为address的street","addthesecondnumb","addthesecondnumber(b","addtwoint","addtwoints(a","addtwoints和mathfunction有同样的类型,所以这个赋值过程在swift","addtwoints和multiplytwoints。这两个函数都传入两个int","addtwonumbers(4)(5","addtwonumbers(a","adescript","adjust","adopt","advanc","advancetolevel(level","advantag","affect","afterdoubl","afterincr","ag","again","airport","airport'","airportcod","airportnam","airports.count","airports.kei","airports.removevalueforkey(\"dub","airports.updatevalue(\"dublin","airports.valu","airports[\"apl","airports[\"dub","airports[\"lhr","airports字典使用字典字面语句初始化,包含两个键值对。第一对的键是tyo,值是tokyo。第二对的键是dub,值是dublin","airports字典被声明为变量(用var关键字)而不是常量(let","airports字典被定义为一种dictionary<str","alex","alia","alias","alien","alignright(originalstr","alignright(var","alignright函数将参数string定义为变量参数。这意味着str","alignright的函数,用来右对齐输入的字符串到一个长的输出字符串中。左侧空余的地方用指定的填充字符填充。这个例子中,字符串"hello"被转换成了"-----hello"","alik","allitemsmatch","allitemsmatch(stackofstr","allitemsmatch的泛型函数,用来检查是否两个container单例包含具有相同顺序的相同items。如果匹配到所有的items,那么返回一个为true的boolean","allitemsmatch首先检查两个容器是否拥有同样数目的items,如果他们的items数目不同,没有办法进行匹配,函数就会fals","allow","allowedentri","allowentri","alow","alreadi","alsoincrementbyten","alsominussix","alsoposit","alt","alt=\"comput","alt=\"stat","alternativerect","alwai","amarathon","amount","amounttopad","amount变量,incrementor实际上捕获并存储了该变量的一个副本,而该副本随着incrementor","amount和numberoftimes。默认地,swift只把amount当作一个局部名称,但是把numberoftim","amount或者runningtotal来声明在嵌入的incrementor","amount,表示每次incrementor被调用时runningtot","amp","amp;&","amp;)和按位右移就可以从这个颜色值中解析出红(cc","amp;­identifi","ampersand","and/or","andrea","anim","animal(leg","animalnam","anna","annot","anonym","anoth","anothercharact","anothercontain","anothercontainer.count","anothercontainer[i","anothercontainer中的item","anothercontainer是一个c2","anotheremptystr","anotherint","anothermathfunct","anotherpi","anotherpoint","anotherproctocol","anotherproperti","anotherprotocol","anotherprotocol>这样的格式进行组合,称为协议合成(protocol","anotherstr","anotherthreedoubl","anothertwothre","anothervalu","anothervector","answer","answer1","answer2","ant","anycommonel","anycommonelements([1","anyobject","anyobjectanyobject类型ani","anyobject可以代表任何class","anyth","any可以表示任何类型,除了方法类型(funct","any和anyobject","apart","apartment(numb","apartment实例有一个叫number,类型为int的属性,并有一个可选的初始化为nil的tenant属性。ten","apartment实例的强引用来自于变量number73。如果你断开这个强引用,再也没有指向apart","api","apis,它一般接收一个anyobject[]类型的数组,或者说“一个任何对象类型的数组”。这是因为oc没有明确的类型化数组。但是,你常常可以确定包含在仅从你知道的api","apl","app","appear","append","append(item","append方法添加一个新item","appl","applese","applesummari","appli","approach","appropri","arbitrari","arc","arc为了能帮助你管理内存,需要更多的关于你的代码之间关系的信息。本章描述了这些情况,并且为你示范怎样启用arc","arc会分配一大块内存用来储存实例的信息。内存中会包含实例的类型信息,以及这个实例所有相关属性的值。此外,当实例不再被使用时,arc","arc会在引用的实例被销毁后自动将其赋值为nil","arc会在第三个,也即最后一个强引用被断开的时候,销毁person实例,这也意味着你不再使用这个person","arc会跟踪你所新创建的person实例的引用数量,并且会在person","arc会跟踪和计算每一个实例正在被多少属性,常量和变量所引用。哪怕实例的引用数为一,arc","arc无法在实例被销毁后将无主引用设为nil,因为非可选类型的变量不允许被赋值为nil","arc销毁被引用的实例。这种行为阻止了引用变为循环强引用。声明属性或者变量时,在前面加上weak","area","argument","argyrio","arithmet","arithmeticmean(1","arithmeticmean(3","arithmeticmean(numb","around","arrai","array<int>>","array<int>替代泛型类型array<t>的类型形参t","array<sometype>这样的形式,其中sometyp","array(airports.kei","array(airports.valu","array(count","array),字典(dictionary),范围(range),字符串(str","array-liter","array-literal-item","array-literal-items­opt","array-literal-item­,­(opt","array-literal-item­,­array-literal-item","array-typ","array3d","array3d[0]是指[[1","array提示check","class_protocol","class、deinit、enum、extension、func、import、init、let、protocol、static、struct、subscript、typealias、var","class关键字来表示该属性为类成员;用结构体或枚举实现协议时,则使用stat","class关键字表示协议中的成员为类成员;当协议用于被枚举或结构体遵循时,则使用stat","class前添加@final特性(@fin","class类型。它创建了一个可以存储ani","class)来将整个类标记为fin","claus","close","closer","closest","clossur","closur","closure)包含了可执行的代码(跟方法主体(stat","closure-express","closure-signatur","closure-signature­opt­stat","closures(需要arc","club","cluster","cm","cocoa","cocoa的基础上构建框架栈并将其标准化。objective-c","cocoa里的nslog函数一样,println","code","code-block","code>$0$1$2`。例如,class`class`。反引号不属于标识符的一部分,`x`4(x","comparable等同于t","comparable表示任何用于替代类型形参t的类型实参必须满足compar","comparable,等等),但是依然可以用来对类型形参及其关联约束提供更复杂的约束。如,<t","compasspoint","compasspoint.west","compasspoints例子中,north,south,east和west不是隐式得等于0,1,2和3。相反的,这些不同的枚举成员在compasspoint","compasspoint和planet","compil","compile-tim","complement","complet","completedlevel(level","complex","compon","composit","compound","comput","computedtypeproperti","concaten","concept","condit","condition(item","conditional-oper","conditional-operator­prefix-express","condition的值在statements执行前就已计算出,因此while语句中的stat","condition表达式的值是在statements表达式执行后才计算出,因此do-while语句中的stat","condition表达式的值的类型必须遵循logicvalue协议。同时,condit","confid","conform","conformance-requir","conformance(arrai","equatable类型都可以安全的使用在findindex函数中,因为其保证支持等式操作。为了说明这个事实,当你定义一个函数时,你可以写一个equat","equatable,也就意味着“任何t类型都遵循equat","equilater","equilateraltriangl","equilateraltriangle(sidelength","equival","equivalent."","error","error(error","error(str","escaped-charact","essenc","evalu","even","everyth","ewa","eww","exact","exactli","exampl","exampleclass","examplemodule.mytyp","exampleprotocol","except","exclus","execut","exist","expect","explan","explicit","explicit-member-express","explicitdoubl","explicitli","exponentdoubl","export","express","expression)dynamic表达式(dynam","expression)self表达式(self","expression)。起保护作用的表达式是这样构成的:关键字where后面跟着一个作为额外测试条件的表达式。因此,当且仅当控制表达式匹配一个case的某个模式且起保护作用的表达式为真时,对应case块中的statements才会被执行。在下面的例子中,控制表达式只会匹配含两个相等元素的元组,如(1","expression)会首先被计算,然后与每一个case的模式(pattern)进行匹配。如果匹配成功,程序将会执行对应的case块里的statements。另外,每一个case块都不能为空,也就是说在每一个case块中至少有一条语句。如果你不想在匹配到的case块中执行代码,只需在块里写一条break","expression)初始化函数表达式(initi","expression)可选链表达式(optional-chain","expression)后缀self表达式(postfix","expression)圆括号表达式(parenthes","expression)强制取值表达式(forced-valu","expression)显式成员表达式(explicit","expression)超类表达式(superclass","expression)闭包表达式(closur","expression)隐式成员表达式(implicit","expression),switch","expression-el","expression-element-list","expression-element­,­expression-element-list","expression-list","expression-pattern","expression.dynamictyp","expression.init(initi","expression.memb","expression.self","expression[index","expressions)sort","expressions)前缀表达式(prefix","expressions)字符型表达式(liter","expression­,­expression-list","expression­:­express","expression)。通常会增加或减少计数器的值,或者根据语句(statements)输出来修改某一个初始化的变量。当递增表达式运行完成后,重复执行第2","exp,那这个数相当于基数和10^exp","exp,那这个数相当于基数和2^exp","extend","extens","extension-bodi","extension-declar","extension][6","extension][7","extern","extra","f","face字符的utf-16","face的4","face的unicod","face,unicod","factor","fail","failur","fall","fallthrough","fallthrough-stat","fallthrough关键字不会检查它下一个将会落入执行的case中的匹配条件。fallthrough简单地使代码执行继续连接到下一个case中的执行代码,这和c语言标准中的switch","fallthrough语句可出现在switch语句中的任意case里,但不能出现在最后一个case块中。同时,fallthrough语句也不能把控制权传递给使用了可选绑定的cas","fallthrough语句用于在switch语句中传递控制权。fallthrough语句会把控制权从switch语句中的一个case传递给下一个case。这种传递是无条件的,即使下一个case的值与switch","fals","false。同样的,item","false。这类循环适合使用在第一次迭代前迭代次数未知的情况下。swift","familiar","feed","feed)\\n","feed)(u+000a)、回车符(carriag","feed)(u+000c)以及空(null)(u+0000","feet","few","fibonacci","file","file),它返回的是当前modul","filenam","fill","film","final","finalsquar","finalsquare,board,square和dicerol","finalsquare,这表明你必须刚好落在方格25","finalsquare,board,squar","final方法,属性或下标,在编译时会报错。在扩展中,你添加到类里的方法,属性或下标也可以在扩展的定义里标记为fin","final来防止它们被重写,只需要在声明关键字前加上@final特性即可。(例如:@fin","find","findindex([\"mik","findindex([3.14159","findindex(arrai","findindex中这个单个类型参数写做:t","findindex函数现在则可以成功的编译过,并且作用于任何遵循equatable的类型,如double或str","findindex,用某个类型t","findstringindex","findstringindex(arrai","findstringindex(str","findstringindex的泛型版本findindex。请注意这个函数仍然返回int","findstringindex的非泛型函数,该函数功能是去查找包含一给定string值的数组。若查找到匹配的字符串,findstringindex函数返回该字符串在数组中的索引值(int),反之则返回nil","first","first-class)类型。它们采用了很多传统上只被类所支持的特征,例如计算型属性(comput","firstbit","firstforloop","firstitem","firstprotocol","firstroomnam","firstsixbit","firstvalu","firstvector","fit","five","fiveeight","fiveonezero","fixedincr","fixedlengthrang","fixedlengthrange(firstvalu","fixedlengthrange的实例包含一个名为firstvalue的变量存储属性和一个名为length的常量存储属性。在上面的例子中,length","fixedpoint","fixedpoint.movebyx(2.0","flat","flexibl","float","floating-point","floating-point-","floating-point-liter","floating-point-p","float并指定初始值为4","float表示32","flour","flow章节有该游戏的详细介绍)游戏的新版本.新版本使用dice作为骰子,并且实现了dicegame和dicegamedeleg","follow","for-condition-incr","for-condition-increment循环体中,在调用continu","for-in","for-in-stat","for-infor条件递增(for-condition-increment)whil","for-init","for-in循环和半闭区间操作(..)来迭代somecontainer中的所有items。对于每个item,函数检查是否somecontainer中的item不等于对应的anothercontainer中的item,如果这两个items不等,则这两个容器不匹配,返回fals","for-in循环来遍历某个字典中的键值对。每一个字典中的数据项都由(kei","for-in循环的介绍请参见for","for-in循环请参见for","for-in语句允许在重复执行代码块的同时,迭代集合(或遵循sequ","for-in语句在循环开始前会调用collection表达式的generate方法来获取一个生成器类型(这是一个遵循generator协议的类型)的值。接下来循环开始,调用collection表达式的next方法。如果其返回值不是none,它将会被赋给item,然后执行statements,执行完毕后回到循环开始处;否则,将不会赋值给item也不会执行statements,for-in","for-in语句或者变量或常量申明时,它可以包含通配符模式,标识符模式或者其他包含这两种模式的模式。例如,下面这段代码是不正确的,因为(x","for-stat","forc","force-unwrap","forced-valu","forced-value-express","forget","forincr","forkei","form","for—that","for条件递增(for-condition-incr","for语句、for-in语句、while语句和do-whil","for语句中,continue语句执行后,increment表达式还是会被计算,这是因为每次循环体执行完毕后incr","found","found"","found")元组把一个int值和一个str","foundat","foundindex","four","fourbyfivebytwo","fourbyfivebytwo.volum","freedom","friar","friendlywelcom","friendlywelcome的值从"hello!"改为了"bonjour!"","fromraw方法来试图找到具有特定原始值的枚举成员。这个例子通过原始值7识别uranu","fromthetop","fruit","fruitsummari","ft","fullnam","fullynam","fullynamed协议含有fullname属性.因此其遵循者必须含有一个名为fullname,类型为str","func","function","function)中,__function__","function-bodi","function-call-express","function-declar","function-head","function-nam","function-result","function-signatur","function-typ","functionality)。这包括在没有权限获取原始源代码的情况下扩展类型的能力(即逆向建模)。扩展和objective-c中的分类(categories)类似。(不过与objective-c不同的是,swift","functions)函数参数与返回值(funct","functions)函数的定义与调用(defin","functions),它们定义在全局域中。你也可以把函数定义在别的函数体中,称作嵌套函数(nest","function)的类型相当于一个嵌套函数类型。例如,下面的柯里化函数addtwonumber()()的类型是int","func作为前缀。指定函数返回类型时,用返回箭头->","func关键字之前加上关键字class;声明结构体和枚举的类型方法,在方法的func关键字之前加上关键字stat","func来声明一个函数,使用名字和参数来调用函数。使用->","g","game","game(gam","game,d12,simothehamst","game.deleg","game.dice.sides)-sid","game.plai","gamedidend(gam","gamedidstart(gam","gamedidstart方法从game参数获取游戏信息并输出.game在方法中被当做dicegame类型而不是snakeandladders类型,所以方法中只能访问dicegam","gameloop","gameloop去跳转到下一次循环迭代时,这里使用gameloop标签并不是严格必须的。因为在这个游戏中,只有一个循环体,所以continue语句会影响到哪个循环体是没有歧义的。然而,continue语句使用gameloop标签也是没有危害的。这样做符合标签的使用规则,同时参照旁边的break","gameloop语句结束本次whil","gameloop语句跳转控制去执行whil","gear","gener","generator.random","generic-argu","generic-argument-claus","generic-argument-clause[opt","generic-argument-clause[opt].type-identifi","generic-argument-list","generic-argument­,­generic-argument-list","generic-paramet","generic-parameter-claus","generic-parameter-list","generic-parameter­,­generic-parameter-list","getgaspric","gettable,但它不要求属性是存储型属性(stor","getter","getter-claus","getter-keyword-claus","getter-sett","getter-setter-block","getter-setter-keyword-block","getter-setter方法​​块可以由一个getter子句后跟一个可选的setter子句构成,用大括号括起来,或者由一个setter子句后跟一个gett","getter/sett","getters和sett","getter和sett","getter获取某个值,或者通过sett","getter(或sett","get代码块中的代码写在subscript","get关键字表示。它们的返回值是double型,而且可以用于所有接受doubl","ghostbust","give","given","global","goe","gonna","good","goodby","grai","grammar","graphem","graphic","great","green","greencompon","greet","greet(\"bob","greet(nam","greeting被调用,该函数结束它的执行并返回greet","grid","grid[(row","group","grtmndsthnklk","gt","gt;>","gt;"","guard","guard-claus","guard-express","guess","guide,即便你没有实现它。例如:swift的array和dictionary类型都是泛型集。你可以创建一个int数组,也可创建一个string数组,或者甚至于可以是任何其他swift的类型数据数组。同样的,你也可以创建存储任何指定类型的字典(dictionari","h","half-clos","halfopenrangelength(start","hall","halv","hamster","hamster(nam","hamster的实例可以作为textrepresent","handl","happen","happi","harmless","hasanymatches(list","hasanymatches(numb","hasarea","hasarea协议时,通过as?操作符将其可选绑定(opt","hasdoorkei","hash","hashabl","hashable和valuetype产生的。每一个类型实参必须满足它所替代的泛型形参的所有约束,包括任何where语句所指定的额外的要求。上面的例子中,类型形参keytype要求满足hashable协议,因此string也必须满足hash","hashead","hashtabl","hasprefix","hasprefix/hassuffix","hawk","heart","hearts.simpledescript","heartsdescript","heartssymbol","hearts成员:给hearts常量赋值时,枚举成员suit.hearts需要用全名来引用,因为常量没有显式指定类型。在switch里,枚举成员使用缩写.hearts来引用,因为self的值已经知道是一个suit","heathrow","height","height=\"120","height=\"169","height=\"288","height=\"290","height=\"357","height=\"387","hello","hello-world","help","here","here'","here’","hexadecim","hexadecimal-digit","hexadecimal-expon","hexadecimal-fract","hexadecimal-liter","hexadecimal-literal-charact","hexadecimaldoubl","hexadecimalinteg","hierarchi","high","higher","higher-preced","highest","highestunlockedlevel","highland","hold","horizont","horribl","hors","htmlelement","htmlelement(nam","htmlelementdeinitializer中的消息并没有别打印,证明了htmlel","htmlelement例子中,无主引用是正确的解决循环强引用的方法。这样这样编写htmlel","htmlelement实现和之前的实现一致,只是在ashtml闭包中多了一个占有列表。这里,占有列表是[unown","htmlelement类产生了类实例和ashtml","htmlelement类只提供一个构造函数,通过name和text(如果有的话)参数来初始化一个元素。该类也定义了一个析构函数,当htmlel","htmlelement类定义了一个name属性来表示这个元素的名称,例如代表段落的"p",或者代表换行的"br"。htmlelement还定义了一个可选属性text,用来设置和展现html","htmlelement还定义了一个lazy属性ashtml。这个属性引用了一个闭包,将name和text组合成html","http","http200statu","http200status.descript","http200status.statuscod","http404error","http404error.0","http404error.1","human","hundr","iboutlet和ibinspectable用于修饰一个类的属性声明;ibaction特性用于修饰一个类的方法声明;ibdesign","identifi","identifier-charact","identifier-head","identifier-list","identifier-list­function-result­(opt)­in","identifier-pattern","identifier-patterntype-annotationopt","identifier­:­express","identifier­generic-argument-clause­(opt","if-condit","if-stat","if和let来处理值缺失的情况。有些变量的值是可选的。一个可选的值可能是一个具体的值或者是nil","if和switch来进行条件操作,使用for-in、for、while和do-whil","if和while语句中来对可选的值进行判断并把值赋给一个常量或者变量。if和whil","if或els","if语句中条件的值的类型必须遵循logicvalu","if语句中,条件必须是一个布尔表达式——这意味着像if","if语句允许二选一,也就是当条件为假时,执行els","if语句和switch","if语句和switch语句。通常,当条件较为简单且可能的情况很少时,使用if语句。而switch语句更适用于复杂的条件、可能的情况很多且需要用到模式匹配(pattern-match","if语句来判断一个可选是否包含值。如果可选有值,结果是true;如果没有值,结果是fals","if语句用于判断是不是特别热。而最后的els","if语句的第一个分支中操作actualnumber的值,你可以改成if","ignor","illustr","imag","img","immedi","implement","implicit","implicit-member-express","implicit-parameter-nam","implicitdoubl","implicitinteg","implicitli","implicitly-unwrapped-optional-typ","implicitlyunwrappedoptional泛型实参语句泛型形参语句泛型形参语句where语句hello","pad","paddeddoubl","paddedstr","paint","pair","paragraph","paragraph变量为nil,打破它持有的htmlelement实例的强引用,htmlel","paragraph变量定义为可选htmlelement,因此我们可以赋值nil","parakeet","paramet","parameter),不支持默认参数(default","parameter-claus","parameter-clause­function-result­(opt)­in","parameter-list","parameter-nam","parameternam","parameters"","parameters(这里需要closur","parameters类型参数命名类型参数泛型类型类型约束类型约束语法类型约束行为关联类型关联类型行为扩展一个存在的类型为一指定关联类型wher","parameters)函数类型(funct","parameters)常量参数和变量参数(const","parameters)无参函数(funct","parameters)无返回值函数(funct","parameters)输入输出参数(in-out","parameter’","parent","parenthes","parenthesized-express","part","particular","pass","passedretinascan","passeng","pattern","pattern-initi","pattern-initializer-list","patternastyp","patterns)表达式模式(express","patterns)通配符模式(wildcard","pattern)代表了单个值或者复合值的结构。例如,元组(1","pattern)值绑定模式(value-bind","pattern)元组模式(tupl","pattern)和元组模式(tupl","pattern)枚举案例模式(enumer","pattern)标识符模式(identifi","pattern)类型转换模式(type-cast","pattern),标识符模式(identifi","penguin","pepper","perform","performact","perimet","person","person'","person(fullnam","person(nam","person?的变量,用来按照代码片段中的顺序,为新的person实例建立多个引用。由于这些变量是被定义为可选类型(person?,而不是person),它们的值会被自动初始化为nil,目前还不会引用到person","personnam","person和apart","person和apartment实例并将类实例赋值给john和number73","person和apartment的例子一致,但是有一个重要的区别。这一次,apartment的ten","person和apartment的例子展示了两个属性的值都允许为nil","person和resid","person和residence模型通过添加一个room和一个address","person实例依然保持对apartment实例的强引用,但是apartment实例只是对person实例的弱引用。这意味着当你断开john变量所保持的强引用时,再也没有指向person","person实例有一个类型为string,名字为name的属性,并有一个可选的初始化为nil的apartment属性。apart","person实例现在有了一个指向apartment实例的强引用,而apartment实例也有了一个指向person实例的强引用。因此,当你断开john和number73变量所持有的强引用时,引用计数并不会降为0,实例也不会被arc","person实例,它的resid","person类开始,并定义了一个叫nam","person类有一个构造函数,此构造函数为实例的name属性赋值并打印出信息,以表明初始化过程生效。person","person类的新实例被赋值给了reference1变量,所以reference1到person类的新实例之间建立了一个强引用。正是因为这个强引用,arc会保证person","person类的构造函数的时候,"john","person结构体含有一个名为fullnam","pi","piec","pink","place","placehold","plai","plane","planet","planet.earth","planet.earth.toraw","planet.fromraw(7","planet.fromraw(9)语句获得一个可选planet,如果可选planet可以被获得,把someplanet设置成该可选planet的内容。在这个范例中,无法检索到位置为9的行星,所以els","planet.fromraw(positiontofind","planet.uranu","planet.venus的原始值是2","player","player(coin","player(nam","player.completedlevel(1","player.tracker.advancetolevel(6","playernam","playeron","playerone!.coinsinpurs","playerone!.wincoins(2_000","playerone是可选的,所以由一个感叹号(!)来修饰,每当其wincoins方法被调用时,coinsinpurs","player实例都由一个指定数目硬币组成的启动额度初始化,这些硬币在bank初始化的过程中得到。如果没有足够的硬币可用,play","player实例随着一个100个硬币(如果有)的请求而被创建。这个player实例存储在一个名为playerone的可选player变量中。这里使用一个可选变量,是因为players可以随时离开游戏。设置为可选使得你可以跟踪当前是否有play","player已经赢得了2,000硬币。player的钱包现在有2,100硬币,bank只剩余7,900","player现在已经离开了游戏。这表明是要将可选的playerone变量设置为nil,意思是"没有player实例"。当这种情况发生的时候,playerone变量对player实例的引用被破坏了。没有其它属性或者变量引用player实例,因此为了清空它占用的内存从而释放它。在这发生前一步,其析构函数被自动调用,其硬币被返回到bank","player类使用leveltrack","player类创建一个新的leveltracker实例来检测这个用户的发展进度。他提供了completedlevel方法:一旦玩家完成某个指定等级就调用它。这个方法为所有玩家解锁下一等级,并且将当前玩家的进度更新为下一等级。(我们忽略了advancetolevel返回的布尔值,因为之前调用leveltracker.unlocklevel","player类定义了一个wincoins方法,该方法从bank获取一定数量的硬币,并把它们添加到player的钱包。player类还实现了一个析构函数,这个析构函数在player实例释放前一步被调用。这里析构函数只是将player的所有硬币都返回给bank","player类描述了游戏中的一个玩家。每一个player在任何时刻都有一定数量的硬币存储在他们的钱包中。这通过player的coinsinpurs","pleas","plu","plusminusvector","plusthre","pm","point","point(x","point.0","point.1","pointonefouronefivenin","point封装了一个(x","point来引用元组(int","point结构体定义了一个变异方法(mut","pop","popul","popviewcontrolleranim","pop并移除值"cuatro"","pop方法的返回值,该返回值将是一个t","port","posit","positiontofind","possibl","possibleinteg","possibleintegervalu","possiblenumb","possiblenumber.toint","possiblenumber.toint返回的可选int包含一个值,创建一个叫做actualnumb","possibleplanet","possiblestr","postfix","postfix-express","postfix-expression­.­decimal-digit","postfix-expression­.­dynamictyp","postfix-expression­.­identifier­generic-argument-clause(opt","postfix-expression­.­init","postfix-expression­.­self","postfix-expression­[­expression-list","postfix-expression­parenthesized-express","postfix-expression­parenthesized-expression­(opt)­trailing-closur","postfix-expression­postfix-oper","postfix-oper","postfix-operator-declar","postfix-self-express","potentialoverflow","powder","power","preced","precedence-claus","precedence-level","predefin","predict","prefix","prefix)表达式,二元(binary)表达式,主要(primary)表达式和后缀(postfix)表达式。表达式可以返回一个值,以及运行某些逻辑(caus","prefix-express","prefix-expression­binary-expressions(opt","prefix-oper","prefix-operator-declar","prefix存在时,将prefix插入到name之前来为starship构建fullnam","preslei","prettytextrepresent","prettytextrepresentable协议的同时,也需要遵循textrepresent","prettytextrepresentable协议继承了textrepresent","primari","primary-express","prime","principl","print","print(\"\\(codeunit","print(\"\\(scalar.valu","print(\"\\n","print(\"conson","print(\"oth","print(\"vowel","print(parent!.titl","print(self!.titl","print(self.titl","printandcount(\"hello","printandcount(stringtoprint","printandcount,输出一个字符串并返回int类型的字符数。第二个函数printwithoutcount","printclassnam","printhelloworld","printletterkinds(\"hello","printletterkinds(word","printletterkinds的输入是一个string值并对其字符进行迭代。在每次迭代过程中,考虑当前字符的kind计算属性,并打印出合适的类别描述。所以printletterkinds就可以用来打印一个完整单词中所有字母的类型,正如上述单词"hello"","println","println(\"'\\\\(word","println(\"(0","println(\"(\\(point.0","println(\"(\\(somepoint.0","println(\"(\\(x","println(\"3的6倍是\\(threetimestable[6","println(\"\\(airportcod","println(\"\\(animalname)","println(\"\\(bas","println(\"\\(country.name)'","println(\"\\(currentvalu","println(\"\\(index","println(\"\\(nam","println(\"\\(possiblenumb","println(\"\\(scalar","println(\"\\(somecharact","println(\"\\(total.vowel","println(\"a","println(\"about","println(\"access","println(\"ad","println(\"airport","println(\"al","println(\"an","println(\"and","println(\"apart","println(\"area","println(\"automaticcar","println(\"bicycl","println(\"car","println(\"card","println(\"count","println(\"eww","println(\"gam","println(\"goodby","println(\"happi","println(\"hello","println(\"here'","println(\"highest","println(\"index","println(\"it","println(\"it'","println(\"item","println(\"john'","println(\"level","println(\"lot","println(\"media","println(\"mmm","println(\"mostli","println(\"movi","println(\"not","println(\"on","println(\"play","println(\"playeron","println(\"qr","println(\"random","println(\"result","println(\"rol","println(\"som","println(\"somebaseclass","println(\"someint","println(\"somesubclass","println(\"someth","println(\"somewher","println(\"song","println(\"speedlimitedcar","println(\"square.origin","println(\"start","println(\"tandem","println(\"th","println(\"that","println(\"theaceofspad","println(\"ther","println(\"thi","println(\"thre","println(\"un","println(\"unusualmenageri","println(\"upc-a","println(\"watch","println(\"welcom","println(\"wher","println(\"zero","println("thes","println(assumedstr","println(audiochannel.maxinputlevelforallchannel","println(cat","println(charact","println(counter.count","println(d12.astext","println(definitestr","println(descript","println(friendlywelcom","println(game.asprettytext","println(game.astext","println(halfopenrangelength(1","println(item","println(leftchannel.currentlevel","println(manager.importer.filenam","println(messag","println(paragraph!.ashtml","println(possiblestr","println(puzzleoutput","println(rightchannel.currentlevel","println(sayhello(\"anna","println(sayhello(\"brian","println(sayhelloagain(\"anna","println(sayhelloworld","println(someclass.computedtypeproperti","println(somestructure.storedtypeproperti","println(somethingtextrepresentable.astext","println(stringtoprint","println(thing.astext","println(“th","println函数输出传入的str","println是一个用来输出的全局函数,输出的内容会在最后带换行。如果你用xcode,println将会输出内容到“console”面板上。(另一种函数叫print","printmathresult(addtwoint","printmathresult(mathfunct","printmathresult函数的作用就是输出另一个合适类型的数学函数的调用结果。它不关心传入函数是如何实现的,它只关心这个传入的函数类型是正确的。这使得printmathresult可以以一种类型安全(type-saf","printmathresult函数,它有三个参数:第一个参数叫mathfunction,类型是(int","printmathresult被调用时,它被传入addtwoints函数和整数3和5。它用传入3和5调用addtwoints,并输出结果:8","printnumberofroom","prints\"hello","printwithoutcounting(\"hello","printwithoutcounting(stringtoprint","prioriti","privat","process","procotol","productbarcod","productbarcode的新变量,并且赋给它一个barcode.upca的关联元组值(8","productcod","program","properti","properties),用于提供关于枚举当前值的附加信息,实例方法(inst","property),也能够要求属性的(设置权限)sett","property)在实例方法中修改值类型(modifi","property)还是计算型属性(calcul","property)还是计算型属性(comput","property),或下标(subscript)提供自己定制的实现(implementation)。我们把这种行为叫重写(overrid","protoc","protocol","protocol<protocol","protocol<someprotocol","protocol-associated-type-declar","protocol-bodi","protocol-composition-typ","protocol-declar","protocol-identifi","protocol-identifier-list","protocol-initializer-declar","protocol-member-declar","protocol-method-declar","protocol-nam","protocol-property-declar","protocol-subscript-declar","protocol(item","repeatedvalu","repeatedvalue:0.0","repetit","repetitions(task","report","repres","represent","request","requir","requirement-claus","requirement-list","requirement­,­requirement-list","reserv","reset","reset将计数器重置为0","resid","residence中也提供了一个printnumberofroom","residence具有一个int类型的numberofrooms,其值为1。person具有一个自判断residence属性,它的类型是resid","residence存储了一个room实例的数组,它的numberofrooms属性值不是一个固定的存储值,而是通过计算而来的。numberofrooms属性值是由返回rooms数组的count","residence定义了一个自判断属性叫address(address?)。address","residence实例给john.resid","residence实例给john.residence,且在他的rooms数组中有一个或多个room实例,那么你可以使用可选链通过residence子脚本来获取在room","residence属性numberofrooms属性值,将会引发运行时错误,因为这时没有可以供解析的resid","residence的printnumberofrooms方法会打印numberofroom","residence类中定义的子脚本来获取john.residence数组中第一个房间的名字。因为john.residence现在是nil","respond","result","result(str","result(sunris","retriev","return","return-stat","returnfifteen","returntyp","return时,仅仅是将控制权从该函数或方法传递给调用者,而不返回一个值。(这就是说,该函数或方法的返回类型为void","return语句后面带表达式时,表达式的值将会返回给调用者。如果表达式值的类型与调用者期望的类型不匹配,swift","return语句时,可以只写return这个关键词,也可以在return","return)\\r","return)或换行符(lin","return)(u+000d","revers","rh","rhsitem","rick","ridlei","right","right-associ","right-hand","right.i","right.x","rightchannel","rightchannel.currentlevel","rise","role","roll","roll方法用来模拟骰子的面值.它先使用generator的random方法来创建一个[0-1","romeoandjuliet","room","room(","room(nam","roomcount","rooms.count","rooms[i","rooms数组的room类是一个很简单的类,它只有一个name属性和一个设定room","rooms数组,resid","rooms,它被初始化为一个room","round","row","row0","row1","rowheight","row和column下标的matrix","row和column的数量来构造一个新的matrix","rule","runingtotal变量的内存管理操作,如果不再被incrementor","runningtot","runningtotal增加amount","runningtotal的值,incrementor捕获了当前runningtotal变量的引用,而不是仅仅复制该变量的初始值。捕获一个引用保证了当makeincrementor结束时候并不会消失,也保证了当下一次执行incrementor函数时,runningtot","runtim","s","s1","s2","s2),backwards函数返回true,表示在新的数组中s1应该出现在s2","safe","safeti","same","same-type-requir","samequot","sampl","sandwich","sankesandladders的实例都可以使用asprettytext","saturn","saygoodbye(\"dav","saygoodbye(personnam","saygoodbye函数依然返回了值。没有定义返回类型的函数会返回特殊的值,叫void。它其实是一个空的元组(tupl","sayhello(personnam","sayhelloagain(personnam","sayhelloworld","sayhello。上面的例子展示的是用"anna"和"brian"","sayhello函数时,在圆括号中传给它一个string类型的实参。因为这个函数返回一个string类型的值,sayhello可以被包含在println","sayhello函数的另一个版本,叫wavegoodbye,这个函数直接输出str","sayhello的函数体中,先定义了一个新的名为greeting的string常量,同时赋值了给personname的一个简单问候消息。然后用return关键字把这个问候返回出去。一旦return","scalar","scarf","scene","scene.hasprefix(\"act","scope","score","scott","second","secondforloop","secondvector","see","seem","self","self(initi","self-express","self.anm","self.area","self.artist","self.capitalc","self.column","self.count","self.countri","self.custom","self.director","self.gener","self.greet","self.init(initi","self.init(origin","self.leg","self.memb","self.nam","self.name)>\\(text)(somet","somestr","somestring变量通过字符串字面量进行初始化,swift","somestructur","somestructure.storedtypeproperti","somesubclass","somesuperclass","somesupertyp","someth","somethingtextrepresent","sometuple的类型被指定为(doubl","sometuple:(doubl","sometyp","sometype(ofinitialvalu","sometypemethod","sometypeproperti","someu","somevalu","somevalue是一个标识符模式,匹配了类型是int的42","somevehicl","somewher","song","song(nam","song.artist","song.nam","songcount","songcount,用来计算数组librari","song检查item是否为song类型的实例。在循环末尾,moviecount","sort","sort([1","sort(nam","sort函数当排序结束后传入的第一个参数排在第二个参数前面还是后面。如果第一个参数值出现在第二个参数值前面,排序闭包函数需要返回true,反之返回fals","sort函数的参数进行传入的,swift","sort期望第二个参数是类型为(str","soup","sourc","south","space","space)(u+0020)、换行符(lin","spade","span","sparklingheart","special","specif","specifi","speed","speedlimitedcar","speedlimitedcar实例的speed属性时,属性setter的实现会去检查新值与限制值40mph的大小,它会将超类的speed设置为newvalue和40.0中较小的那个。这两个值哪个较小由min函数决定,它是swift标准库中的一个全局函数。min","speedlimitedcar实例的speed属性设置为一个大于40mph的数,然后打印description函数的输出,你会发现速度被限制在40mph","speedlimitedcar,它是car的子类。类speedlimitedcar表示安装了限速装置的车,它的最高速度只能达到40mph。你可以通过重写继承来的spe","spici","spider","spread","spread","cheese",和"butter"替换为"bananas"","squar","square(sidelength","square.cent","square.origin","square.origin.i","square.origin.x","square.sidelength","square的center属性可以通过点运算符(square.center)来访问,这会调用getter来获取属性的值。跟直接返回已经存在的值不同,getter实际上通过计算然后返回一个新的point实例表示square的中心点。如代码所示,它正确返回了中心点(5","square的rect实例,初始值原点是(0","src=\"https://developer.apple.com/library/prerelease/ios/documentation/swift/conceptual/swift_programming_language/art/barcode_qr_2x.png","src=\"https://developer.apple.com/library/prerelease/ios/documentation/swift/conceptual/swift_programming_language/art/barcode_upc_2x.png","src=\"https://developer.apple.com/library/prerelease/ios/documentation/swift/conceptual/swift_programming_language/art/computedproperties_2x.png","src=\"https://developer.apple.com/library/prerelease/ios/documentation/swift/conceptual/swift_programming_language/art/coordinategraphcomplex_2x.png","src=\"https://developer.apple.com/library/prerelease/ios/documentation/swift/conceptual/swift_programming_language/art/coordinategraphmedium_2x.png","src=\"https://developer.apple.com/library/prerelease/ios/documentation/swift/conceptual/swift_programming_language/art/coordinategraphsimple_2x.png","src=\"https://developer.apple.com/library/prerelease/ios/documentation/swift/conceptual/swift_programming_language/art/staticpropertiesvumeter_2x.png","stack","stack(栈)。一个栈是一系列值域的集合,和array(数组)相似,但其是一个比swift的array类型更多限制的集合。一个数组可以允许其里面任何位置的插入/删除操作,而栈,只允许,只允许在集合的末端添加新的项(如同push一个新值进栈)。同样的一个栈也只能从末端移除项(如同pop","stack(inout","swaptwovalues例子中,节点类型t是一种类型参数的示例。类型参数指定并命名为一个节点类型,并且紧随在函数名后面,并用一对尖括号括起来(如)。这个尖括号告诉swift那个t是swaptwovalues函数所定义的一个节点类型。因为t是一个节点,swift不会去查找每一个命名为t","t-shirt","t.0","t.1","t.element","t.generatortype.el","tab","tabl","tab(horizont","tab(vert","tab)\\t","tab)(u+0009","tab)(u+000b)、换页符(form","tailor","take","taken","tandem","tandem.descript","tandem类也继承了descript","target","task","tast","tasti","td","td>1","td>1*2","td>3","td>4","td>5","td>6","td>7","td>8","td>9","tea","teamscor","temperatureinfahrenheit","temporari","temporarya","ten","tenant","terminolog","ternari","terrapin","test","test.area","test.simpledescript","testnumb","text","text</p>"或者"<p","text"还是nil,闭包会返回"<p>som","textrepresent","textrepresentabl","textrepresentable协议含有一个astext","theaceofspad","theaceofspades.descript","there’","thing","things.append(\"hello","things.append((3.0","things.append(0","things.append(0.0","things.append(3.14159","things.append(42","things.append(movie(nam","things数组中的每一项的并用switch语句查找每一项的类型。这几种switch","things数组可以被直接遍历,并调用其中元素的astext","thing被当做是textrepresentable类型而不是dice,dicegame,hamster等类型.因此能且仅能调用astext","think","third","those","thought","thousand","three","threedescript","threedoubl","threefeet","threeofspad","threeofspades.simpledescript","threeofspadesdescript","threesourc","threesource作为数据源开实例化一个count","threesource实现了counterdatasourc","threetimest","threetimestable[6]。这句话访问了threetimestable的第六个元素,返回18或者6的3","three的值被用来创建一个doubl","threshold","thresholdlevel","through","through)带标签的语句控制传递语句break","time","timest","timestable(multipli","timestable例子是基于一个固定的数学公式。它并不适合开放写权限来对threetimestable[someindex","timestable结构体中使用只读下标的用法,该结构体用来展示传入整数的n","timestable结构体创建了一个用来表示索引值三倍的实例。数值3作为结构体构造函数入参表示这个值将成为实例成员multipli","tobedoubl","todai","togeth","toggl","togglabl","togglable协议含有toggle函数.根据函数名称推测,toggle可能用于切换或恢复某个属性的状态.mut","togglabl协议时,必须在toggle方法前加上mut","toincrement","toint方法可能会失败,所以它返回一个可选的int,而不是一个int。一个可选的int被写作int?而不是int。问号暗示包含的值是可选,也就是说可能包含int值也可能不包含值。(不能包含其他任何值比如bool值或者string值。只能是int","toint方法来尝试将一个string转换成int","tokyo","toobig","top","top-level","top-level-declar","toraw","toraw和fromraw","tostr","tostring:\"world","total","total.conson","totalstep","totalsteps设置新值的时候,它的willset和didset","touch","towardszerosourc","towardszerosource实现了counterdatasource协议中的incrementforcount","to那些包含可选成员需求的协议。更多关于如何使用optional特性以及如何访问可选协议成员的指导,例如,当你不确定一个conform","tr","tracker","tracker.advancetolevel(level","trail","trailing-closur","transer","trap","travel","tre","treat","tree","tree)的叶子节点传向根节点。也就是说,var","triagl","triangl","triangle.perimet","triangle.sidelength","triangleandsquar","triangleandsquare(s","triangleandsquare.squar","triangleandsquare.square.sidelength","triangleandsquare.triangle.sidelength","trigger","tristateswitch","tristateswitch.low","true","true),statements将会被执行,然后转到第3步。如果为假(false),statements和increment都不会被执行,for","true),转到第1步。如果为假(false),do-whil","true),转到第2步。如果为假(false),whil","true。从字面意思来说,断言“断言”一个条件是否为真。你可以使用断言来保证在运行其他代码之前,某些重要的条件已经被满足。如果条件判断为true,代码运行会继续进行;如果条件判断为fals","true和fals","true,会重复运行一系列语句,直到条件变为fals","true,则会执行大括号内部的代码(stat","truncat","try","tuesdai","tulip","tupl","tuple-pattern","tuple-pattern-el","tuple-pattern-element-list","tuple-patterntype-annotationopt","tuple-typ","tuple-type-bodi","tuple-type-body[opt","tuple-type-el","tuple-type-element-list","turn","turnip","turnipsaredelici","two","two-dimension","twothousand","twothousandandon","twothousand类型是uint16,然而常量one类型是uint8。它们不能直接相加,因为它们类型不同。所以要调用uint16(one)来创建一个新的uint16数字并用on","twothre","two’","tyo","type","type(in","type)(译者注:特指结构体和枚举)中的的函数前缀加上mut","type),修改变量的值就相当于修改变量的类型,而swift默认不允许修改类型,因此需要前置mut","type),可以方便的修改实例及其属性的值而无需改变类型;而结构体和枚举中的成员均为值类型(valu","type)。你可以在声明属性或者变量时,在前面加上关键字unown","type)的上下文(context)中,隐式成员表达式是访问某个type的memb","type-annot","type-cast","type-casting-oper","type-casting-pattern","type-identifi","type-identifier­:­protocol-composition-typ","type-identifier­:­type-identifi","type-identifier­==­type-identifi","type-inheritance-claus","type-inheritance-list","type-nam","type-name­:­protocol-composition-typ","type-name­:­type-identifi","type-saf","type.protocol","type.self","type.typ","typealia","typealias-assign","typealias-declar","typealias-head","typealias-nam","types(章节信息url","types中知道结构体有默认的成员构造函数,所以你可以用默认的initializer去初始化新的常量theaceofspad","types)——比如表示数字、字符和字符串——实际上就是命名型类型,swift","types)使用函数类型(us","types)函数类型作为参数类型(funct","types)函数类型作为返回类型(funct","types)嵌套函数(nest","types,如int、character)外,你可以使用任何类型的值,包括浮点数、字符串、元组、自定义类的实例和可选(optional)类型,甚至是枚举类型中的成员值和指定的范围(range)等。关于在switch语句中使用这些类型,请参考控制流一章的switch","type’","type。协议类型的元类型——并不是运行时适配该协议的具体类型——是该协议名字紧跟.protocol。比如,类someclass的元类型就是someclass.type,协议someprotocol的元类型就是someprotocal.protocol","type在声明时候所定义(declar","type是int","type的名字(当然了,如果我都知道它的名字了还需要动态来获取它吗)。动态类型表达式会返回"运行时"某个instance的typ","type)。,即使是这个方法本是没有定义返回值,你也可以使用if语句来检查是否能成功调用printnumberofrooms方法:如果方法通过可选链调用成功,printnumberofrooms的隐式返回值将会是void,如果没有成功,将返回nil","t分别代表tnt和string","t则是跟这些type的公共supertype最接近的type.(closest","t和u遵守generator协议,同时要求它们的关联类型等同,可以这样来表达:<t","t定义了一个名为“某种类型t”的节点提供给后来用。这种将来类型可以在结构体的定义里任何地方表示为“t”。在这种情况下,t","t就是数组中元素的type","t来表示)来代替实际类型名(如int、string或double)。节点类型名并不是表示t必须是任何类型,但是其规定a和b必须是同一类型的t,而不管t表示任何类型。只有swaptwovalues函数在每次调用时所传入的实际类型决定了t","t被用作append方法的item参数和下标的返回类型。swift因此可以推断出被用作这个特定容器的itemtype的t","t,u,v,keytype,valuetyp","t,是@noreturn","t,有一个需要t必须是someclass子类的类型约束;第二个类型参数u,有一个需要u必须遵循someprotocol","u","u+000a","u+000d","u+0024","u+00a8","u+00aa","u+00ad","u+00af","u+00b2–u+00b5","u+00b7–u+00ba","u+00bc–u+00b","u+00c0–u+00d6","u+00d8–u+00f6","u+00f8–u+00ff","u+0100–u+02ff","u+0300–u+036f","u+0370–u+167f","u+10000–u+1fffd","u+1681–u+180d","u+180f–u+1dbf","u+1dc0–u+1dff","u+1e00–u+1fff","u+1f436","u+1f496","u+20000–u+2fffd","u+200b–u+200d","u+202a–u+202","u+203f–u+2040","u+2054","u+2060–u+206f","u+2070–u+20cf","u+20d0–u+20ff","u+2100–u+218f","u+2460–u+24ff","u+2665","u+2776–u+2793","u+2c00–u+2dff","u+2e80–u+2fff","u+30000–u+3fffd","u+3004–u+3007","u+3021–u+302f","u+3031–u+303f","u+3040–u+d7ff","u+40000–u+4fffd","u+50000–u+5fffd","u+60000–u+6fffd","u+70000–u+7fffd","u+80000–u+8fffd","u+90000–u+9fffd","u+a0000–u+afffd","u+b0000–u+bfffd","u+c0000–u+cfffd","u+d0000–u+dfffd","u+d83d","u+e0000–u+efffd","u+f900–u+fd3d","u+fd40–u+fdcf","u+fdf0–u+fe1f","u+fe20–u+fe2f","u+fe30–u+fe44","u+fe47–u+fffd","u.element>","u.generatortype.el","u0001f496","u2665","uinavigationcontrol","uint","uint16","uint16(on","uint16有一个构造器,可以接受一个uint8类型的值,所以这个构造器可以用现有的uint8来创建一个新的uint16。注意,你并不能传入任意类型的值,只能传入uint16","uint16,可以进行相加。目标常量twothousandandone的类型被推测为uint16,因为它是两个uint16","uint32","uint8","uint8.max","uint8.min","uint,除非你真的需要存储一个和当前平台原生字长相同的无符号整数。除了这种情况,最好使用int,即使你要存储的值已知是非负的。统一使用int","uitableviewdeleg","unabl","unari","uncertainti","uncom","undefinedundefin","underflow","underli","unicod","unicodescalar","unicodescalarview","unicodescalar拥有一个值属性,可以返回对应的21位数值,用uint32","unicodescalar是21","union-style-enum","union-style-enum-cas","union-style-enum-case-claus","union-style-enum-case-list","union-style-enum-memb","unions)和变体(vari","unions),或者变体(vari","unions),标签联合(tag","unlik","unlock","unlocklevel(level","unnnnnnnn,其中nnnnnnnn","unnnn,其中nnnn","uno","unown","unowned(saf","unowned(unsaf","unsign","unusu","unusualmenageri","unwrap","unwrappedc","unwrappedc.property.performact","up","upc-a","upca(int","upca(let","upca(numbersystem","updatevalue(forkey:)函数会返回包含一个字典值类型的可选值。举例来说:对于存储string值的字典,这个函数会返回一个str","updatevalue(forkey:)方法可以设置或者更新特定键对应的值。就像上面所示的示例,updatevalue(forkei","upper","uppercamelcas","uppercas","uppercasestring和lowercasestr","upward","uranu","us","uss","utf-16","utf-16(以16","utf-8","utf-8(以8","utf16","utf16count","utf16view","utf16属性来访问它的utf-16","utf8","utf8view","utf8属性来访问它的utf-8","v","valid","valu","value),当其不可访问时,?之后语句不会执行,并返回nil","value-bind","value-binding-pattern","values(first","values)函数参数名(funct","values)原始值(raw","values)可变参数(variad","values)多重输入参数(multipl","values)多重返回值函数(funct","values)默认值参数的外部参数名(extern","valuetofind","valuetofind”。不是所有的swift中的类型都可以用等式符(==)进行比较。例如,如果你创建一个你自己的类或结构体来表示一个复杂的数据模型,那么swift没法猜到对于这个类或结构体而言“等于”的意思。正因如此,这部分代码不能可能保证工作于每个可能的类型t","valuetyp","valuetype>定义,其中keytype是字典中键的数据类型,valuetyp","value的typ","value)元组。下面的例子中,字典的键(kei","value)都关联独特的键(kei","value),因为这些量是不能被修改的。当传入的参数作为输入输出参数时,需要在参数前加&","var","variabl","variable-declar","variable-declaration-head","variable-nam","variablestr","variad","var关键字定义计算属性,包括只读计算属性,因为他们的值不是固定的。let","var定义),也可以是常量存储属性(用关键字let","var或者let","vector","vector.i","vector.x","vector2d","vector2d(1.0","vector2d(x","vectortoadd","veget","vegetablecom","vehicl","vehicle的一个新的子类,叫car,它重写了从vehicle类继承来的'description'","vehicle的基类。这个基类声明了两个对所有车辆都通用的属性(numberofwheels和maxpassengers)。这些属性在description方法中使用,这个方法返回一个str","vehicle类中maxpassengers的默认值对自行车来说已经是正确的,因此在bicycle的初始化器中并没有改变它。而numberofwheels原来的值对自行车来说是不正确的,因此在初始化器中将它更改为2","vehicle类定义了初始化器(initi","vehicle类的初始化器为任意的一辆车设置一些初始化属性值(numberofwheel","vendcoins(var","vendcoins方法在bank分发硬币之前检查是否有足够的硬币。如果没有足够多的硬币,bank返回一个比请求时小的数字(如果没有硬币留在bank中就返回0)。vendcoins方法声明numberofcoinstovend为一个变量参数,这样就可以在方法体的内部修改数字,而不需要定义一个新的变量。vendcoin","venu","veri","verona","versa","version","vice","view","void","void。在swift中,void","void是空元组类型()的别名。如果括号内只有一个元素,那么该类型就是括号内元素的类型。比如,(int)的类型是int而不是(int","void(参见funct","void?,而不是void,因为当通过可选链调用方法时返回值总是自判断类型(opt","volum","vowel","vowel代替character.kind.vowel","vumet","w","wai","want","warm","watch","water","watercress","we'r","weak","weak或者unowned关键字和实例的引用(如self或someinst","wear","web","welcom","welcomemessag","welcomemessage变量添加了类型标注,表示这个变量可以存储str","well","west","wheel","whenev","wherea","where­requirement-list","where语句。where语句由关键字wher","where语句中的要求用于指明该类型形参继承自某个类或遵守某个协议或协议的一部分。尽管where语句有助于表达类型形参上的简单约束(如t","where语句作为一个类型参数队列的一部分。一个where语句使你能够要求一个关联类型遵循一个特定的协议,以及(或)那个特定的类型参数和关联类型可以是相同的。你可写一个where语句,通过紧随放置wher","where语句的一部分,写在关键字wher","where,只在冒号后面写接口或者类名。<t","whether","while-condit","while-stat","whiledo-while条件语句ifswitch不存在隐式的贯穿(fallthrough","while循环体中调用break和continu","while循环体和switch方法块来实现游戏的逻辑。while循环体有一个标签名gameloop","while循环体的条件判断语句是whil","while循环体的语法,同样的规则适用于所有的循环体和switch","whisper","white","whitespac","whose","width","width=\"169","width=\"243","width=\"252","width=\"288","width=\"289","width=\"388","widthlabel","wildcard","wildcard-express","wildcard-pattern","wildcard-patterntype-annotationopt","willoverflow","willset","willset(newtotalstep","willset-claus","willset-didset-block","willset和didset","willset和didset的实际例子,其中定义了一个名为stepcount","willset或didset实现是不恰当。此外还要注意,你不可以同时提供重写的setter和重写的属性观察器。如果你想观察属性值的变化,并且你已经为那个属性提供了定制的setter,那么你在sett","willset监视器会将新的属性值作为固定参数传入,在willset的实现代码中可以为这个参数指定一个名称,如果不指定则参数仍然可用,这时使用默认名称newvalu","willset监视器将表示新值的参数自定义为newtotalstep","willunderflow","win","wincoins(coin","wiseword","wishhappybirthday(birthdayperson","wishhappybirthday(celebr","wishhappybirthday函数的形参celebrator的类型为protocol<named,aged>","within","withjoin","without","won","word","work","world","world"","world(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","setter","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","uncom","undefinedundefin","var","veget","vegetablecom","veri","water","watercress","where,只在冒号后面写接口或者类名。<t","width","widthlabel","willset","willset和didset","world","x","x.hassuffix(\"pepp","xcode","y"],"chapter1/chapter1.html#gitbook_9":["swift","undefinedundefin"],"chapter2/13_Inheritance.html#gitbook_10":["0","0.0","0和maxpasseng","1","10.0","2","35.0","4","40.0","5","60.0","automat","automatic.descript","automatic.spe","automaticcar","automaticcar的speed属性,属性的didset观察器就会自动地设置gear属性,为新的速度选择一个合适的挡位。具体来说就是,属性观察器将新的速度值除以10,然后向下取得最接近的整数值,最后加1来得到档位gear的值。例如,速度为10.0时,挡位为1;速度为35.0时,挡位为4","automaticcar,它是car的子类。automaticcar表示自动挡汽车,它可以根据当前的速度自动选择合适的挡位。automaticcar也提供了定制的descript","bicycl","bicycle.descript","bicycle。这个新类是在vehicle类的基础上创建起来。因此你需要将vehicle类放在bicycl","bicycle不仅可以继承vehicle的属性,还可以继承它的方法。如果你创建了一个bicycle类的实例,你就可以调用它继承来的descript","bicycle是vehicle的子类,vehicle是bicycle的超类。新的bicycle类自动获得vehicle类的特性,比如maxpassengers和numberofwheels属性。你可以在子类中定制这些特性,或添加新的特性来更好地描述bicycl","bicycle的一个子类:双人自行车(tandem)。tandem从bicycle继承了两个属性,而这两个属性是bicycle从vehicle继承而来的。tandem并不修改轮子的数量,因为它仍是一辆自行车,有2个轮子。但它需要修改maxpasseng","bicycle类定义了一个初始化器来设置它定制的特性(自行车只有2个轮子)。bicycle的初始化器调用了它父类vehicle的初始化器super.init(),以此确保在bicycle类试图修改那些继承来的属性前,vehicl","bicycle,它继承了vehicl","car","car.descript","car中的description方法并非完全自定义,而是通过super.description使用了超类vehicle中的descript","car声明了一个新的存储型属性speed,它是double类型的,默认值是0.0,表示“时速是0英里”。'car'有自己的初始化器,它将乘客的最大数量设为5,轮子数量设为4","car的新实例,并打印descript","car重写了继承来的description方法,它的声明与vehicle中的description方法一致,声明前面加上了overrid","class","class前添加@final特性(@fin","class)来将整个类标记为fin","definit","descript","didset","doubl","final","final方法,属性或下标,在编译时会报错。在扩展中,你添加到类里的方法,属性或下标也可以在扩展的定义里标记为fin","final来防止它们被重写,只需要在声明关键字前加上@final特性即可。(例如:@fin","func","gear","getters和sett","getter和sett","getter(或sett","goe","here","init","initi","instanc","int","int(spe","limitedcar","limitedcar.descript","limitedcar.spe","maxpasseng","method),实例属性(inst","method),类方法(class","min(newvalu","mph","numberofwheel","objective-c,在swift","observ","observer),这样一来,当属性值改变时,类就会被通知到。可以为任何属性添加属性观察器,无论它原本被定义为存储型属性(stor","overrid","override关键字。这么做,你就表明了你是想提供一个重写版本,而非错误地提供了一个相同的定义。意外的重写行为可能会导致不可预知的错误,任何缺少overrid","override关键字会提醒swift","passeng","perform","println(\"automaticcar","println(\"bicycl","println(\"car","println(\"speedlimitedcar","println(\"tandem","properti","property)还是计算型属性(comput","property),或下标(subscript)提供自己定制的实现(implementation)。我们把这种行为叫重写(overrid","return","set","setter,那么你也一定要提供getter。如果你不想在重写版本中的getter里修改继承来的属性值,你可以直接返回super.someproperty来返回继承来的值。正如下面的speedlimitedcar","someclass","somemethod的重写实现中,可以通过super.somemethod()来调用超类版本的somemethod","someproperty的getter或setter的重写实现中,可以通过super.someproperty来访问超类版本的someproperti","somesuperclass","somevehicl","speed","speedlimitedcar","speedlimitedcar实例的speed属性时,属性setter的实现会去检查新值与限制值40mph的大小,它会将超类的speed设置为newvalue和40.0中较小的那个。这两个值哪个较小由min函数决定,它是swift标准库中的一个全局函数。min","speedlimitedcar实例的speed属性设置为一个大于40mph的数,然后打印description函数的输出,你会发现速度被限制在40mph","speedlimitedcar,它是car的子类。类speedlimitedcar表示安装了限速装置的车,它的最高速度只能达到40mph。你可以通过重写继承来的spe","string","subclass","subclassing(子类化?待定)重写(overriding)访问超类的方法,属性及下标重写方法重写属性重写属性的getters和setters重写属性观察器(properti","subscript","super","super.descript","super.init","super.spe","super[someindex","swift","swift中,类可以调用和访问超类的方法,属性和下标,并且可以重写(override)这些方法,属性和下标来优化或修改它们的行为。swift","tandem","tandem.descript","tandem类也继承了descript","travel","undefinedundefin","up","var","vehicl","vehicle的一个新的子类,叫car,它重写了从vehicle类继承来的'description'","vehicle的基类。这个基类声明了两个对所有车辆都通用的属性(numberofwheels和maxpassengers)。这些属性在description方法中使用,这个方法返回一个str","vehicle类中maxpassengers的默认值对自行车来说已经是正确的,因此在bicycle的初始化器中并没有改变它。而numberofwheels原来的值对自行车来说是不正确的,因此在初始化器中将它更改为2","vehicle类定义了初始化器(initi","vehicle类的初始化器为任意的一辆车设置一些初始化属性值(numberofwheel","wheel","willset或didset实现是不恰当。此外还要注意,你不可以同时提供重写的setter和重写的属性观察器。如果你想观察属性值的变化,并且你已经为那个属性提供了定制的setter,那么你在sett"],"chapter2/01_The_Basics.html#gitbook_12":["0","0.0","0.0125","0.14159","000123.456","0b","0b10001","0o","0o21","0x","0x11","0xc.3p0","0xfp-2","0xfp2","0x)。小数点两边必须有至少一个十进制数字(或者是十六进制的数字)。浮点原始值还有一个可选的指数,在十进制浮点数中通过大写或者小写的e来指定,在十六进制浮点数中通过大写或者小写的p","0为fals","0为true的时候代码运行才会继续,也就是说,当age的值非负的时候。如果age的值是负数,就像代码中那样,ag","1","1.21875e1","1.25","1.25e-2","1.25e2","10","10^-2","10^2","12.1875","123","125.0","15","17","1_000_000","1_000_000.000_000_1","1的比较结果是bool类型,所以第二个例子可以通过类型检查。类似i","200","255","2^-2","2^2","2_000","3","3.14159","3.14159,0.1和-273.15","3.75","32位平台上,int和int32","32位平台上,uint和uint32","3可以直接和原始值0.14159","3没有显式声明类型,而表达式中出现了一个浮点原始值,所以表达式会被推测为doubl","4.75会变成4,-3.9会变成-3","404","42","42和-23","42和3.14159","42并且没有标明类型,swift","60.0","64位平台上,int和int64","64位平台上,uint和uint64","8、16、32和64","8位无符号整数类型是uint8,32位有符号整数类型是int32","_","actualnumb","actualnumber常量可以在if语句的第一个分支中使用。它已经被可选包含的值初始化过,所以不需要再使用!后缀来获取它的值。在这个例子中,actualnumb","ag","anotherpi","array和dictionari","assert(ag","assert函数来写一个断言。给assert函数传入一个结果为true或者false的表达式以及一条信息,当表达式为fals","assumedstr","audiosampl","audiosample.min","audiosample被定义为uint16的一个别名。因为它是别名,audiosample.min实际上是uint16.min,所以会给maxamplitudefound赋一个初值0","binaryinteg","bonjour","bool","bool。布尔值是指逻辑,因为它们只能是真或者假。swift","bool类型的地方使用了非布尔值,swift","c","cannotbeneg","cat","chang","cocoa里的nslog函数一样,println","code","comment","compile-tim","constantnam","convert","convertednumb","current","currentloginattempt","decimaldoubl","decimalinteg","definitestr","descript","dogcow","doubl","double(thre","double或者float","double精确度很高,至少有15位数字,而float最少只有6","double而不是float","double表示64","end","error","eww","exponentdoubl","exp,那这个数相当于基数和10^exp","exp,那这个数相当于基数和2^exp","fals","first","float表示32","found","found"","found")元组把一个int值和一个str","friendlywelcom","friendlywelcome的值从"hello!"改为了"bonjour!"","gt","hello","hexadecimaldoubl","hexadecimalinteg","horribl","http","http200statu","http200status.descript","http200status.statuscod","http404error","http404error.0","http404error.1","if和while语句中来对可选的值进行判断并把值赋给一个常量或者变量。if和whil","if语句来判断一个可选是否包含值。如果可选有值,结果是true;如果没有值,结果是fals","if语句的第一个分支中操作actualnumber的值,你可以改成if","implicitli","int","int(pi","int)或者(str","int8","int8.max","int8类型的常量或者变量可以存储的数字范围是-128~127,uint8类型的常量或者变量能存储的数字范围是0~255","integ","integerpi","interpolation)的方式把常量名或者变量名当做占位符加入到长字符串中,swift会用当前常量或变量的值替换这些占位符。将常量或变量名放入反斜杠符加一对圆括号中"\\()"","intuint浮点数类型安全和类型推测数值类原始值数值类型转换整数转换整数和浮点数转换类型别名布尔值元组可选if","int就够了。这可以提高代码一致性和可复用性。即使是在32位平台上,int可以存储的整数范围也可以达到-2147483648~2147483647","int是整型;double和float是浮点型;bool是布尔型;string是字符串。swift","int类型更大或者更小的数字。swift","io","justoveronemillion","justthestatuscod","languagenam","less","let来声明常量,用var","line","maxamplitudefound","maximumnumberofloginattempt","maximumnumberofloginattempts或者welcomemessage)和一个指定类型的值(比如数字10或者字符串hello","maximumnumberofloginattempts的新常量,并给它一个值10。然后,声明一个名字是currentloginattempt的变量并将它的值初始化为0","maxvalu","meaningoflif","messag","minvalu","min和max","multilin","multipl","nest","nil","nil不是指针——它是一个确定的值,用来表示值缺失。任何类型的可选都可以被设置为nil","nil的话请不要使用隐式解析可选。如果你需要在变量的生命周期中判断是否是nil","nil,nil","nil,但是后面的代码运行需要一个非nil","now","nsnotfound)来暗示值缺失。这种方法假设方法的调用者知道并记得对特殊值进行判断。然而,swift","objc","objective-c","octalinteg","ok","on","onemillion","option","orangesareorang","orangesareorange和turnipsaredelicious的类型会被推测为bool,因为它们的初值是布尔原始值。就像之前提到的int和double一样,如果你创建变量的时候给它们赋值true或者false,那你不需要给常量或者变量标明bool","os","over","paddeddoubl","person'","pi","pointonefouronefivenin","possiblenumb","possiblenumber.toint","possiblenumber.toint返回的可选int包含一个值,创建一个叫做actualnumb","possiblestr","print","println","println(\"\\(possiblenumb","println(\"eww","println(\"mmm","println(\"th","println(\"thi","println(assumedstr","println(cat","println(definitestr","println(friendlywelcom","println(possiblestr","println函数输出传入的str","println是一个用来输出的全局函数,输出的内容会在最后带换行。如果你用xcode,println将会输出内容到“console”面板上。(另一种函数叫print","properti","quot;an","quot;not","refer","second","serverresponsecod","someopt","sometype(ofinitialvalu","start","statement","statu","statuscod","statusmessag","string","string."","string”的意思是“可以存储任意str","string和隐式解析可选str","string类型有一个叫做toint的方法,作用是将一个string值转换成一个int值。然而,并不是所有的字符串都可以转换成一个整数。字符串"123"可以被转换成数字123,但是字符串"hello","string,你绝对不可能不小心传进去一个int","string,名字为welcomemessag","string,类型安全会阻止你不小心传入一个int","subscript","surveyansw","swift","swift可以推断出这个常量或者变量的类型,详情参见类型安全和类型推断(待添加链接)。在上面的例子中,没有给welcomemessag","swift用字符串插值(str","tasti","three","three的值被用来创建一个doubl","toint方法可能会失败,所以它返回一个可选的int,而不是一个int。一个可选的int被写作int?而不是int。问号暗示包含的值是可选,也就是说可能包含int值也可能不包含值。(不能包含其他任何值比如bool值或者string值。只能是int","toint方法来尝试将一个string转换成int","toobig","true","true。从字面意思来说,断言“断言”一个条件是否为真。你可以使用断言来保证在运行其他代码之前,某些重要的条件已经被满足。如果条件判断为true,代码运行会继续进行;如果条件判断为fals","true和fals","tupl","turnip","turnipsaredelici","twothousand","twothousandandon","twothousand类型是uint16,然而常量one类型是uint8。它们不能直接相加,因为它们类型不同。所以要调用uint16(one)来创建一个新的uint16数字并用on","typealia","uint","uint16","uint16(on","uint16有一个构造器,可以接受一个uint8类型的值,所以这个构造器可以用现有的uint8来创建一个新的uint16。注意,你并不能传入任意类型的值,只能传入uint16","uint16,可以进行相加。目标常量twothousandandone的类型被推测为uint16,因为它是两个uint16","uint8","uint8.max","uint8.min","uint,除非你真的需要存储一个和当前平台原生字长相同的无符号整数。除了这种情况,最好使用int,即使你要存储的值已知是非负的。统一使用int","undefinedundefin","unicod","unown","unwrap","valu","var","web","welcomemessag","welcomemessage变量添加了类型标注,表示这个变量可以存储str","world"","written","x","xcode","y","z","zero"],"chapter2/03_Strings_and_Characters.html#gitbook_14":["0","0(空字符)、\\\\(反斜线)、\\t(水平制表符)、\\n(换行符)、\\r(回车符)、\\"(双引号)、\\'","1","10","103","111","128054","128054,是一个十六进制1f436","144","159","16","182","2","2.5","21","21位数字(和名称),例如u+0061表示小写的拉丁字母a","240","3","33","4","40","5","55357","55357),第二个值为u+dc36","56374","6","68","7.5","8","act","act1scenecount","anoth","anotheremptystr","api","ascii","blackheart","boolean","c","capulet'","carriag","cell","charact","character1","character2","characterpluscharact","characterplusstr","characters(章节信息url","cocoa","codeunit","compar","compile-tim","concaten","constantstr","count","countel","countelements(unusualmenageri","countelements返回的字符数量并不总是与包含相同字符的nsstring的length","d","d``o``g``!和🐶(dog","dog","dogstr","dogstring.unicodescalar","dogstring.utf16","dogstring.utf8","dollarsign","dollarsign、blackheart和sparklingheart","double(multipli","dromedari","empti","emptystr","emptystring.isempti","enumer","equal","error","face字符的utf-16","face的4","face的unicod","face,unicod","for-in","foundat","friar","g","good","great","hall","hasprefix","hasprefix/hassuffix","hello","help","highland","hors","initi","instruct","interpol","isempti","koala","lawrence'","liter","look","loops(章节信息url","lowercas","mansion","messag","morn","multipli","multiplier作为\\(multipli","mutabl","name=\"comparing_strings\">提示41","td>1*2","td>3","td>4","td>5","td>6","td>7","td>8","td>9","three","tr","true","undefinedundefin","var","welcom","win","world","x","y"],"chapter2/15_Deinitialization.html#gitbook_50":["1","10","100","10000","10_000","11","12","2","2000","2100","3","4","5","6","7","7900","8","9","9900","bank","bank.coinsinbank","bank.receivecoins(coinsinpurs","bank.vendcoins(coin","bank和player。bank结构体管理一个虚拟货币的流通,在这个流通中bank永远不可能拥有超过10,000的硬币。在这个游戏中有且只能有一个bank存在,因此bank","bank根据它的coinsinbank属性来跟踪当前它拥有的硬币数量。银行还提供两个方法—vendcoins和receivecoin","class","coin","coinsinbank","coinsinpurs","deinit","deinit来标示析构函数,类似于初始化函数用init","func","game","init(coin","int","join","left","min(numberofcoinstovend","new","nil","now","numberofcoinstovend","player","player(coin","playeron","playerone!.coinsinpurs","playerone!.wincoins(2_000","playerone是可选的,所以由一个感叹号(!)来修饰,每当其wincoins方法被调用时,coinsinpurs","player实例都由一个指定数目硬币组成的启动额度初始化,这些硬币在bank初始化的过程中得到。如果没有足够的硬币可用,play","player实例随着一个100个硬币(如果有)的请求而被创建。这个player实例存储在一个名为playerone的可选player变量中。这里使用一个可选变量,是因为players可以随时离开游戏。设置为可选使得你可以跟踪当前是否有play","player已经赢得了2,000硬币。player的钱包现在有2,100硬币,bank只剩余7,900","player现在已经离开了游戏。这表明是要将可选的playerone变量设置为nil,意思是"没有player实例"。当这种情况发生的时候,playerone变量对player实例的引用被破坏了。没有其它属性或者变量引用player实例,因此为了清空它占用的内存从而释放它。在这发生前一步,其析构函数被自动调用,其硬币被返回到bank","player类定义了一个wincoins方法,该方法从bank获取一定数量的硬币,并把它们添加到player的钱包。player类还实现了一个析构函数,这个析构函数在player实例释放前一步被调用。这里析构函数只是将player的所有硬币都返回给bank","player类描述了游戏中的一个玩家。每一个player在任何时刻都有一定数量的硬币存储在他们的钱包中。这通过player的coinsinpurs","println(\"a","println(\"playeron","println(\"th","println(\"ther","receivecoins(coin","receivecoins方法只是将bank的硬币存储和接收到的硬币数目相加,再保存回bank","return","static","struct","swift会自动释放不再需要的实例以释放资源。如自动引用计数那一章描述,swift通过自动引用计数(arc","undefinedundefin","var","vendcoins(var","vendcoins方法在bank分发硬币之前检查是否有足够的硬币。如果没有足够多的硬币,bank返回一个比请求时小的数字(如果没有硬币留在bank中就返回0)。vendcoins方法声明numberofcoinstovend为一个变量参数,这样就可以在方法体的内部修改数字,而不需要定义一个新的变量。vendcoin","wincoins(coin","won"],"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":["0","1234567890123456","1234_5678_9012_3456","73","apart","apartment(numb","apartment实例有一个叫number,类型为int的属性,并有一个可选的初始化为nil的tenant属性。ten","apartment实例的强引用来自于变量number73。如果你断开这个强引用,再也没有指向apart","applese","arc","arc为了能帮助你管理内存,需要更多的关于你的代码之间关系的信息。本章描述了这些情况,并且为你示范怎样启用arc","arc会分配一大块内存用来储存实例的信息。内存中会包含实例的类型信息,以及这个实例所有相关属性的值。此外,当实例不再被使用时,arc","arc会在引用的实例被销毁后自动将其赋值为nil","arc会在第三个,也即最后一个强引用被断开的时候,销毁person实例,这也意味着你不再使用这个person","arc会跟踪你所新创建的person实例的引用数量,并且会在person","arc会跟踪和计算每一个实例正在被多少属性,常量和变量所引用。哪怕实例的引用数为一,arc","arc无法在实例被销毁后将无主引用设为nil,因为非可选类型的变量不允许被赋值为nil","arc销毁被引用的实例。这种行为阻止了引用变为循环强引用。声明属性或者变量时,在前面加上weak","ashtml","ashtml声明为lazy属性,因为只有当元素确实需要处理为html输出的字符串时,才需要使用ashtml。也就是说,在默认的闭包中可以使用self,因为只有当初始化完成以及self确实存在后,才能访问lazi","ashtml属性。然而,由于ashtml是闭包而不是实例方法,如果你想改变特定元素的html","ashtml属性持有闭包的强引用。但是,闭包在其闭包体内使用了self(引用了self.name和self.text),因此闭包占有了self,这意味着闭包又反过来持有了htmlelement实例的强引用。这样两个对象就产生了循环强引用。(更多关于闭包占有值的信息,请参考captur","ashtml属性,这个闭包返回一个代表html标签的字符串。如果text值存在,该标签就包含可选值text;如果text不存在,该标签就不包含文本。对于段落元素,根据text是"som","be","bodi","call","canada","canada'","capit","capitalc","capitalcity默认值为nil,一旦country的实例在构造函数中给name属性赋值后,整个初始化过程就完成了。这代表一旦name属性被后,country的构造函数就能引用并传递显式的self。country的构造函数在赋值capitalcity时,就能将self作为参数传递给c","capitalnam","captur","card","citi","city!)的方式,将country的capitalcity属性声明为显示展开的可选类型属性。这表示像其他可选类型一样,capitalcity属性的默认值为nil","city(nam","city的构造函数有一个country实例的参数,并且将实例保存为countri","class","closur","countri","country(nam","country.capitalcity.nam","country和city的实例,而不产生循环强引用,并且capitalc","country和city,每个类将另外一个类的实例保存为属性。在这个模型中,每个国家必须有首都,而每一个城市必须属于一个国家。为了实现这种关系,country类拥有一个capitalcity属性,而city类有一个countri","country的构造函数调用了city的构造函数。然而,只有country的实例完全初始化完后,country的构造函数才能把self传给c","creditcard","creditcard(numb","custom","customer(nam","customer和creditcard","customer和creditcard之间的关系与前面弱引用例子中apartment和person的关系截然不同。在这个数据模型中,一个客户可能有或者没有信用卡,但是一张信用卡总是关联着一个客户。为了表示这种关系,customer类有一个可选类型的card属性,但是creditcard类有一个非可选类型的custom","customer和creditcard的例子展示了一个属性的值允许为nil,而另一个属性的值不允许为nil","customer实例持有对creditcard实例的强引用,而creditcard实例持有对custom","customer实例的强引用,该实例被销毁了。其后,再也没有指向creditcard","customer的无主引用,当你断开john变量持有的强引用时,再也没有指向custom","customer类的实例,用它初始化creditcard实例,并将新创建的creditcard实例赋值为客户的card","deinit","deiniti","goe","gt","gt;"","hello","here","htmlelement","htmlelement(nam","htmlelementdeinitializer中的消息并没有别打印,证明了htmlel","htmlelement例子中,无主引用是正确的解决循环强引用的方法。这样这样编写htmlel","htmlelement实现和之前的实现一致,只是在ashtml闭包中多了一个占有列表。这里,占有列表是[unown","htmlelement类产生了类实例和ashtml","htmlelement类只提供一个构造函数,通过name和text(如果有的话)参数来初始化一个元素。该类也定义了一个析构函数,当htmlel","htmlelement类定义了一个name属性来表示这个元素的名称,例如代表段落的"p",或者代表换行的"br"。htmlelement还定义了一个可选属性text,用来设置和展现html","htmlelement还定义了一个lazy属性ashtml。这个属性引用了一个闭包,将name和text组合成html","index","init(nam","init(numb","initi","int","john","john!.apart","john!.card","john变量被设为nil后customer实例和creditcard","john和number73","john和number73,并分别被设定为下面的apartment和person的实例。这两个变量都被初始化为nil","john和number73在被赋值为nil后,person实例和apart","john和number73赋值为nil","john现在有一个指向person实例的强引用,而变量number73有一个指向apart","john的可选类型customer变量,用来保存某个特定客户的引用。由于是可选类型,所以变量被初始化为nil","lazi","list","name","nil","nil时,将闭包内的占有定义为弱引用。弱引用总是可选类型,并且当引用的实例被销毁后,弱引用的值会自动置为nil","nil时,没有任何一个析构函数被调用。强引用循环阻止了person和apart","nil的实例使用弱引用。相反的,对于初始化赋值后再也不会被赋值为nil","nil的方式断开两个强引用(包括最先的那个强引用),只留下一个强引用,person","non-opt","number","number73","number73!.ten","number值和customer实例传递给creditcard构造函数的方式来创建creditcard实例。这样可以确保当创建creditcard实例时总是有一个custom","ottawa","p","p>hello","paragraph","paragraph变量为nil,打破它持有的htmlelement实例的强引用,htmlel","paragraph变量定义为可选htmlelement,因此我们可以赋值nil","person","person(nam","person?的变量,用来按照代码片段中的顺序,为新的person实例建立多个引用。由于这些变量是被定义为可选类型(person?,而不是person),它们的值会被自动初始化为nil,目前还不会引用到person","person和apart","person和apartment实例并将类实例赋值给john和number73","person和apartment的例子一致,但是有一个重要的区别。这一次,apartment的ten","person和apartment的例子展示了两个属性的值都允许为nil","person实例依然保持对apartment实例的强引用,但是apartment实例只是对person实例的弱引用。这意味着当你断开john变量所保持的强引用时,再也没有指向person","person实例有一个类型为string,名字为name的属性,并有一个可选的初始化为nil的apartment属性。apart","person实例现在有了一个指向apartment实例的强引用,而apartment实例也有了一个指向person实例的强引用。因此,当你断开john和number73变量所持有的强引用时,引用计数并不会降为0,实例也不会被arc","person类开始,并定义了一个叫nam","person类有一个构造函数,此构造函数为实例的name属性赋值并打印出信息,以表明初始化过程生效。person","person类的新实例被赋值给了reference1变量,所以reference1到person类的新实例之间建立了一个强引用。正是因为这个强引用,arc会保证person","person类的构造函数的时候,"john","print","println(\"\\(country.name)'","println(\"\\(nam","println(\"apart","println(\"card","println(paragraph!.ashtml","prints\"hello","quot","refer","reference)和无主引用(unown","reference1","reference2","reference3","return","self","self.capitalc","self.countri","self.custom","self.nam","self.name)>\\(text)check","class类型。它创建了一个可以存储ani","cocoa","code","come","common","compound","confid","conform","conformance(arrai","equatable类型都可以安全的使用在findindex函数中,因为其保证支持等式操作。为了说明这个事实,当你定义一个函数时,你可以写一个equat","equatable,也就意味着“任何t类型都遵循equat","equival","error","exampl","exist","extens","extension][6","extension][7","fals","findindex([\"mik","findindex([3.14159","findindex(arrai","findindex中这个单个类型参数写做:t","findindex函数现在则可以成功的编译过,并且作用于任何遵循equatable的类型,如double或str","findindex,用某个类型t","findstringindex","findstringindex(arrai","findstringindex(str","findstringindex的泛型版本findindex。请注意这个函数仍然返回int","findstringindex的非泛型函数,该函数功能是去查找包含一给定string值的数组。若查找到匹配的字符串,findstringindex函数返回该字符串在数组中的索引值(int),反之则返回nil","first","for-in循环和半闭区间操作(..)来迭代somecontainer中的所有items。对于每个item,函数检查是否somecontainer中的item不等于对应的anothercontainer中的item,如果这两个items不等,则这两个容器不匹配,返回fals","for—that","foundindex","fromthetop","func","function","gener","give","goe","guide,即便你没有实现它。例如:swift的array和dictionary类型都是泛型集。你可以创建一个int数组,也可创建一个string数组,或者甚至于可以是任何其他swift的类型数据数组。同样的,你也可以创建存储任何指定类型的字典(dictionari","hashtabl","hello","here","here’","hierarchi","implement","import","in-out参数交换a和b的值,这两个参数被描述为[in-out类型参数][1","index","indic","inform","inout","inspir","int","intstack","intstack指定了container的实现,适用的itemtype被用作int类型。对于这个contain","intstack类型只能用于int值,不过,其对于定义一个泛型stack","intstack类型实现了container协议的所有三个要求,在intstack","intstack类型的非泛型版本,适用于遵循contain","int索引值下标可以检索到每一个item","int这一行,一切仍旧可以工作,因为它清楚的知道itemtyp","int,将抽象的itemtype类型转换为具体的int","item","items.append(item","items.count","items.removelast","items[i","items。这个需求通过一个类型约束和wher","items的属性,使用空的t","itemtyp","itemtype。th","item是如何存储的或何种类型是允许的。这个协议只指定三个任何遵循contain","item的push方法,该参数必须是t","keytyp","languag","last","left","librari","llama","look","made","malcolm","manag","match","method","model","mutat","name","navig","need","nil","note","now","number","option","origin","out","pair","parakeet","paramet","parameters类型参数命名类型参数泛型类型类型约束类型约束语法类型约束行为关联类型关联类型行为扩展一个存在的类型为一指定关联类型wher","part","placehold","pop","popviewcontrolleranim","pop并移除值"cuatro"","pop方法的返回值,该返回值将是一个t","possibl","print","println(\"al","println(\"not","println(\"someint","println(\"th","protocol","provid","provide(这个协议不会定义itemtype是遵循类型所提供的何种信息的别名)。尽管如此,itemtype别名支持一种方法识别在一个容器里的items类型,以及定义一种使用在append方法和下标中的类型,以便保证任何期望的contain","push","push(item","push)/出栈(pop","pushviewcontroller:anim","remov","report","return","same","see","self.push(item","someclass","somecontain","somecontainer.count","somecontainer[i","somecontainer中item","somecontainer中的item","somecontainer和anothercontainer。somecontainer参数是类型c1,anothercontainer参数是类型c2。c1和c2","somecontainer和anothercontainer包含相同的item","somecontainer是一个c1","somefunction(somet","somestr","someu","stack","stack(栈)。一个栈是一系列值域的集合,和array(数组)相似,但其是一个比swift的array类型更多限制的集合。一个数组可以允许其里面任何位置的插入/删除操作,而栈,只允许,只允许在集合的末端添加新的项(如同push一个新值进栈)。同样的一个栈也只能从末端移除项(如同pop","stack(inout","swaptwovalues例子中,节点类型t是一种类型参数的示例。类型参数指定并命名为一个节点类型,并且紧随在函数名后面,并用一对尖括号括起来(如)。这个尖括号告诉swift那个t是swaptwovalues函数所定义的一个节点类型。因为t是一个节点,swift不会去查找每一个命名为t","temporarya","terrapin","three","tre","true","type","type-saf","typealia","t分别代表tnt和string","t定义了一个名为“某种类型t”的节点提供给后来用。这种将来类型可以在结构体的定义里任何地方表示为“t”。在这种情况下,t","t来表示)来代替实际类型名(如int、string或double)。节点类型名并不是表示t必须是任何类型,但是其规定a和b必须是同一类型的t,而不管t表示任何类型。只有swaptwovalues函数在每次调用时所传入的实际类型决定了t","t被用作append方法的item参数和下标的返回类型。swift因此可以推断出被用作这个特定容器的itemtype的t","t,有一个需要t必须是someclass子类的类型约束;第二个类型参数u,有一个需要u必须遵循someprotocol","u","uinavigationcontrol","undefinedundefin","uno","uppercamelcas","us","valu","valuetofind","valuetofind”。不是所有的swift中的类型都可以用等式符(==)进行比较。例如,如果你创建一个你自己的类或结构体来表示一个复杂的数据模型,那么swift没法猜到对于这个类或结构体而言“等于”的意思。正因如此,这部分代码不能可能保证工作于每个可能的类型t","var","variabl","view","whenev","where语句作为一个类型参数队列的一部分。一个where语句使你能够要求一个关联类型遵循一个特定的协议,以及(或)那个特定的类型参数和关联类型可以是相同的。你可写一个where语句,通过紧随放置wher","where语句的一部分,写在关键字wher","world"],"chapter2/chapter2.html#gitbook_67":["swift","undefinedundefin"],"chapter2/23_Advanced_Operators.html#gitbook_68":["0","0.0","00000000","00000001","00000100","00001000","00001111","00001111(前4","00010000","00010001","00111100","01111111","0b00000101","0b00001111","0b00010100","0b00111111","0b01011110","0b10110010","0b11110000","0b11111100","0x000099","0x0000cc","0x0000ff","0x006600","0x00ff00","0x66","0x99","0xcc","0xcc0000","0xcc6699","0xff0000","0~255","1","1.0","100","10000000","102","11110000","11111110","11111111","12","124","127","128","140","15","153","16","1的时候才为1","1的条件是两个输入数的同一位都不为0(即任意一个为1","2","2.0","20","204","240","254","255","3","3.0","32767","32768","4","4.0","4个位都为1","5","5.0","6","6.0","60","66","6699","7","8","8-bit","8.0","99","abov","absolut","accord","achiev","action","actual","ad","add","addit","adopt","advanc","advantag","affect","afterdoubl","afterincr","allow","alreadi","alsoposit","alwai","amp","amp;&","amp;)和按位右移就可以从这个颜色值中解析出红(cc","ampersand","anoth","anothertwothre","anothervector","answer","anyth","appear","appli","approach","arithmet","around","art/bitshiftsigned_2x.png","art/bitshiftsignedaddition_2x.png","art/bitshiftsignedfour_2x.png","art/bitshiftsignedminusfour_2x.png","art/bitshiftsignedminusfourvalue_2x.png","art/bitshiftunsigned_2x.png","art/bitwiseand_2x.png","art/bitwisenot_2x.png","art/bitwiseor_2x.png","art/bitwisexor_2x.png","art/overflowaddition_2x.png","art/overflowsignedsubtraction_2x.png","art/overflowunsignedsubtraction_2x.png","art/vectoraddition_2x.png","assign","associ","associated)—eith","attribut","avail","b","back","base","basic","be","becom","befor","begin","behav","behavior","behind","below","between","beyond","binari","bit","bit-shift","bitwis","blue","bluecompon","bool","both","bound","boundari","byte","c","c-base","calcul","call","care","cascad","caus","cc","cc6699","certain","charact","characterist","check","class","closer","code","color","combin","combinedbit","combinedvector","commun","compar","complement","complet","complex","compon","compound","condit","consid","constant","context","convert","correspond","count","creat","creation","css","css颜色#cc6699在swift用十六进制0xcc6699","custom","c语和objective-c","data","decim","declar","decod","decompos","default","defin","definit","demonstr","depend","describ","determin","devic","diagram","differ","directli","discard","divid","divis","doesn’t","done","don’t","doubl","driver","dure","each","earlier","easi","effect","eight","eight-bit","empti","enabl","encod","end","ensur","enumer","equal","equival","equivalent."","error","essenc","evalu","even","exact","exactli","exampl","except","exclus","exist","expect","explan","express","extend","extern","extra","factor","familiar","fill","final","first","firstbit","firstsixbit","firstvector","fit","five","flexibl","follow","form","found","four","freedom","func","function","give","given","global","grai","graphic","green","greencompon","group","gt","gt;>","guess","halv","handl","happen","here","here’","hexadecim","higher","higher-preced","hold","ignor","illustr","immedi","implement","implicit","import","includ","increment","indic","individu","infix","initi","initialbit","inout","input","insert","insid","instanc","instead","int16","int16.max","int8","int8.min","integ","integersoverflow","integers对无符整型进行移位shift","integer’","intend","interact","invalid","invers","invert","invertedbit","itself","keep","keyword","known","languag","larg","largest","lastsixbit","leav","left","left-associ","left.i","left.x","let","level","limit","list","locat","logic","look","low-level","lower-preced","lt","lt;<","make","manipul","mark","mask","match","maximum","mean","method","middl","middlefourbit","minu","modifi","more","morebit","move","much","multipl","multipli","n","name","need","neg","new","next","non-associ","none","notat","note","now","number","numer","objective-c","obtain","occur","on","onc","oper","operatorsvalu","operators位运算符bitwis","operators按位左移/右移运算符shift","operator’","operator按位与运算符bitwis","operator按位取反运算符bitwis","operator按位异或运算符bitwis","operator按位或运算bitwis","opt","orang","order","origin","other","otherbit","out","output","outputbit","outsid","over","overflow","overflowdivis","overload","oxcc6699","pair","paramet","parameter’","parenthes","part","perform","pink","place","plai","plu","plusminusvector","port","posit","possibl","postfix","potentialoverflow","power","preced","predefin","predict","prefix","principl","print","println("thes","prioriti","process","program","properti","protocol","provid","purpos","push","qualifi","quot;thes","rang","raw","read","receiv","red","redcompon","reimplement","remain","remaind","report","repres","represent","request","result","return","right","right-associ","right.i","right.x","role","round","rule","safeti","same","second","secondvector","see","seem","sens","set","seven","sever","sheet","shift","shiftbit","show","shown","side","sign","signedunderflow","similar","similarli","simpl","simpler","simpli","simplic","singl","size","small","smallest","somebit","sourc","space","special","specif","specifi","standard","start","still","storag","store","straight","strictli","struct","structur","style","subtract","such","sum","support","swift","swift’","swift支持所有c","tailor","take","taken","target","ternari","there’","thing","think","third","those","time","tobedoubl","togeth","toggl","toincrement","trap","treat","trigger","truncat","try","two","two-dimension","twothre","two’","type","type’","uint16","uint32","uint8","uint8.max","uint8.min","unari","undefinedundefin","underflow","unlik","unsign","unusu","up","upward","us","valid","valu","var","variabl","vector","vector.i","vector.x","vector2d","vector2d(1.0","vector2d(x","vectortoadd","veri","versa","version","vice","wai","want","wherea","whether","white","whose","willoverflow","willunderflow","within","without","work","wrap","write","written","x","xor","y","yield","you’r","zero","zeropreced"],"chapter3/06_Attributes.html#gitbook_69":["adopt","appropri","argument","assign","attribut","attribute-argument-claus","attribute-argument-clauseopt","attribute-nam","attributesopt","auto_closur","balanced-token","balanced-tokensopt","bool","builder","builder特性是interfac","builder特性:ibaction,ibdesignable,ibinspectable,以及iboutlet。这些特性与objective-c","builder用来与xcode同步的声明特性。swift提供了以下的interfac","class","class_protocol","conform","data","enabl","exampleclass","export","final","gt","iboutlet和ibinspectable用于修饰一个类的属性声明;ibaction特性用于修饰一个类的方法声明;ibdesign","identifi","inout。如何使用assign","interfac","lazi","name","name(attribut","noreturn","noreturn特性标记的函数或方法,你可以将它重写(override)为用该特性标记的。相反,对于一个已经用noreturn特性标记的函数或方法,你则不可以将它重写为没使用该特性标记的。相同的规则试用于当你在一个comform","nscopi","nscopying特性的行为与objective-c中的copi","nsmanag","nsmanagedobject子类中的存储型变量属性,表明属性的存储和实现由cor","objc","objc(isen","objc特性修饰一个协议,class_protocol特性就会隐式地应用到该协议,因此无需显式地用class_protocol","objc特性应用于一个类或协议,它也会隐式地应用于那个类或协议的成员。对于标记了objc特性的类,编译器会隐式地为它的子类添加objc特性。标记了objc特性的协议不能继承自没有标记objc","objc特性有一个可选的参数,由标记符组成。当你想把objc所修饰的实体以一个不同的名字暴露给objective-c,你就可以使用这个特性参数。你可以使用这个参数来命名类,协议,方法,getters,setters,以及初始化器。下面的例子把exampleclass中enabled属性的getter暴露给objective-c,名字是isen","objective-c中表示的声明,比如,非嵌套类,协议,类和协议中的属性和方法(包含getter和setter),初始化器,析构器,以下下标。objc特性告诉编译器该声明可以在objective-c","option","optional特性修饰那些标记了objc特性的协议。因此,只有类类型可以adopt和comform","requir","return","setter与属性值的一个副本合成,由copywithzone方法返回,而不是属性本身的值。该属性的类型必需遵循nscopi","swift中有两类特性,用于修饰声明的以及用于修饰类型的。例如,required特性,当应用于一个类的指定或便利初始化器声明时,表明它的每个子类都必须实现那个初始化器。再比如noreturn","t","to那些包含可选成员需求的协议。更多关于如何使用optional特性以及如何访问可选协议成员的指导,例如,当你不确定一个conform","type","t,是@noreturn","undefinedundefin","valu","var"],"chapter3/01_About_the_Language_Reference.html#gitbook_71":["block","getter-claus","getter-sett","getter-setter-block","getter-setter方法​​块可以由一个getter子句后跟一个可选的setter子句构成,用大括号括起来,或者由一个setter子句后跟一个gett","grammar","opt","setter-claus","setter-clause­opt","swift","swift语言相对小点,这是由于在swift代码中几乎无处不在的许多常见的的类型,函数以及运算符都由swift标准库来定义。虽然这些类型,函数和运算符不是swift","undefinedundefin"],"chapter3/03_Types.html#gitbook_73":["0","0——编译器会正确的推断出x的类型int。类似的,当完整的类型可以从上下文推断出来时,你也可以忽略类型的一部分。比如,如果你写了let","0中x的类型首先根据0的类型进行推断,然后将该类型信息传递到根节点(变量x","0,你可以完全忽略类型而简写成var","1","1],编译提也能推断出dict的类型是dictionary<str","2","2.71828","3","3.14159","4","42","4]],array3d[0][1]是指[3","4],array3d[0][1][1]则是指值4","5","6","7","8","9","addthesecondnumb","addthesecondnumber(b","addtwonumbers(4)(5","addtwonumbers(a","alex","annot","arrai","array-typ","array3d","array3d[0]是指[[1","array$0$1$2`。例如,class`class`。反引号不属于标识符的一部分,`x`(x","comparable等同于t","comparable表示任何用于替代类型形参t的类型实参必须满足compar","comparable,等等),但是依然可以用来对类型形参及其关联约束提供更复杂的约束。如,<t","conformance-requir","constrain","dictionary泛型实参语句泛型形参语句泛型形参语句where语句":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.05486968449931413}}}}}},"s":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"表":{"docs":{},"示":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"t":{"docs":{},"继":{"docs":{},"承":{"docs":{},"自":{"docs":{},"类":{"docs":{},"c":{"docs":{},"且":{"docs":{},"遵":{"docs":{},"守":{"docs":{},"协":{"docs":{},"议":{"docs":{},"p":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}},"q":{"docs":{},"群":{"docs":{},":":{"3":{"6":{"4":{"2":{"7":{"9":{"5":{"8":{"8":{"docs":{"index.html#gitbook_4":{"ref":"index.html#gitbook_4","tf":0.06666666666666667}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}},"u":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.016260162601626018}}}},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}}}}}},"r":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0044742729306487695},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.008928571428571428},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0027434842249657062}},";":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036}}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}},";":{"docs":{},")":{"docs":{},",":{"docs":{},"u":{"docs":{},"+":{"1":{"docs":{},"f":{"4":{"2":{"5":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}}},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036}}}}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}},"海":{"docs":{},"贼":{"docs":{},"王":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}},"":{"docs":{},"":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}},"?":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"k":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"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":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{},",":{"docs":{},"和":{"docs":{},"一":{"docs":{},"个":{"docs":{},"包":{"docs":{},"含":{"docs":{},"给":{"docs":{},"这":{"docs":{},"个":{"docs":{},"人":{"docs":{},"问":{"docs":{},"候":{"docs":{},"语":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"大":{"docs":{},"于":{"docs":{},"字":{"docs":{},"母":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},",":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"大":{"docs":{},"于":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"y":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"将":{"docs":{},"会":{"docs":{},"排":{"docs":{},"在":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"x":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}},"大":{"docs":{},"于":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}},"按":{"docs":{},"照":{"docs":{},"字":{"docs":{},"母":{"docs":{},"顺":{"docs":{},"序":{"docs":{},"较":{"docs":{},"晚":{"docs":{},"出":{"docs":{},"现":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}},"短":{"docs":{},"路":{"docs":{},"计":{"docs":{},"算":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0044742729306487695}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"i":{"docs":{},"n":{"docs":{},"-":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}},"二":{"docs":{},"元":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}},"右":{"docs":{},"边":{"docs":{},"参":{"docs":{},"数":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}},"后":{"docs":{},"缀":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"的":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"子":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"中":{"docs":{},"包":{"docs":{},"含":{"docs":{},"了":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"可":{"docs":{},"选":{"docs":{},"链":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},",":{"docs":{},"那":{"docs":{},"么":{"docs":{},"只":{"docs":{},"有":{"docs":{},"最":{"docs":{},"外":{"docs":{},"层":{"docs":{},"的":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"返":{"docs":{},"回":{"docs":{},"的":{"docs":{},"才":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"左":{"docs":{},"边":{"docs":{},"参":{"docs":{},"数":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}},"、":{"docs":{},"\\":{"docs":{},"­":{"docs":{},"、":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"0":{"docs":{},"a":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}},"docs":{}},"docs":{}},"docs":{}}}}}},"未":{"docs":{},"转":{"docs":{},"义":{"docs":{},"的":{"docs":{},"反":{"docs":{},"斜":{"docs":{},"线":{"docs":{},"\\":{"docs":{},"、":{"docs":{},"回":{"docs":{},"车":{"docs":{},"符":{"docs":{},"(":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}}},"e":{"docs":{},"d":{"docs":{},"-":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.006696428571428571},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}},"-":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.008928571428571428},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0027434842249657062}}}}}}}}}}}}},")":{"docs":{},"\\":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}},"docs":{}},"docs":{}},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}}}}}}},"r":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.013651877133105802}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"b":{"docs":{},"c":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"g":{"docs":{},"h":{"docs":{},"i":{"docs":{},"j":{"docs":{},"k":{"docs":{},"l":{"docs":{},"m":{"docs":{},"n":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"index.html#gitbook_4":{"ref":"index.html#gitbook_4","tf":0.06666666666666667},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"i":{"docs":{},"r":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.023255813953488372},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}},"­":{"docs":{},",":{"docs":{},"­":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.005625879043600563},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.01015228426395939},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"1":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.012121212121212121}}},"2":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.006060606060606061}}},"3":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00808080808080808}}},"docs":{},")":{"docs":{},"和":{"docs":{},"无":{"docs":{},"主":{"docs":{},"引":{"docs":{},"用":{"docs":{},"(":{"docs":{},"u":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}}}},"t":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848}},"导":{"docs":{},"演":{"docs":{},"的":{"docs":{},"电":{"docs":{},"影":{"docs":{},"“":{"docs":{},"g":{"docs":{},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"b":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}},"<":{"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}},"e":{"docs":{},":":{"0":{"docs":{},".":{"0":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}},"docs":{}}},"docs":{}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.005747126436781609}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"k":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.005639097744360902},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.260169654906497},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.005875440658049354},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.004219409282700422},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002306805074971165},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"u":{"docs":{},"n":{"docs":{},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013}}}}}},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.017766497461928935}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},")":{"docs":{},"或":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"o":{"docs":{},"m":{"docs":{},"o":{"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":{},"均":{"docs":{},"会":{"docs":{},"被":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"为":{"docs":{},"默":{"docs":{},"认":{"docs":{},"值":{"docs":{},"。":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}},"的":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"描":{"docs":{},"述":{"docs":{},"一":{"docs":{},"个":{"docs":{},"显":{"docs":{},"示":{"docs":{},"器":{"docs":{},"的":{"docs":{},"像":{"docs":{},"素":{"docs":{},"分":{"docs":{},"辨":{"docs":{},"率":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"包":{"docs":{},"含":{"docs":{},"了":{"docs":{},"两":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},"和":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"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":{},"数":{"0":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},",":{"docs":{},"它":{"docs":{},"们":{"docs":{},"会":{"docs":{},"被":{"docs":{},"推":{"docs":{},"断":{"docs":{},"为":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"和":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"o":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"类":{"docs":{},"的":{"docs":{},"定":{"docs":{},"义":{"docs":{},"仅":{"docs":{},"描":{"docs":{},"述":{"docs":{},"了":{"docs":{},"什":{"docs":{},"么":{"docs":{},"是":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"和":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"o":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"。":{"docs":{},"它":{"docs":{},"们":{"docs":{},"并":{"docs":{},"没":{"docs":{},"有":{"docs":{},"描":{"docs":{},"述":{"docs":{},"一":{"docs":{},"个":{"docs":{},"特":{"docs":{},"定":{"docs":{},"的":{"docs":{},"分":{"docs":{},"辨":{"docs":{},"率":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},"或":{"docs":{},"者":{"docs":{},"视":{"docs":{},"频":{"docs":{},"模":{"docs":{},"式":{"docs":{},"(":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"o":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},":":{"6":{"4":{"0":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}},"将":{"docs":{},"计":{"docs":{},"数":{"docs":{},"器":{"docs":{},"重":{"docs":{},"置":{"docs":{},"为":{"0":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}},"docs":{}}}}}}}}},"r":{"docs":{},"v":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}},"i":{"docs":{},"d":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.04304635761589404}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"中":{"docs":{},"也":{"docs":{},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}},"具":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"s":{"docs":{},",":{"docs":{},"其":{"docs":{},"值":{"docs":{},"为":{"1":{"docs":{},"。":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"具":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"它":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}},"存":{"docs":{},"储":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"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":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"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":{},"。":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"s":{"docs":{},"属":{"docs":{},"性":{"docs":{},"值":{"docs":{},"是":{"docs":{},"由":{"docs":{},"返":{"docs":{},"回":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"s":{"docs":{},"数":{"docs":{},"组":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"属":{"docs":{},"性":{"docs":{},"叫":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"(":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"?":{"docs":{},")":{"docs":{},"。":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},"给":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{},"且":{"docs":{},"在":{"docs":{},"他":{"docs":{},"的":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"s":{"docs":{},"数":{"docs":{},"组":{"docs":{},"中":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"或":{"docs":{},"多":{"docs":{},"个":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"那":{"docs":{},"么":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"可":{"docs":{},"选":{"docs":{},"链":{"docs":{},"通":{"docs":{},"过":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"子":{"docs":{},"脚":{"docs":{},"本":{"docs":{},"来":{"docs":{},"获":{"docs":{},"取":{"docs":{},"在":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"属":{"docs":{},"性":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"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":{},"解":{"docs":{},"析":{"docs":{},"的":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"s":{"docs":{},"方":{"docs":{},"法":{"docs":{},"会":{"docs":{},"打":{"docs":{},"印":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"中":{"docs":{},"定":{"docs":{},"义":{"docs":{},"的":{"docs":{},"子":{"docs":{},"脚":{"docs":{},"本":{"docs":{},"来":{"docs":{},"获":{"docs":{},"取":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"数":{"docs":{},"组":{"docs":{},"中":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"房":{"docs":{},"间":{"docs":{},"的":{"docs":{},"名":{"docs":{},"字":{"docs":{},"。":{"docs":{},"因":{"docs":{},"为":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"现":{"docs":{},"在":{"docs":{},"是":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.03525264394829612},"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.016597510373443983},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.9794589997710398},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.4712994626282364},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.011278195488721804},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.010282776349614395},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.02197802197802198},"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.005917159763313609},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00808080808080808},"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.019867549668874173},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0047430830039525695},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.032520325203252036},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.040229885057471264},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.013784461152882205},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.026905829596412557},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0057670126874279125},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.017543859649122806},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.004020100502512563},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.015503875968992248},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":1.1282051282051282}},"f":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}},")":{"docs":{},"\\":{"docs":{},"r":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}},"或":{"docs":{},"换":{"docs":{},"行":{"docs":{},"符":{"docs":{},"(":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}}}},"(":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"0":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}},"docs":{}},"docs":{}},"docs":{}}}}},"-":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.005698005698005698}}}}}}},"时":{"docs":{},",":{"docs":{},"仅":{"docs":{},"仅":{"docs":{},"是":{"docs":{},"将":{"docs":{},"控":{"docs":{},"制":{"docs":{},"权":{"docs":{},"从":{"docs":{},"该":{"docs":{},"函":{"docs":{},"数":{"docs":{},"或":{"docs":{},"方":{"docs":{},"法":{"docs":{},"传":{"docs":{},"递":{"docs":{},"给":{"docs":{},"调":{"docs":{},"用":{"docs":{},"者":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"docs":{},"。":{"docs":{},"(":{"docs":{},"这":{"docs":{},"就":{"docs":{},"是":{"docs":{},"说":{"docs":{},",":{"docs":{},"该":{"docs":{},"函":{"docs":{},"数":{"docs":{},"或":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"返":{"docs":{},"回":{"docs":{},"类":{"docs":{},"型":{"docs":{},"为":{"docs":{},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"语":{"docs":{},"句":{"docs":{},"后":{"docs":{},"面":{"docs":{},"带":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"时":{"docs":{},",":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"的":{"docs":{},"值":{"docs":{},"将":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"docs":{},"给":{"docs":{},"调":{"docs":{},"用":{"docs":{},"者":{"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":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"时":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"只":{"docs":{},"写":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"这":{"docs":{},"个":{"docs":{},"关":{"docs":{},"键":{"docs":{},"词":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.03642384105960265}}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.004454342984409799},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.004454342984409799}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"方":{"docs":{},"法":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"方":{"docs":{},"法":{"docs":{},"来":{"docs":{},"避":{"docs":{},"免":{"docs":{},"我":{"docs":{},"们":{"docs":{},"需":{"docs":{},"要":{"docs":{},"获":{"docs":{},"取":{"docs":{},"数":{"docs":{},"组":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"方":{"docs":{},"法":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"来":{"docs":{},"在":{"docs":{},"字":{"docs":{},"典":{"docs":{},"中":{"docs":{},"移":{"docs":{},"除":{"docs":{},"键":{"docs":{},"值":{"docs":{},"对":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"在":{"docs":{},"键":{"docs":{},"值":{"docs":{},"对":{"docs":{},"存":{"docs":{},"在":{"docs":{},"的":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},"会":{"docs":{},"移":{"docs":{},"除":{"docs":{},"该":{"docs":{},"键":{"docs":{},"值":{"docs":{},"对":{"docs":{},"并":{"docs":{},"且":{"docs":{},"返":{"docs":{},"回":{"docs":{},"被":{"docs":{},"移":{"docs":{},"除":{"docs":{},"的":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"或":{"docs":{},"者":{"docs":{},"在":{"docs":{},"没":{"docs":{},"有":{"docs":{},"值":{"docs":{},"的":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},"返":{"docs":{},"回":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.005076142131979695}},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}},"e":{"docs":{},"d":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"被":{"docs":{},"赋":{"docs":{},"予":{"docs":{},"了":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"的":{"docs":{},"值":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{},"实":{"docs":{},"际":{"docs":{},"上":{"docs":{},"它":{"docs":{},"被":{"docs":{},"赋":{"docs":{},"予":{"docs":{},"的":{"docs":{},"是":{"docs":{},"值":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},")":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"拷":{"docs":{},"贝":{"docs":{},"。":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"过":{"docs":{},"程":{"docs":{},"结":{"docs":{},"束":{"docs":{},"后":{"docs":{},"再":{"docs":{},"修":{"docs":{},"改":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"的":{"docs":{},"值":{"docs":{},"并":{"docs":{},"不":{"docs":{},"影":{"docs":{},"响":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"所":{"docs":{},"储":{"docs":{},"存":{"docs":{},"的":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002306805074971165},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}}}},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192}}}}},"d":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.025280898876404494}}}}}},"c":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.005639097744360902},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.011494252873563218}},"(":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}},"也":{"docs":{},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"矩":{"docs":{},"形":{"docs":{},"的":{"docs":{},"中":{"docs":{},"心":{"docs":{},"点":{"docs":{},"可":{"docs":{},"以":{"docs":{},"从":{"docs":{},"原":{"docs":{},"点":{"docs":{},"和":{"docs":{},"尺":{"docs":{},"寸":{"docs":{},"来":{"docs":{},"算":{"docs":{},"出":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"将":{"docs":{},"它":{"docs":{},"以":{"docs":{},"显":{"docs":{},"式":{"docs":{},"声":{"docs":{},"明":{"docs":{},"的":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"来":{"docs":{},"保":{"docs":{},"存":{"docs":{},"。":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"的":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"的":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"和":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"例":{"docs":{},"子":{"docs":{},"同":{"docs":{},"时":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"两":{"docs":{},"个":{"docs":{},"辅":{"docs":{},"助":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"和":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"它":{"docs":{},"们":{"docs":{},"都":{"docs":{},"把":{"0":{"docs":{},".":{"0":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"其":{"docs":{},"所":{"docs":{},"有":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"默":{"docs":{},"认":{"docs":{},"值":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"正":{"docs":{},"如":{"docs":{},"默":{"docs":{},"认":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"中":{"docs":{},"描":{"docs":{},"述":{"docs":{},"的":{"docs":{},",":{"docs":{},"它":{"docs":{},"可":{"docs":{},"以":{"docs":{},"自":{"docs":{},"动":{"docs":{},"接":{"docs":{},"受":{"docs":{},"一":{"docs":{},"个":{"docs":{},"默":{"docs":{},"认":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"和":{"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":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.005917159763313609}}}}}}},"方":{"docs":{},"法":{"docs":{},"只":{"docs":{},"是":{"docs":{},"将":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"的":{"docs":{},"硬":{"docs":{},"币":{"docs":{},"存":{"docs":{},"储":{"docs":{},"和":{"docs":{},"接":{"docs":{},"收":{"docs":{},"到":{"docs":{},"的":{"docs":{},"硬":{"docs":{},"币":{"docs":{},"数":{"docs":{},"目":{"docs":{},"相":{"docs":{},"加":{"docs":{},",":{"docs":{},"再":{"docs":{},"保":{"docs":{},"存":{"docs":{},"回":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.005917159763313609}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.04878048780487805}},".":{"docs":{},"a":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"(":{"3":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}}}}}},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}}}}}}}}}}}}}}},"和":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"在":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"中":{"docs":{},",":{"docs":{},"但":{"docs":{},"仍":{"docs":{},"可":{"docs":{},"被":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"在":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"实":{"docs":{},"例":{"docs":{},"时":{"docs":{},"能":{"docs":{},"够":{"docs":{},"通":{"docs":{},"过":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"类":{"docs":{},"型":{"docs":{},"中":{"docs":{},"的":{"docs":{},"成":{"docs":{},"员":{"docs":{},"名":{"docs":{},"称":{"docs":{},"单":{"docs":{},"独":{"docs":{},"引":{"docs":{},"用":{"docs":{},"。":{"docs":{},"在":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"属":{"docs":{},"性":{"docs":{},"能":{"docs":{},"正":{"docs":{},"确":{"docs":{},"得":{"docs":{},"输":{"docs":{},"出":{"docs":{},"对":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"牌":{"docs":{},"有":{"1":{"docs":{},"和":{"1":{"1":{"docs":{"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"在":{"docs":{},"自":{"docs":{},"己":{"docs":{},"内":{"docs":{},"部":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"包":{"docs":{},"含":{"docs":{},"两":{"docs":{},"个":{"docs":{},"变":{"docs":{},"量":{"docs":{},",":{"docs":{},"只":{"docs":{},"有":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"有":{"docs":{},"两":{"docs":{},"个":{"docs":{},"数":{"docs":{},"值":{"docs":{},",":{"docs":{},"其":{"docs":{},"余":{"docs":{},"牌":{"docs":{},"都":{"docs":{},"只":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"数":{"docs":{},"值":{"docs":{},"。":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"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":{},"始":{"docs":{},"化":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"并":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"给":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"。":{"docs":{},"对":{"docs":{},"于":{"docs":{},"j":{"docs":{},",":{"docs":{},"q":{"docs":{},",":{"docs":{},"k":{"docs":{},",":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"会":{"docs":{},"使":{"docs":{},"用":{"docs":{},"特":{"docs":{},"殊":{"docs":{},"数":{"docs":{},"值":{"docs":{},",":{"docs":{},"对":{"docs":{},"于":{"docs":{},"数":{"docs":{},"字":{"docs":{},"面":{"docs":{},"值":{"docs":{},"的":{"docs":{},"牌":{"docs":{},"使":{"docs":{},"用":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"来":{"docs":{},"描":{"docs":{},"述":{"docs":{},"扑":{"docs":{},"克":{"docs":{},"牌":{"docs":{},"从":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"~":{"1":{"0":{"docs":{},",":{"docs":{},"j":{"docs":{},",":{"docs":{},"q":{"docs":{},",":{"docs":{},"k":{"docs":{},",":{"1":{"3":{"docs":{},"张":{"docs":{},"牌":{"docs":{},",":{"docs":{},"并":{"docs":{},"分":{"docs":{},"别":{"docs":{},"用":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},"表":{"docs":{},"示":{"docs":{},"牌":{"docs":{},"的":{"docs":{},"面":{"docs":{},"值":{"docs":{},"。":{"docs":{},"(":{"docs":{},"这":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},"不":{"docs":{},"适":{"docs":{},"用":{"docs":{},"于":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{},"j":{"docs":{},",":{"docs":{},"q":{"docs":{},",":{"docs":{},"k":{"docs":{"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}},"g":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.005639097744360902},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.01098901098901099},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.003015075376884422}},"e":{"docs":{},")":{"docs":{},",":{"docs":{},"队":{"docs":{},"列":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{},"集":{"docs":{},"合":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},",":{"docs":{},"系":{"docs":{},"列":{"docs":{},"(":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"匹":{"docs":{},"配":{"docs":{},",":{"docs":{},"元":{"docs":{},"组":{"docs":{},"(":{"docs":{},"t":{"docs":{},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},"和":{"docs":{},"特":{"docs":{},"定":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"描":{"docs":{},"述":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}},"声":{"docs":{},"明":{"docs":{},"成":{"docs":{},"了":{"docs":{},"常":{"docs":{},"量":{"docs":{},"(":{"docs":{},"用":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},")":{"docs":{},",":{"docs":{},"即":{"docs":{},"使":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}},"s":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.011278195488721804}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.005012531328320802}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"要":{"docs":{},"求":{"docs":{},"其":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"者":{"docs":{},"必":{"docs":{},"须":{"docs":{},"拥":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.006825938566552901},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}},"-":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"-":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"-":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"-":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.003429355281207133}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"u":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.005012531328320802}}}}}},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"o":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006},"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0728476821192053}},"(":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.013245033112582781}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.006622516556291391}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.023178807947019868}}}}}}},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}},"[":{"docs":{},"i":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}},"数":{"docs":{},"组":{"docs":{},"的":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"类":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"很":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"类":{"docs":{},",":{"docs":{},"它":{"docs":{},"只":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},"和":{"docs":{},"一":{"docs":{},"个":{"docs":{},"设":{"docs":{},"定":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}},",":{"docs":{},"它":{"docs":{},"被":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.004604051565377533},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.013784461152882205}},"方":{"docs":{},"法":{"docs":{},"用":{"docs":{},"来":{"docs":{},"模":{"docs":{},"拟":{"docs":{},"骰":{"docs":{},"子":{"docs":{},"的":{"docs":{},"面":{"docs":{},"值":{"docs":{},".":{"docs":{},"它":{"docs":{},"先":{"docs":{},"使":{"docs":{},"用":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"的":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},"方":{"docs":{},"法":{"docs":{},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"[":{"0":{"docs":{},"-":{"1":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}},"w":{"0":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}},"1":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}},"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.04945054945054945}},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"下":{"docs":{},"标":{"docs":{},"的":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}}}}},"的":{"docs":{},"数":{"docs":{},"量":{"docs":{},"来":{"docs":{},"构":{"docs":{},"造":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.020134228187919462}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"内":{"docs":{},"存":{"docs":{},"管":{"docs":{},"理":{"docs":{},"操":{"docs":{},"作":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"不":{"docs":{},"再":{"docs":{},"被":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.014044943820224719}},"a":{"docs":{},"l":{"docs":{},"增":{"docs":{},"加":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"捕":{"docs":{},"获":{"docs":{},"了":{"docs":{},"当":{"docs":{},"前":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"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":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"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":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"函":{"docs":{},"数":{"docs":{},"时":{"docs":{},",":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.004020100502512563}}}}}},"l":{"docs":{},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0019223375624759708}}}}},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}},"c":{"docs":{},"h":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}},"k":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}}},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.005141388174807198},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.48964683912780793},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}},".":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}},".":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}},"x":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}}}}}},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848}}}}}}}},"s":{"1":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.008438818565400843},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.033707865168539325}}},"2":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.011251758087201125},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.033707865168539325}},")":{"docs":{},",":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"s":{"docs":{},"函":{"docs":{},"数":{"docs":{},"返":{"docs":{},"回":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"在":{"docs":{},"新":{"docs":{},"的":{"docs":{},"数":{"docs":{},"组":{"docs":{},"中":{"docs":{},"s":{"1":{"docs":{},"应":{"docs":{},"该":{"docs":{},"出":{"docs":{},"现":{"docs":{},"在":{"docs":{},"s":{"2":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}},"docs":{}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.004020100502512563}},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"index.html#gitbook_4":{"ref":"index.html#gitbook_4","tf":10.4},"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":10.404761904761905},"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":10.00587544065805},"chapter1/chapter1.html#gitbook_9":{"ref":"chapter1/chapter1.html#gitbook_9","tf":10.75},"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.008298755186721992},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.06451612903225806},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.02631578947368421},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.04899777282850779},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.008287292817679558},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.008438818565400843},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.033707865168539325},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.020477815699658702},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.030456852791878174},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.005639097744360902},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.03131991051454139},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174},"chapter2/chapter2.html#gitbook_67":{"ref":"chapter2/chapter2.html#gitbook_67","tf":10.666666666666666},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.008458285274894272},"chapter3/01_About_the_Language_Reference.html#gitbook_71":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_71","tf":0.08333333333333333},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.006030150753768844},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.011160714285714286},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.015503875968992248},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.019943019943019943}},"中":{"docs":{},",":{"docs":{},"类":{"docs":{},"可":{"docs":{},"以":{"docs":{},"调":{"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":{},"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"型":{"docs":{},"信":{"docs":{},"息":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"反":{"docs":{},"方":{"docs":{},"向":{"docs":{},"流":{"docs":{},"动":{"docs":{},"—":{"docs":{},"—":{"docs":{},"从":{"docs":{},"根":{"docs":{},"节":{"docs":{},"点":{"docs":{},"传":{"docs":{},"向":{"docs":{},"叶":{"docs":{},"子":{"docs":{},"节":{"docs":{},"点":{"docs":{},"。":{"docs":{},"在":{"docs":{},"下":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"常":{"docs":{},"量":{"docs":{},"e":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"上":{"docs":{},"的":{"docs":{},"显":{"docs":{},"式":{"docs":{},"类":{"docs":{},"型":{"docs":{},"标":{"docs":{},"注":{"docs":{},"(":{"docs":{},":":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},")":{"docs":{},"导":{"docs":{},"致":{"docs":{},"数":{"docs":{},"字":{"docs":{},"字":{"docs":{},"面":{"docs":{},"量":{"2":{"docs":{},".":{"7":{"1":{"8":{"2":{"8":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"而":{"docs":{},"非":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"模":{"docs":{},"式":{"docs":{},"出":{"docs":{},"现":{"docs":{},"在":{"docs":{},"变":{"docs":{},"量":{"docs":{},"和":{"docs":{},"常":{"docs":{},"量":{"docs":{},"的":{"docs":{},"声":{"docs":{},"明":{"docs":{},"(":{"docs":{},"在":{"docs":{},"它":{"docs":{},"们":{"docs":{},"的":{"docs":{},"左":{"docs":{},"侧":{"docs":{},")":{"docs":{},",":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{},"语":{"docs":{},"句":{"docs":{},"和":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"语":{"docs":{},"句":{"docs":{},"(":{"docs":{},"在":{"docs":{},"他":{"docs":{},"们":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"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":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"标":{"docs":{},"签":{"docs":{},"中":{"docs":{},",":{"docs":{},"但":{"docs":{},"在":{"docs":{},"其":{"docs":{},"他":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},",":{"docs":{},"只":{"docs":{},"有":{"docs":{},"通":{"docs":{},"配":{"docs":{},"符":{"docs":{},"模":{"docs":{},"式":{"docs":{},"(":{"docs":{},"w":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"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":{},"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":{},"。":{"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":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"定":{"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":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}},"的":{"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":{},"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":{},"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":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},",":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},",":{"docs":{},"b":{"docs":{},"y":{"docs":{},"等":{"docs":{},"等":{"docs":{},"。":{"docs":{},"前":{"docs":{},"面":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"类":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"方":{"docs":{},"法":{"docs":{},"就":{"docs":{},"是":{"docs":{},"这":{"docs":{},"样":{"docs":{},"的":{"docs":{},"。":{"docs":{},"介":{"docs":{},"词":{"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":{},"让":{"docs":{},"书":{"docs":{},"写":{"docs":{},"代":{"docs":{},"码":{"docs":{},"更":{"docs":{},"容":{"docs":{},"易":{"docs":{},"了":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"的":{"docs":{},"下":{"docs":{},"标":{"docs":{},"实":{"docs":{},"现":{"docs":{},"中":{"docs":{},",":{"docs":{},"在":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"部":{"docs":{},"分":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"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":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},";":{"docs":{},"同":{"docs":{},"样":{"docs":{},"想":{"docs":{},"要":{"docs":{},"从":{"docs":{},"字":{"docs":{},"典":{"docs":{},"实":{"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":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"使":{"docs":{},"用":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}},"有":{"docs":{},"两":{"docs":{},"类":{"docs":{},"特":{"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":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"特":{"docs":{},"性":{"docs":{},",":{"docs":{},"当":{"docs":{},"应":{"docs":{},"用":{"docs":{},"于":{"docs":{},"一":{"docs":{},"个":{"docs":{},"类":{"docs":{},"的":{"docs":{},"指":{"docs":{},"定":{"docs":{},"或":{"docs":{},"便":{"docs":{},"利":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"器":{"docs":{},"声":{"docs":{},"明":{"docs":{},"时":{"docs":{},",":{"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":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"推":{"docs":{},"断":{"docs":{},"出":{"docs":{},"这":{"docs":{},"个":{"docs":{},"常":{"docs":{},"量":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"详":{"docs":{},"情":{"docs":{},"参":{"docs":{},"见":{"docs":{},"类":{"docs":{},"型":{"docs":{},"安":{"docs":{},"全":{"docs":{},"和":{"docs":{},"类":{"docs":{},"型":{"docs":{},"推":{"docs":{},"断":{"docs":{},"(":{"docs":{},"待":{"docs":{},"添":{"docs":{},"加":{"docs":{},"链":{"docs":{},"接":{"docs":{},")":{"docs":{},"。":{"docs":{},"在":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"没":{"docs":{},"有":{"docs":{},"给":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"插":{"docs":{},"值":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"类":{"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":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"和":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"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":{},"i":{"docs":{},"f":{"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":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"一":{"docs":{},"种":{"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":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"两":{"docs":{},"种":{"docs":{},"办":{"docs":{},"法":{"docs":{},"用":{"docs":{},"来":{"docs":{},"解":{"docs":{},"决":{"docs":{},"你":{"docs":{},"在":{"docs":{},"使":{"docs":{},"用":{"docs":{},"类":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"时":{"docs":{},"所":{"docs":{},"遇":{"docs":{},"到":{"docs":{},"的":{"docs":{},"循":{"docs":{},"环":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"问":{"docs":{},"题":{"docs":{},":":{"docs":{},"弱":{"docs":{},"引":{"docs":{},"用":{"docs":{},"(":{"docs":{},"w":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"语":{"docs":{},"言":{"docs":{},"中":{"docs":{},"的":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"不":{"docs":{},"会":{"docs":{},"从":{"docs":{},"上":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"分":{"docs":{},"支":{"docs":{},"落":{"docs":{},"入":{"docs":{},"到":{"docs":{},"下":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"分":{"docs":{},"支":{"docs":{},"中":{"docs":{},"。":{"docs":{},"相":{"docs":{},"反":{"docs":{},",":{"docs":{},"只":{"docs":{},"要":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"到":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"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":{},"相":{"docs":{},"比":{"docs":{},"之":{"docs":{},"下":{"docs":{},",":{"docs":{},"c":{"docs":{},"语":{"docs":{},"言":{"docs":{},"要":{"docs":{},"求":{"docs":{},"你":{"docs":{},"显":{"docs":{},"示":{"docs":{},"的":{"docs":{},"插":{"docs":{},"入":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"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":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"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":{},"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"代":{"docs":{},"码":{"docs":{},"块":{"docs":{},"两":{"docs":{},"者":{"docs":{},"都":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"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":{},"语":{"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":{},"显":{"docs":{},"示":{"docs":{},"指":{"docs":{},"明":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"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":{},"你":{"docs":{},"的":{"docs":{},"意":{"docs":{},"图":{"docs":{},"更":{"docs":{},"明":{"docs":{},"显":{"docs":{},",":{"docs":{},"需":{"docs":{},"要":{"docs":{},"特":{"docs":{},"意":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"或":{"docs":{},"者":{"docs":{},"忽":{"docs":{},"略":{"docs":{},"某":{"docs":{},"个":{"docs":{},"分":{"docs":{},"支":{"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":{},"语":{"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":{},"语":{"docs":{},"句":{"docs":{},"立":{"docs":{},"即":{"docs":{},"结":{"docs":{},"束":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"相":{"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":{},"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_71":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_71","tf":0.041666666666666664}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"使":{"docs":{},"用":{"docs":{},"类":{"docs":{},"型":{"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":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"存":{"docs":{},"在":{"docs":{},"两":{"docs":{},"种":{"docs":{},"类":{"docs":{},"型":{"docs":{},":":{"docs":{},"命":{"docs":{},"名":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"和":{"docs":{},"复":{"docs":{},"合":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"命":{"docs":{},"名":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"指":{"docs":{},"定":{"docs":{},"义":{"docs":{},"时":{"docs":{},"可":{"docs":{},"以":{"docs":{},"给":{"docs":{},"定":{"docs":{},"名":{"docs":{},"字":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"命":{"docs":{},"名":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"包":{"docs":{},"括":{"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":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"拥":{"docs":{},"有":{"docs":{},"类":{"docs":{},"型":{"docs":{},"m":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"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":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"后":{"docs":{},"缀":{"docs":{},"!":{"docs":{},"作":{"docs":{},"为":{"docs":{},"标":{"docs":{},"准":{"docs":{},"库":{"docs":{},"中":{"docs":{},"命":{"docs":{},"名":{"docs":{},"类":{"docs":{},"型":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"l":{"docs":{},"y":{"docs":{},"u":{"docs":{},"n":{"docs":{},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"本":{"docs":{},"身":{"docs":{},"定":{"docs":{},"义":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"并":{"docs":{},"描":{"docs":{},"述":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}},"统":{"docs":{},"一":{"docs":{},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},"语":{"docs":{},"法":{"docs":{},"足":{"docs":{},"够":{"docs":{},"灵":{"docs":{},"活":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"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":{},"风":{"docs":{},"格":{"docs":{},"函":{"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":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"自":{"docs":{},"动":{"docs":{},"为":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}},"默":{"docs":{},"认":{"docs":{},"仅":{"docs":{},"给":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"称":{"docs":{},"一":{"docs":{},"个":{"docs":{},"局":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"称":{"docs":{},";":{"docs":{},"但":{"docs":{},"是":{"docs":{},"默":{"docs":{},"认":{"docs":{},"同":{"docs":{},"时":{"docs":{},"给":{"docs":{},"第":{"docs":{},"二":{"docs":{},"个":{"docs":{},"和":{"docs":{},"后":{"docs":{},"续":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"称":{"docs":{},"局":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"称":{"docs":{},"和":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"称":{"docs":{},"。":{"docs":{},"这":{"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":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"字":{"docs":{},"典":{"docs":{},"(":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}}}}}}}}},"自":{"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"检":{"docs":{},"测":{"docs":{},"器":{"docs":{},"能":{"docs":{},"够":{"docs":{},"演":{"docs":{},"绎":{"docs":{},"出":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"添":{"docs":{},"加":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"名":{"docs":{},"为":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}},"内":{"docs":{},"建":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"添":{"docs":{},"加":{"docs":{},"了":{"5":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}},"docs":{}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"已":{"docs":{},"经":{"docs":{},"提":{"docs":{},"供":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"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":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"要":{"docs":{},"求":{"docs":{},"。":{"docs":{},"也":{"docs":{},"就":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"去":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"只":{"docs":{},"要":{"docs":{},"通":{"docs":{},"过":{"docs":{},"简":{"docs":{},"单":{"docs":{},"声":{"docs":{},"明":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"适":{"docs":{},"用":{"docs":{},"于":{"docs":{},"该":{"docs":{},"协":{"docs":{},"议":{"docs":{},"而":{"docs":{},"已":{"docs":{},"。":{"docs":{},"如":{"docs":{},"何":{"docs":{},"实":{"docs":{},"践":{"docs":{},"这":{"docs":{},"样":{"docs":{},"一":{"docs":{},"个":{"docs":{},"空":{"docs":{},"扩":{"docs":{},"展":{"docs":{},",":{"docs":{},"在":{"docs":{},"[":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"类":{"docs":{},"型":{"docs":{},"对":{"docs":{},"作":{"docs":{},"用":{"docs":{},"于":{"docs":{},"其":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"s":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"做":{"docs":{},"了":{"docs":{},"些":{"docs":{},"限":{"docs":{},"制":{"docs":{},"。":{"docs":{},"在":{"docs":{},"[":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"]":{"docs":{},"[":{"5":{"docs":{},"]":{"docs":{},"的":{"docs":{},"描":{"docs":{},"述":{"docs":{},"中":{"docs":{},",":{"docs":{},"字":{"docs":{},"典":{"docs":{},"的":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"s":{"docs":{},"类":{"docs":{},"型":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"b":{"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":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"之":{"docs":{},"所":{"docs":{},"以":{"docs":{},"需":{"docs":{},"要":{"docs":{},"其":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"s":{"docs":{},"是":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"是":{"docs":{},"为":{"docs":{},"了":{"docs":{},"以":{"docs":{},"便":{"docs":{},"于":{"docs":{},"其":{"docs":{},"检":{"docs":{},"查":{"docs":{},"其":{"docs":{},"是":{"docs":{},"否":{"docs":{},"包":{"docs":{},"含":{"docs":{},"某":{"docs":{},"个":{"docs":{},"特":{"docs":{},"定":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"如":{"docs":{},"无":{"docs":{},"此":{"docs":{},"需":{"docs":{},"求":{"docs":{},",":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"即":{"docs":{},"不":{"docs":{},"会":{"docs":{},"告":{"docs":{},"诉":{"docs":{},"是":{"docs":{},"否":{"docs":{},"插":{"docs":{},"入":{"docs":{},"或":{"docs":{},"者":{"docs":{},"替":{"docs":{},"换":{"docs":{},"了":{"docs":{},"某":{"docs":{},"个":{"docs":{},"特":{"docs":{},"定":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"也":{"docs":{},"不":{"docs":{},"能":{"docs":{},"查":{"docs":{},"找":{"docs":{},"到":{"docs":{},"已":{"docs":{},"经":{"docs":{},"存":{"docs":{},"储":{"docs":{},"在":{"docs":{},"字":{"docs":{},"典":{"docs":{},"里":{"docs":{},"面":{"docs":{},"的":{"docs":{},"给":{"docs":{},"定":{"docs":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"也":{"docs":{},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"方":{"docs":{},"便":{"docs":{},"对":{"docs":{},"变":{"docs":{},"量":{"docs":{},"本":{"docs":{},"身":{"docs":{},"加":{"1":{"docs":{},"或":{"docs":{},"减":{"1":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}},"docs":{}}}},"docs":{}}}}}}}}}}}}},"支":{"docs":{},"持":{"docs":{},"基":{"docs":{},"于":{"docs":{},"c":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}}}},"大":{"docs":{},"部":{"docs":{},"分":{"docs":{},"标":{"docs":{},"准":{"docs":{},"c":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}}}}}}},"所":{"docs":{},"有":{"docs":{},"c":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}},"会":{"docs":{},"自":{"docs":{},"动":{"docs":{},"释":{"docs":{},"放":{"docs":{},"不":{"docs":{},"再":{"docs":{},"需":{"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":{},"(":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.005917159763313609}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"使":{"docs":{},"用":{"docs":{},"自":{"docs":{},"动":{"docs":{},"引":{"docs":{},"用":{"docs":{},"计":{"docs":{},"数":{"docs":{},"(":{"docs":{},"a":{"docs":{},"r":{"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":{},"况":{"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":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"有":{"docs":{},"如":{"docs":{},"下":{"docs":{},"要":{"docs":{},"求":{"docs":{},":":{"docs":{},"只":{"docs":{},"要":{"docs":{},"在":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"内":{"docs":{},"使":{"docs":{},"用":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"的":{"docs":{},"成":{"docs":{},"员":{"docs":{},",":{"docs":{},"就":{"docs":{},"要":{"docs":{},"用":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"或":{"docs":{},"者":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"(":{"docs":{},"而":{"docs":{},"不":{"docs":{},"只":{"docs":{},"是":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"或":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},")":{"docs":{},"。":{"docs":{},"这":{"docs":{},"提":{"docs":{},"醒":{"docs":{},"你":{"docs":{},"可":{"docs":{},"能":{"docs":{},"会":{"docs":{},"不":{"docs":{},"小":{"docs":{},"心":{"docs":{},"就":{"docs":{},"占":{"docs":{},"有":{"docs":{},"了":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"来":{"docs":{},"链":{"docs":{},"接":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"?":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"存":{"docs":{},"在":{"docs":{},"则":{"docs":{},"取":{"docs":{},"回":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"’":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}},"内":{"docs":{},"建":{"docs":{},"类":{"docs":{},"型":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"添":{"docs":{},"加":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"整":{"docs":{},"型":{"docs":{},"下":{"docs":{},"标":{"docs":{},"。":{"docs":{},"该":{"docs":{},"下":{"docs":{},"标":{"docs":{},"[":{"docs":{},"n":{"docs":{},"]":{"docs":{},"返":{"docs":{},"回":{"docs":{},"十":{"docs":{},"进":{"docs":{},"制":{"docs":{},"数":{"docs":{},"字":{"docs":{},"从":{"docs":{},"右":{"docs":{},"向":{"docs":{},"左":{"docs":{},"数":{"docs":{},"的":{"docs":{},"第":{"docs":{},"n":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"允":{"docs":{},"许":{"docs":{},"你":{"docs":{},"定":{"docs":{},"义":{"docs":{},"你":{"docs":{},"自":{"docs":{},"己":{"docs":{},"的":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"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":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"字":{"docs":{},"典":{"docs":{},"(":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},")":{"docs":{},"类":{"docs":{},"型":{"docs":{},"有":{"docs":{},"两":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"一":{"docs":{},"个":{"docs":{},"是":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},",":{"docs":{},"另":{"docs":{},"外":{"docs":{},"一":{"docs":{},"个":{"docs":{},"是":{"docs":{},"值":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"自":{"docs":{},"己":{"docs":{},"写":{"docs":{},"字":{"docs":{},"典":{"docs":{},",":{"docs":{},"你":{"docs":{},"或":{"docs":{},"许":{"docs":{},"会":{"docs":{},"定":{"docs":{},"义":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"为":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"和":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"标":{"docs":{},"准":{"docs":{},"库":{"docs":{},"中":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"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":{},"和":{"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":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"细":{"docs":{},"节":{"docs":{},"讨":{"docs":{},"论":{"docs":{},",":{"docs":{},"见":{"docs":{},"章":{"docs":{},"节":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"~":{"docs":{},"=":{"docs":{},"操":{"docs":{},"作":{"docs":{},"符":{"docs":{},"与":{"docs":{},"输":{"docs":{},"入":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"的":{"docs":{},"值":{"docs":{},"进":{"docs":{},"行":{"docs":{},"比":{"docs":{},"较":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"~":{"docs":{},"=":{"docs":{},"操":{"docs":{},"作":{"docs":{},"符":{"docs":{},"返":{"docs":{},"回":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"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":{},"符":{"docs":{},"来":{"docs":{},"比":{"docs":{},"较":{"docs":{},"两":{"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":{},"g":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"考":{"docs":{},",":{"docs":{},"你":{"docs":{},"不":{"docs":{},"用":{"docs":{},"在":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"定":{"docs":{},"义":{"docs":{},"部":{"docs":{},"分":{"docs":{},"声":{"docs":{},"明":{"docs":{},"一":{"docs":{},"个":{"docs":{},"具":{"docs":{},"体":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"。":{"docs":{},"由":{"docs":{},"于":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"要":{"docs":{},"求":{"docs":{},",":{"docs":{},"只":{"docs":{},"要":{"docs":{},"通":{"docs":{},"过":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"查":{"docs":{},"找":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"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":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"需":{"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":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"后":{"docs":{},"缀":{"docs":{},"?":{"docs":{},"来":{"docs":{},"作":{"docs":{},"为":{"docs":{},"标":{"docs":{},"准":{"docs":{},"库":{"docs":{},"中":{"docs":{},"的":{"docs":{},"定":{"docs":{},"义":{"docs":{},"的":{"docs":{},"命":{"docs":{},"名":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"广":{"docs":{},"泛":{"docs":{},"的":{"docs":{},"使":{"docs":{},"用":{"docs":{},"类":{"docs":{},"型":{"docs":{},"推":{"docs":{},"断":{"docs":{},",":{"docs":{},"从":{"docs":{},"而":{"docs":{},"允":{"docs":{},"许":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"忽":{"docs":{},"略":{"docs":{},"很":{"docs":{},"多":{"docs":{},"变":{"docs":{},"量":{"docs":{},"和":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"或":{"docs":{},"部":{"docs":{},"分":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"比":{"docs":{},"如":{"docs":{},",":{"docs":{},"对":{"docs":{},"于":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"本":{"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":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.005875440658049354},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.014732965009208104},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.027303754266211604},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.006324110671936759},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.005747126436781609},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0037593984962406013},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.012658227848101266},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":2.242165242165242}},"中":{"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"代":{"docs":{},"码":{"docs":{},"块":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}},"时":{"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"执":{"docs":{},"行":{"docs":{},"完":{"docs":{},"后":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{},"函":{"docs":{},"数":{"docs":{},"打":{"docs":{},"印":{"docs":{},"该":{"docs":{},"数":{"docs":{},"字":{"docs":{},"的":{"docs":{},"描":{"docs":{},"述":{"docs":{},"。":{"docs":{},"在":{"docs":{},"这":{"docs":{},"个":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"数":{"docs":{},"字":{"5":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"接":{"docs":{},"下":{"docs":{},"来":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"通":{"docs":{},"过":{"docs":{},"使":{"docs":{},"用":{"docs":{},"可":{"docs":{},"选":{"docs":{},"绑":{"docs":{},"定":{"docs":{},"来":{"docs":{},"判":{"docs":{},"断":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"是":{"docs":{},"否":{"docs":{},"曾":{"docs":{},"经":{"docs":{},"被":{"docs":{},"设":{"docs":{},"置":{"docs":{},"过":{"docs":{},"值":{"docs":{},"。":{"docs":{},"因":{"docs":{},"为":{"docs":{},"是":{"docs":{},"可":{"docs":{},"选":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"缘":{"docs":{},"故":{"docs":{},",":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"隐":{"docs":{},"式":{"docs":{},"的":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"仅":{"docs":{},"仅":{"docs":{},"当":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"曾":{"docs":{},"被":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"当":{"docs":{},"使":{"docs":{},"用":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"或":{"docs":{},"者":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}},"分":{"docs":{},"支":{"docs":{},"仅":{"docs":{},"仅":{"docs":{},"包":{"docs":{},"含":{"docs":{},"注":{"docs":{},"释":{"docs":{},"时":{"docs":{},",":{"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":{},"你":{"docs":{},"总":{"docs":{},"是":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"来":{"docs":{},"判":{"docs":{},"断":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}},"语":{"docs":{},"句":{"docs":{},"不":{"docs":{},"会":{"docs":{},"同":{"docs":{},"时":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"和":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"。":{"docs":{},"相":{"docs":{},"反":{"docs":{},"的":{"docs":{},",":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"会":{"docs":{},"引":{"docs":{},"起":{"docs":{},"编":{"docs":{},"译":{"docs":{},"期":{"docs":{},"错":{"docs":{},"误":{"docs":{},":":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"包":{"docs":{},"含":{"docs":{},"默":{"docs":{},"认":{"docs":{},"块":{"docs":{},"。":{"docs":{},"这":{"docs":{},"是":{"docs":{},"因":{"docs":{},"为":{"docs":{},"最":{"docs":{},"后":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"—":{"docs":{},"—":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}},"中":{"docs":{},"测":{"docs":{},"试":{"docs":{},"多":{"docs":{},"个":{"docs":{},"值":{"docs":{},"。":{"docs":{},"元":{"docs":{},"组":{"docs":{},"中":{"docs":{},"的":{"docs":{},"元":{"docs":{},"素":{"docs":{},"可":{"docs":{},"以":{"docs":{},"是":{"docs":{},"值":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"是":{"docs":{},"范":{"docs":{},"围":{"docs":{},"。":{"docs":{},"另":{"docs":{},"外":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"下":{"docs":{},"划":{"docs":{},"线":{"docs":{},"(":{"docs":{},"_":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.008438818565400843}}}}},"控":{"docs":{},"制":{"docs":{},"流":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"语":{"docs":{},"句":{"docs":{},"修":{"docs":{},"改":{"docs":{},",":{"docs":{},"请":{"docs":{},"参":{"docs":{},"考":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}},"模":{"docs":{},"式":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"的":{"docs":{},"顺":{"docs":{},"序":{"docs":{},"和":{"docs":{},"书":{"docs":{},"写":{"docs":{},"源":{"docs":{},"代":{"docs":{},"码":{"docs":{},"的":{"docs":{},"顺":{"docs":{},"序":{"docs":{},"保":{"docs":{},"持":{"docs":{},"一":{"docs":{},"致":{"docs":{},"。":{"docs":{},"因":{"docs":{},"此":{"docs":{},",":{"docs":{},"当":{"docs":{},"多":{"docs":{},"个":{"docs":{},"模":{"docs":{},"式":{"docs":{},"含":{"docs":{},"有":{"docs":{},"相":{"docs":{},"同":{"docs":{},"的":{"docs":{},"值":{"docs":{},"且":{"docs":{},"能":{"docs":{},"够":{"docs":{},"匹":{"docs":{},"配":{"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":{},"a":{"docs":{},"s":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"使":{"docs":{},"用":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}},"控":{"docs":{},"制":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"的":{"docs":{},"每":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"能":{"docs":{},"的":{"docs":{},"值":{"docs":{},"都":{"docs":{},"必":{"docs":{},"须":{"docs":{},"至":{"docs":{},"少":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"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":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"会":{"docs":{},"判":{"docs":{},"断":{"docs":{},"某":{"docs":{},"个":{"docs":{},"点":{"docs":{},"是":{"docs":{},"否":{"docs":{},"在":{"docs":{},"红":{"docs":{},"色":{"docs":{},"的":{"docs":{},"x":{"docs":{},"轴":{"docs":{},"上":{"docs":{},",":{"docs":{},"是":{"docs":{},"否":{"docs":{},"在":{"docs":{},"黄":{"docs":{},"色":{"docs":{},"i":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}},"绿":{"docs":{},"色":{"docs":{},"的":{"docs":{},"对":{"docs":{},"角":{"docs":{},"线":{"docs":{},"x":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}},"是":{"docs":{},"原":{"docs":{},"点":{"docs":{},"(":{"0":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}},"docs":{}}}}}}}}}}}},"尝":{"docs":{},"试":{"docs":{},"把":{"docs":{},"某":{"docs":{},"个":{"docs":{},"值":{"docs":{},"与":{"docs":{},"若":{"docs":{},"干":{"docs":{},"个":{"docs":{},"模":{"docs":{},"式":{"docs":{},"(":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"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":{},"当":{"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":{},"i":{"docs":{},"f":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"完":{"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":{},"a":{"docs":{},"s":{"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":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"默":{"docs":{},"认":{"docs":{},"(":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"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":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"全":{"docs":{},"面":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"忽":{"docs":{},"略":{"docs":{},"了":{"docs":{},".":{"docs":{},"w":{"docs":{},"e":{"docs":{},"s":{"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":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"来":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"模":{"docs":{},"式":{"docs":{},"和":{"docs":{},"a":{"docs":{},"s":{"docs":{},"模":{"docs":{},"式":{"docs":{},"值":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},",":{"docs":{},"请":{"docs":{},"参":{"docs":{},"阅":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}}}}}}}}}}}}}}}}}}}}}},"包":{"docs":{},"含":{"docs":{},"关":{"docs":{},"联":{"docs":{},"值":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"案":{"docs":{},"例":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},",":{"docs":{},"请":{"docs":{},"参":{"docs":{},"阅":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}}}}}}}}}}}}}}}}}}}}}}}}}},"检":{"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"分":{"docs":{},"支":{"docs":{},"代":{"docs":{},"码":{"docs":{},"中":{"docs":{},"提":{"docs":{},"取":{"docs":{},"每":{"docs":{},"个":{"docs":{},"关":{"docs":{},"联":{"docs":{},"值":{"docs":{},"作":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"常":{"docs":{},"量":{"docs":{},"(":{"docs":{},"用":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"前":{"docs":{},"缀":{"docs":{},")":{"docs":{},"或":{"docs":{},"者":{"docs":{},"作":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"变":{"docs":{},"量":{"docs":{},"(":{"docs":{},"用":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"都":{"docs":{},"由":{"docs":{},"多":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"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":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{},"强":{"docs":{},"制":{"docs":{},"形":{"docs":{},"式":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"检":{"docs":{},"查":{"docs":{},"操":{"docs":{},"作":{"docs":{},"符":{"docs":{},"(":{"docs":{},"a":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}}},"控":{"docs":{},"制":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.005698005698005698}}}}}}}}}}}}}}}},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"包":{"docs":{},"含":{"docs":{},"默":{"docs":{},"认":{"docs":{},"(":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},")":{"docs":{},"块":{"docs":{},",":{"docs":{},"只":{"docs":{},"有":{"docs":{},"其":{"docs":{},"它":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"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":{},"行":{"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"前":{"docs":{},"面":{"docs":{},"加":{"docs":{},"上":{"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":{},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"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":{},"制":{"docs":{},"权":{"docs":{},"传":{"docs":{},"递":{"docs":{},"给":{"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":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00411522633744856},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.017094017094017096}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.008547008547008548}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.005979073243647235}},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174}},"s":{"docs":{},"(":{"docs":{},"&":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174}}}}}}}},"函":{"docs":{},"数":{"docs":{},"仅":{"docs":{},"仅":{"docs":{},"交":{"docs":{},"换":{"docs":{},"a":{"docs":{},"与":{"docs":{},"b":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"该":{"docs":{},"函":{"docs":{},"数":{"docs":{},"先":{"docs":{},"将":{"docs":{},"a":{"docs":{},"的":{"docs":{},"值":{"docs":{},"存":{"docs":{},"到":{"docs":{},"一":{"docs":{},"个":{"docs":{},"暂":{"docs":{},"时":{"docs":{},"常":{"docs":{},"量":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"a":{"docs":{},"中":{"docs":{},",":{"docs":{},"然":{"docs":{},"后":{"docs":{},"将":{"docs":{},"b":{"docs":{},"的":{"docs":{},"值":{"docs":{},"赋":{"docs":{},"给":{"docs":{},"a":{"docs":{},",":{"docs":{},"最":{"docs":{},"后":{"docs":{},"将":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"a":{"docs":{},"幅":{"docs":{},"值":{"docs":{},"给":{"docs":{},"b":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"并":{"docs":{},"没":{"docs":{},"有":{"docs":{},"定":{"docs":{},"义":{"docs":{},"任":{"docs":{},"何":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},",":{"docs":{},"但":{"docs":{},"仍":{"docs":{},"然":{"docs":{},"修":{"docs":{},"改":{"docs":{},"了":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"和":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"有":{"docs":{},"两":{"docs":{},"个":{"docs":{},"分":{"docs":{},"别":{"docs":{},"叫":{"docs":{},"做":{"docs":{},"a":{"docs":{},"和":{"docs":{},"b":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"交":{"docs":{},"换":{"docs":{},"b":{"docs":{},"的":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"到":{"docs":{},"a":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"交":{"docs":{},"换":{"docs":{},"a":{"docs":{},"的":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"到":{"docs":{},"b":{"docs":{},",":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"调":{"docs":{},"用":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"交":{"docs":{},"换":{"docs":{},"两":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"非":{"docs":{},"常":{"docs":{},"有":{"docs":{},"用":{"docs":{},"的":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"它":{"docs":{},"只":{"docs":{},"能":{"docs":{},"交":{"docs":{},"换":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"值":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"想":{"docs":{},"要":{"docs":{},"交":{"docs":{},"换":{"docs":{},"两":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"或":{"docs":{},"者":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"交":{"docs":{},"换":{"docs":{},"两":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}},"和":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}},"函":{"docs":{},"数":{"docs":{},"主":{"docs":{},"题":{"docs":{},"都":{"docs":{},"是":{"docs":{},"相":{"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":{},"t":{"docs":{},"、":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"和":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174}},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"&":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}},"<":{"docs":{},"t":{"docs":{},">":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174}}}}}}}}}}},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"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":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"中":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"a":{"docs":{},"和":{"docs":{},"b":{"docs":{},")":{"docs":{},",":{"docs":{},"或":{"docs":{},"作":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"返":{"docs":{},"回":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"或":{"docs":{},"用":{"docs":{},"作":{"docs":{},"函":{"docs":{},"数":{"docs":{},"主":{"docs":{},"体":{"docs":{},"中":{"docs":{},"的":{"docs":{},"注":{"docs":{},"释":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"在":{"docs":{},"这":{"docs":{},"种":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},",":{"docs":{},"被":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"所":{"docs":{},"代":{"docs":{},"表":{"docs":{},"的":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"docs":{},"不":{"docs":{},"管":{"docs":{},"函":{"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":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"当":{"docs":{},"函":{"docs":{},"数":{"docs":{},"第":{"docs":{},"一":{"docs":{},"次":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},",":{"docs":{},"t":{"docs":{},"被":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"替":{"docs":{},"换":{"docs":{},",":{"docs":{},"第":{"docs":{},"二":{"docs":{},"次":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},",":{"docs":{},"被":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"主":{"docs":{},"体":{"docs":{},"和":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"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":{},"同":{"docs":{},"于":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}},"除":{"docs":{},"了":{"docs":{},"只":{"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":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"函":{"docs":{},"数":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},"。":{"docs":{},"每":{"docs":{},"次":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"泛":{"docs":{},"型":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"或":{"docs":{},"一":{"docs":{},"个":{"docs":{},"存":{"docs":{},"储":{"docs":{},"单":{"docs":{},"一":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"集":{"docs":{},",":{"docs":{},"如":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},")":{"docs":{},",":{"docs":{},"通":{"docs":{},"常":{"docs":{},"用":{"docs":{},"一":{"docs":{},"单":{"docs":{},"个":{"docs":{},"字":{"docs":{},"母":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"w":{"docs":{},"i":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"k":{"docs":{},"e":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"都":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.015228426395939087},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.004484304932735426},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.006535947712418301}},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}}}}},"-":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"-":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.015503875968992248},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}},"y":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"d":{"docs":{},"b":{"docs":{},"y":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"a":{"docs":{},"v":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"依":{"docs":{},"然":{"docs":{},"返":{"docs":{},"回":{"docs":{},"了":{"docs":{},"值":{"docs":{},"。":{"docs":{},"没":{"docs":{},"有":{"docs":{},"定":{"docs":{},"义":{"docs":{},"返":{"docs":{},"回":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"docs":{},"特":{"docs":{},"殊":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"叫":{"docs":{},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{},"。":{"docs":{},"它":{"docs":{},"其":{"docs":{},"实":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"空":{"docs":{},"的":{"docs":{},"元":{"docs":{},"组":{"docs":{},"(":{"docs":{},"t":{"docs":{},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"(":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"(":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}},"。":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"展":{"docs":{},"示":{"docs":{},"的":{"docs":{},"是":{"docs":{},"用":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"和":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"时":{"docs":{},",":{"docs":{},"在":{"docs":{},"圆":{"docs":{},"括":{"docs":{},"号":{"docs":{},"中":{"docs":{},"传":{"docs":{},"给":{"docs":{},"它":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"实":{"docs":{},"参":{"docs":{},"。":{"docs":{},"因":{"docs":{},"为":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"s":{"docs":{},"a":{"docs":{},"y":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"可":{"docs":{},"以":{"docs":{},"被":{"docs":{},"包":{"docs":{},"含":{"docs":{},"在":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"另":{"docs":{},"一":{"docs":{},"个":{"docs":{},"版":{"docs":{},"本":{"docs":{},",":{"docs":{},"叫":{"docs":{},"w":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"g":{"docs":{},"o":{"docs":{},"o":{"docs":{},"d":{"docs":{},"b":{"docs":{},"y":{"docs":{},"e":{"docs":{},",":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"直":{"docs":{},"接":{"docs":{},"输":{"docs":{},"出":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},"体":{"docs":{},"中":{"docs":{},",":{"docs":{},"先":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"名":{"docs":{},"为":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"常":{"docs":{},"量":{"docs":{},",":{"docs":{},"同":{"docs":{},"时":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"了":{"docs":{},"给":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"简":{"docs":{},"单":{"docs":{},"问":{"docs":{},"候":{"docs":{},"消":{"docs":{},"息":{"docs":{},"。":{"docs":{},"然":{"docs":{},"后":{"docs":{},"用":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"把":{"docs":{},"这":{"docs":{},"个":{"docs":{},"问":{"docs":{},"候":{"docs":{},"返":{"docs":{},"回":{"docs":{},"出":{"docs":{},"去":{"docs":{},"。":{"docs":{},"一":{"docs":{},"旦":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"e":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.006825938566552901},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}},"t":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.006825938566552901}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}},"p":{"docs":{},"e":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}},"t":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848}}}}},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.2620493541546173},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}},"r":{"docs":{},"f":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.004604051565377533}}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.02631578947368421},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}},".":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.056910569105691054},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0019223375624759708}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}}}}}},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}},"m":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}},"l":{"docs":{},"f":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.004700352526439483},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.8927014641779367},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.010101010101010102},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.02586206896551724},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0037593984962406013},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.2977745872218234},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.004801097393689987}},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.020202020202020204},"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}},"e":{"docs":{},")":{"docs":{},">":{"docs":{},"\\":{"docs":{},"(":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},")":{"docs":{},"<":{"docs":{},"/":{"docs":{},"\\":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00404040404040404}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.006060606060606061}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"中":{"docs":{},"调":{"docs":{},"用":{"docs":{},"了":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"某":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"例":{"docs":{},"如":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}},"r":{"docs":{},"i":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}},"x":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{},"u":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00808080808080808}}}}},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}}}}}},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}},"e":{"docs":{},"a":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}},"n":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}}}},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174}}}}}}}}}},"a":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}},"被":{"docs":{},"用":{"docs":{},"来":{"docs":{},"区":{"docs":{},"别":{"docs":{},"实":{"docs":{},"例":{"docs":{},"变":{"docs":{},"量":{"docs":{},"。":{"docs":{},"当":{"docs":{},"你":{"docs":{},"创":{"docs":{},"建":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},",":{"docs":{},"像":{"docs":{},"传":{"docs":{},"入":{"docs":{},"函":{"docs":{},"数":{"docs":{},"参":{"docs":{},"数":{"docs":{},"一":{"docs":{},"样":{"docs":{},"给":{"docs":{},"类":{"docs":{},"传":{"docs":{},"入":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"的":{"docs":{},"参":{"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"。":{"docs":{},"不":{"docs":{},"论":{"docs":{},"何":{"docs":{},"时":{"docs":{},",":{"docs":{},"在":{"docs":{},"一":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"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":{},"e":{"docs":{},"l":{"docs":{},"f":{"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":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"已":{"docs":{},"经":{"docs":{},"示":{"docs":{},"范":{"docs":{},"了":{"docs":{},":":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"的":{"docs":{},"三":{"docs":{},"个":{"docs":{},"实":{"docs":{},"例":{"docs":{},"方":{"docs":{},"法":{"docs":{},"中":{"docs":{},"都":{"docs":{},"使":{"docs":{},"用":{"docs":{},"的":{"docs":{},"是":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"一":{"docs":{},"个":{"docs":{},"全":{"docs":{},"新":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"上":{"docs":{},"面":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}},"前":{"docs":{},"缀":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"就":{"docs":{},"认":{"docs":{},"为":{"docs":{},"两":{"docs":{},"次":{"docs":{},"使":{"docs":{},"用":{"docs":{},"的":{"docs":{},"x":{"docs":{},"都":{"docs":{},"指":{"docs":{},"的":{"docs":{},"是":{"docs":{},"名":{"docs":{},"称":{"docs":{},"为":{"docs":{},"x":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}},"属":{"docs":{},"性":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}},"消":{"docs":{},"除":{"docs":{},"方":{"docs":{},"法":{"docs":{},"参":{"docs":{},"数":{"docs":{},"x":{"docs":{},"和":{"docs":{},"实":{"docs":{},"例":{"docs":{},"属":{"docs":{},"性":{"docs":{},"x":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}},"赋":{"docs":{},"值":{"docs":{},"(":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}},",":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"完":{"docs":{},"全":{"docs":{},"等":{"docs":{},"同":{"docs":{},"于":{"docs":{},"该":{"docs":{},"实":{"docs":{},"例":{"docs":{},"本":{"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":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"它":{"docs":{},"只":{"docs":{},"占":{"docs":{},"有":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}},"并":{"docs":{},"不":{"docs":{},"会":{"docs":{},"持":{"docs":{},"有":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"将":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},",":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"]":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"“":{"docs":{},"用":{"docs":{},"无":{"docs":{},"主":{"docs":{},"引":{"docs":{},"用":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"来":{"docs":{},"占":{"docs":{},"有":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}},"后":{"docs":{},"是":{"docs":{},"如":{"docs":{},"何":{"docs":{},"产":{"docs":{},"生":{"docs":{},"一":{"docs":{},"个":{"docs":{},"循":{"docs":{},"环":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"的":{"docs":{},"。":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"叫":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"类":{"docs":{},",":{"docs":{},"用":{"docs":{},"一":{"docs":{},"种":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"模":{"docs":{},"型":{"docs":{},"表":{"docs":{},"示":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"或":{"docs":{},"其":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},"必":{"docs":{},"须":{"docs":{},"将":{"docs":{},"该":{"docs":{},"实":{"docs":{},"例":{"docs":{},"方":{"docs":{},"法":{"docs":{},"标":{"docs":{},"注":{"docs":{},"为":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"来":{"docs":{},"获":{"docs":{},"取":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"比":{"docs":{},"如":{"docs":{},",":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"返":{"docs":{},"回":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"本":{"docs":{},"身":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"同":{"docs":{},"样":{"docs":{},",":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},".":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"返":{"docs":{},"回":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"本":{"docs":{},"身":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"运":{"docs":{},"行":{"docs":{},"时":{"docs":{},"适":{"docs":{},"配":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"的":{"docs":{},"某":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"还":{"docs":{},"可":{"docs":{},"以":{"docs":{},"对":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"使":{"docs":{},"用":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.005025125628140704},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.003429355281207133}}}}}}}}}},"[":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}},"­":{"docs":{},".":{"docs":{},"­":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}},"[":{"docs":{},"­":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}},"等":{"docs":{},"同":{"docs":{},"于":{"docs":{},"当":{"docs":{},"前":{"docs":{},"的":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.004700352526439483}},"e":{"docs":{},".":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"6":{"docs":{},":":{"0":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}},"和":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007168458781362007}}}}}}}}}}}}}}}}},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.005076142131979695},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.009398496240601503},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0037593984962406013},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.005382545174932718},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":5.011278195488722},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}},",":{"docs":{},"那":{"docs":{},"么":{"docs":{},"你":{"docs":{},"也":{"docs":{},"一":{"docs":{},"定":{"docs":{},"要":{"docs":{},"提":{"docs":{},"供":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"不":{"docs":{},"想":{"docs":{},"在":{"docs":{},"重":{"docs":{},"写":{"docs":{},"版":{"docs":{},"本":{"docs":{},"中":{"docs":{},"的":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"里":{"docs":{},"修":{"docs":{},"改":{"docs":{},"继":{"docs":{},"承":{"docs":{},"来":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"值":{"docs":{},",":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"直":{"docs":{},"接":{"docs":{},"返":{"docs":{},"回":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"来":{"docs":{},"返":{"docs":{},"回":{"docs":{},"继":{"docs":{},"承":{"docs":{},"来":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"正":{"docs":{},"如":{"docs":{},"下":{"docs":{},"面":{"docs":{},"的":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"l":{"docs":{},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"与":{"docs":{},"属":{"docs":{},"性":{"docs":{},"值":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"副":{"docs":{},"本":{"docs":{},"合":{"docs":{},"成":{"docs":{},",":{"docs":{},"由":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"y":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"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":{},"循":{"docs":{},"n":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_71":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_71","tf":0.08333333333333333},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}},"e":{"docs":{},"­":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_71":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_71","tf":0.08333333333333333}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0027434842249657062}}}}}}}}},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},")":{"docs":{},"被":{"docs":{},"为":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"类":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},"实":{"docs":{},"现":{"docs":{},".":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"游":{"docs":{},"戏":{"docs":{},"逻":{"docs":{},"辑":{"docs":{},"被":{"docs":{},"转":{"docs":{},"移":{"docs":{},"到":{"docs":{},"了":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}},"n":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"h":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.007050528789659225}},".":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}},"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}},"类":{"docs":{},"缺":{"docs":{},"少":{"docs":{},"了":{"docs":{},"一":{"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.01015228426395939}}}}},"o":{"docs":{},"p":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.011135857461024499}},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.031180400890868598}},"[":{"0":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0066815144766146995}}},"1":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"4":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"6":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}},"docs":{}}}}},"docs":{}},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"(":{"0":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}},"docs":{}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}},"变":{"docs":{},"量":{"docs":{},"被":{"docs":{},"声":{"docs":{},"明":{"docs":{},"为":{"docs":{},"“":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"值":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"数":{"docs":{},"组":{"docs":{},"“":{"docs":{},",":{"docs":{},"记":{"docs":{},"作":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}},"数":{"docs":{},"组":{"docs":{},"由":{"docs":{},"两":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"e":{"docs":{},"g":{"docs":{},"g":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}},"被":{"docs":{},"声":{"docs":{},"明":{"docs":{},"为":{"docs":{},"变":{"docs":{},"量":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"创":{"docs":{},"建":{"docs":{},")":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"常":{"docs":{},"量":{"docs":{},"(":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"现":{"docs":{},"在":{"docs":{},"只":{"docs":{},"有":{"5":{"docs":{},"项":{"docs":{},",":{"docs":{},"不":{"docs":{},"包":{"docs":{},"括":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"s":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}}}},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.4375915974596971}}}}}},"e":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}},"e":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}},"w":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.487724501565332},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.004020100502512563}},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002306805074971165}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.004700352526439483},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.012925969447708578}}}}}}}},"s":{"docs":{},")":{"docs":{},"-":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.01527614571092832}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"(":{"1":{"7":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}},"docs":{}},"3":{"docs":{},".":{"1":{"4":{"1":{"5":{"9":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"<":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}},"f":{"docs":{},"i":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}},"c":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}},"l":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}}}}}}},"o":{"docs":{},"n":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0037593984962406013}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}},"s":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}},"x":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.011135857461024499},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.004454342984409799}}}}}}},"t":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}},"z":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.011278195488721804},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.028735632183908046},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}},"(":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.005747126436781609}}}}}}}},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.007518796992481203},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.007518796992481203},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}},"封":{"docs":{},"装":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},"和":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}},"e":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.4375915974596971}}}}}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}},"w":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}},"g":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.4854176964903608},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.006696428571428571},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}},"e":{"docs":{},"d":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0019223375624759708}}}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"0":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"docs":{}},"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.005076142131979695},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.005141388174807198},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.004020100502512563}},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00404040404040404}}}}}}},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013}}}}}}},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.003015075376884422}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}},"[":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}},"中":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}},"和":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"。":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"参":{"docs":{},"数":{"docs":{},"是":{"docs":{},"类":{"docs":{},"型":{"docs":{},"c":{"1":{"docs":{},",":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"参":{"docs":{},"数":{"docs":{},"是":{"docs":{},"类":{"docs":{},"型":{"docs":{},"c":{"2":{"docs":{},"。":{"docs":{},"c":{"1":{"docs":{},"和":{"docs":{},"c":{"2":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}},"docs":{}}}},"docs":{}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}},"包":{"docs":{},"含":{"docs":{},"相":{"docs":{},"同":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"1":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}},"docs":{}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"的":{"docs":{},"重":{"docs":{},"写":{"docs":{},"实":{"docs":{},"现":{"docs":{},"中":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"(":{"docs":{},")":{"docs":{},"来":{"docs":{},"调":{"docs":{},"用":{"docs":{},"超":{"docs":{},"类":{"docs":{},"版":{"docs":{},"本":{"docs":{},"的":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"的":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"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":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"来":{"docs":{},"访":{"docs":{},"问":{"docs":{},"超":{"docs":{},"类":{"docs":{},"版":{"docs":{},"本":{"docs":{},"的":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.005012531328320802}},">":{"docs":{},"(":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.005141388174807198}},".":{"1":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192}}},"docs":{},"i":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"o":{"docs":{},"f":{"docs":{},"x":{"docs":{},"(":{"1":{"docs":{},".":{"0":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"b":{"docs":{},"y":{"docs":{},"x":{"docs":{},"(":{"2":{"docs":{},".":{"0":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}},"docs":{}}},"docs":{}}}}}}}}},"x":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.017064846416382253}}}}}}}},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.004020100502512563}}}}}}}},"b":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.011695906432748537},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.005025125628140704}}}}}}}}},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174}},"i":{"docs":{},"n":{"docs":{},"g":{"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":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}},"e":{"docs":{},"等":{"docs":{},")":{"docs":{},",":{"docs":{},"以":{"docs":{},"便":{"docs":{},"符":{"docs":{},"合":{"docs":{},"标":{"docs":{},"准":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"o":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.012690355329949238}},"e":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.007614213197969543}}}}}}}}}}}}}}}}}}},"中":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},"这":{"docs":{},"个":{"docs":{},"子":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"以":{"docs":{},"上":{"docs":{},"操":{"docs":{},"作":{"docs":{},"并":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"从":{"docs":{},"新":{"docs":{},"设":{"docs":{},"置":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}},"e":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"标":{"docs":{},"识":{"docs":{},"符":{"docs":{},"模":{"docs":{},"式":{"docs":{},",":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"了":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"4":{"2":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"?":{"docs":{},"(":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"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":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.003952569169960474}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.008620689655172414},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.005025125628140704}},"e":{"docs":{},"(":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"被":{"docs":{},"指":{"docs":{},"定":{"docs":{},"为":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}},":":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.011135857461024499},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.004219409282700422},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.005747126436781609},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.007473841554559043}},"s":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"3":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}},"docs":{}}}}}}}}},"。":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}},"被":{"docs":{},"设":{"docs":{},"置":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"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":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}}},"s":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.008771929824561403},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.003015075376884422}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}},"a":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}},"x":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},"s":{"docs":{},"a":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0056179775280898875}},"e":{"docs":{},"(":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}},"e":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.007614213197969543}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}},"引":{"docs":{},"用":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"的":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"返":{"docs":{},"回":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},"的":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"0":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"[":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}},"都":{"docs":{},"被":{"docs":{},"声":{"docs":{},"明":{"docs":{},"为":{"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":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"[":{"0":{"docs":{},"]":{"docs":{},"是":{"docs":{},"指":{"docs":{},"第":{"0":{"docs":{},"个":{"docs":{},"元":{"docs":{},"素":{"docs":{},"“":{"docs":{},"a":{"docs":{},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}},"docs":{}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.005847953216374269}}}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"[":{"docs":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}},"u":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767}}}},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.011695906432748537},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.004020100502512563}}}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.46568148510014656}},"(":{"docs":{},"[":{"1":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.02247191011235955}}}}}},"函":{"docs":{},"数":{"docs":{},"当":{"docs":{},"排":{"docs":{},"序":{"docs":{},"结":{"docs":{},"束":{"docs":{},"后":{"docs":{},"传":{"docs":{},"入":{"docs":{},"的":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"排":{"docs":{},"在":{"docs":{},"第":{"docs":{},"二":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"前":{"docs":{},"面":{"docs":{},"还":{"docs":{},"是":{"docs":{},"后":{"docs":{},"面":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"值":{"docs":{},"出":{"docs":{},"现":{"docs":{},"在":{"docs":{},"第":{"docs":{},"二":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"值":{"docs":{},"前":{"docs":{},"面":{"docs":{},",":{"docs":{},"排":{"docs":{},"序":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"函":{"docs":{},"数":{"docs":{},"需":{"docs":{},"要":{"docs":{},"返":{"docs":{},"回":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"docs":{},"反":{"docs":{},"之":{"docs":{},"返":{"docs":{},"回":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"进":{"docs":{},"行":{"docs":{},"传":{"docs":{},"入":{"docs":{},"的":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}},"期":{"docs":{},"望":{"docs":{},"第":{"docs":{},"二":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"是":{"docs":{},"类":{"docs":{},"型":{"docs":{},"为":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"t":{"docs":{},"h":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.010238907849829351},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}},"r":{"docs":{},"c":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"n":{"docs":{},"g":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.02766798418972332}},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848}}}}}},".":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0047430830039525695}},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"计":{"docs":{},"算":{"docs":{},"数":{"docs":{},"组":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}},"检":{"docs":{},"查":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"是":{"docs":{},"否":{"docs":{},"为":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"在":{"docs":{},"循":{"docs":{},"环":{"docs":{},"末":{"docs":{},"尾":{"docs":{},",":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.016260162601626018}}}},"r":{"docs":{},"k":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}},")":{"docs":{},"(":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"2":{"0":{"docs":{},")":{"docs":{},"、":{"docs":{},"换":{"docs":{},"行":{"docs":{},"符":{"docs":{},"(":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.016597510373443983}},"l":{"docs":{},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.012448132780082987}},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"属":{"docs":{},"性":{"docs":{},"时":{"docs":{},",":{"docs":{},"属":{"docs":{},"性":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"实":{"docs":{},"现":{"docs":{},"会":{"docs":{},"去":{"docs":{},"检":{"docs":{},"查":{"docs":{},"新":{"docs":{},"值":{"docs":{},"与":{"docs":{},"限":{"docs":{},"制":{"docs":{},"值":{"4":{"0":{"docs":{},"m":{"docs":{},"p":{"docs":{},"h":{"docs":{},"的":{"docs":{},"大":{"docs":{},"小":{"docs":{},",":{"docs":{},"它":{"docs":{},"会":{"docs":{},"将":{"docs":{},"超":{"docs":{},"类":{"docs":{},"的":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"设":{"docs":{},"置":{"docs":{},"为":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"和":{"4":{"0":{"docs":{},".":{"0":{"docs":{},"中":{"docs":{},"较":{"docs":{},"小":{"docs":{},"的":{"docs":{},"那":{"docs":{},"个":{"docs":{},"。":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"值":{"docs":{},"哪":{"docs":{},"个":{"docs":{},"较":{"docs":{},"小":{"docs":{},"由":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"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":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"设":{"docs":{},"置":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"大":{"docs":{},"于":{"4":{"0":{"docs":{},"m":{"docs":{},"p":{"docs":{},"h":{"docs":{},"的":{"docs":{},"数":{"docs":{},",":{"docs":{},"然":{"docs":{},"后":{"docs":{},"打":{"docs":{},"印":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"函":{"docs":{},"数":{"docs":{},"的":{"docs":{},"输":{"docs":{},"出":{"docs":{},",":{"docs":{},"你":{"docs":{},"会":{"docs":{},"发":{"docs":{},"现":{"docs":{},"速":{"docs":{},"度":{"docs":{},"被":{"docs":{},"限":{"docs":{},"制":{"docs":{},"在":{"4":{"0":{"docs":{},"m":{"docs":{},"p":{"docs":{},"h":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},",":{"docs":{},"它":{"docs":{},"是":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"的":{"docs":{},"子":{"docs":{},"类":{"docs":{},"。":{"docs":{},"类":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"l":{"docs":{},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"表":{"docs":{},"示":{"docs":{},"安":{"docs":{},"装":{"docs":{},"了":{"docs":{},"限":{"docs":{},"速":{"docs":{},"装":{"docs":{},"置":{"docs":{},"的":{"docs":{},"车":{"docs":{},",":{"docs":{},"它":{"docs":{},"的":{"docs":{},"最":{"docs":{},"高":{"docs":{},"速":{"docs":{},"度":{"docs":{},"只":{"docs":{},"能":{"docs":{},"达":{"docs":{},"到":{"4":{"0":{"docs":{},"m":{"docs":{},"p":{"docs":{},"h":{"docs":{},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"重":{"docs":{},"写":{"docs":{},"继":{"docs":{},"承":{"docs":{},"来":{"docs":{},"的":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}},"f":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.003952569169960474},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.003015075376884422}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},",":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},",":{"docs":{},"和":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"替":{"docs":{},"换":{"docs":{},"为":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.011750881316098707},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.022099447513812154},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.012531328320802004}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.004700352526439483}}}}}}}}}}}}},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013}}}}}},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}},".":{"docs":{},"i":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}},"x":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}},"的":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"属":{"docs":{},"性":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"点":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"(":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},"来":{"docs":{},"访":{"docs":{},"问":{"docs":{},",":{"docs":{},"这":{"docs":{},"会":{"docs":{},"调":{"docs":{},"用":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"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":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"实":{"docs":{},"际":{"docs":{},"上":{"docs":{},"通":{"docs":{},"过":{"docs":{},"计":{"docs":{},"算":{"docs":{},"然":{"docs":{},"后":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"实":{"docs":{},"例":{"docs":{},"表":{"docs":{},"示":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"的":{"docs":{},"中":{"docs":{},"心":{"docs":{},"点":{"docs":{},"。":{"docs":{},"如":{"docs":{},"代":{"docs":{},"码":{"docs":{},"所":{"docs":{},"示":{"docs":{},",":{"docs":{},"它":{"docs":{},"正":{"docs":{},"确":{"docs":{},"返":{"docs":{},"回":{"docs":{},"了":{"docs":{},"中":{"docs":{},"心":{"docs":{},"点":{"docs":{},"(":{"5":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{},"原":{"docs":{},"点":{"docs":{},"是":{"docs":{},"(":{"0":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}},"docs":{}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767}}}}}},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848}}}}}},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013}},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}},"属":{"docs":{},"性":{"docs":{},"和":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"两":{"docs":{},"者":{"docs":{},"均":{"docs":{},"为":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{},"类":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"了":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"p":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}},"类":{"docs":{},"将":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"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":{},"为":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"的":{"docs":{},"必":{"docs":{},"备":{"docs":{},"属":{"docs":{},"性":{"docs":{},"和":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":1.674953959484346},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0102880658436214},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.1111111111111111}},"s":{"docs":{},"—":{"docs":{},"—":{"docs":{},"这":{"docs":{},"就":{"docs":{},"避":{"docs":{},"免":{"docs":{},"了":{"docs":{},"意":{"docs":{},"外":{"docs":{},"地":{"docs":{},"从":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}},")":{"docs":{},"之":{"docs":{},"后":{"docs":{},",":{"docs":{},"执":{"docs":{},"行":{"docs":{},"递":{"docs":{},"增":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}},",":{"docs":{},"然":{"docs":{},"后":{"docs":{},"转":{"docs":{},"到":{"docs":{},"第":{"1":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}},"2":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}},"docs":{}}}}}}}},"’":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}},"-":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.008547008547008548}}}}}}}}}}}}},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.025089605734767026}},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.005376344086021506}}}}},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036}}}}}}}}}},"i":{"docs":{},"c":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.011278195488721804},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.007712082262210797},"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.01775147928994083},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}},"来":{"docs":{},"定":{"docs":{},"义":{"docs":{},"值":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"类":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"来":{"docs":{},"为":{"docs":{},"类":{"docs":{},"(":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}},"c":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.007473841554559043}},"(":{"docs":{},"栈":{"docs":{},")":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"栈":{"docs":{},"是":{"docs":{},"一":{"docs":{},"系":{"docs":{},"列":{"docs":{},"值":{"docs":{},"域":{"docs":{},"的":{"docs":{},"集":{"docs":{},"合":{"docs":{},",":{"docs":{},"和":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"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":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"类":{"docs":{},"型":{"docs":{},"更":{"docs":{},"多":{"docs":{},"限":{"docs":{},"制":{"docs":{},"的":{"docs":{},"集":{"docs":{},"合":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"数":{"docs":{},"组":{"docs":{},"可":{"docs":{},"以":{"docs":{},"允":{"docs":{},"许":{"docs":{},"其":{"docs":{},"里":{"docs":{},"面":{"docs":{},"任":{"docs":{},"何":{"docs":{},"位":{"docs":{},"置":{"docs":{},"的":{"docs":{},"插":{"docs":{},"入":{"docs":{},"/":{"docs":{},"删":{"docs":{},"除":{"docs":{},"操":{"docs":{},"作":{"docs":{},",":{"docs":{},"而":{"docs":{},"栈":{"docs":{},",":{"docs":{},"只":{"docs":{},"允":{"docs":{},"许":{"docs":{},",":{"docs":{},"只":{"docs":{},"允":{"docs":{},"许":{"docs":{},"在":{"docs":{},"集":{"docs":{},"合":{"docs":{},"的":{"docs":{},"末":{"docs":{},"端":{"docs":{},"添":{"docs":{},"加":{"docs":{},"新":{"docs":{},"的":{"docs":{},"项":{"docs":{},"(":{"docs":{},"如":{"docs":{},"同":{"docs":{},"p":{"docs":{},"u":{"docs":{},"s":{"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":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174}}}}},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.004484304932735426}}}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},".":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}},"d":{"docs":{},"o":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174}}}},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174}}}},"u":{"docs":{},"n":{"docs":{},"o":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174}}}}}}}}}}}},"如":{"docs":{},"何":{"docs":{},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}},"单":{"docs":{},"例":{"docs":{},"来":{"docs":{},"存":{"docs":{},"储":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"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":{},"建":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"单":{"docs":{},"例":{"docs":{},",":{"docs":{},"并":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"包":{"docs":{},"含":{"docs":{},"三":{"docs":{},"个":{"docs":{},"同":{"docs":{},"栈":{"docs":{},"里":{"docs":{},"一":{"docs":{},"样":{"docs":{},"的":{"docs":{},"原":{"docs":{},"始":{"docs":{},"字":{"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":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"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":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"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":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"函":{"docs":{},"数":{"docs":{},"正":{"docs":{},"确":{"docs":{},"的":{"docs":{},"显":{"docs":{},"示":{"docs":{},"了":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"容":{"docs":{},"器":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"同":{"docs":{},"创":{"docs":{},"建":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}},"是":{"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":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"版":{"docs":{},"本":{"docs":{},"基":{"docs":{},"本":{"docs":{},"上":{"docs":{},"和":{"docs":{},"非":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"版":{"docs":{},"本":{"docs":{},"相":{"docs":{},"同":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"版":{"docs":{},"本":{"docs":{},"的":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"为":{"docs":{},"t":{"docs":{},"代":{"docs":{},"替":{"docs":{},"了":{"docs":{},"实":{"docs":{},"际":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"这":{"docs":{},"种":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"包":{"docs":{},"含":{"docs":{},"在":{"docs":{},"一":{"docs":{},"对":{"docs":{},"尖":{"docs":{},"括":{"docs":{},"号":{"docs":{},"里":{"docs":{},"(":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"的":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"方":{"docs":{},"法":{"docs":{},"和":{"docs":{},"下":{"docs":{},"标":{"docs":{},"保":{"docs":{},"证":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"可":{"docs":{},"以":{"docs":{},"推":{"docs":{},"断":{"docs":{},"出":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"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":{},"何":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"当":{"docs":{},"作":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"1":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.007518796992481203}}},"2":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.005639097744360902}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0282021151586369},"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.012448132780082987},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.025089605734767026},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":2.3603238866396765},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.013363028953229399},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.05063291139240506},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.06741573033707865},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.005141388174807198},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.05656565656565657},"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.019867549668874173},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.011857707509881422},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.018796992481203006},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.01046337817638266},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.008771929824561403},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.008040201005025126},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.008928571428571428},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.012658227848101266}},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}},")":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036}}}}}}}},"”":{"docs":{},"的":{"docs":{},"意":{"docs":{},"思":{"docs":{},"是":{"docs":{},"“":{"docs":{},"可":{"docs":{},"以":{"docs":{},"存":{"docs":{},"储":{"docs":{},"任":{"docs":{},"意":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"值":{"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":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"隐":{"docs":{},"式":{"docs":{},"解":{"docs":{},"析":{"docs":{},"可":{"docs":{},"选":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"叫":{"docs":{},"做":{"docs":{},"t":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"作":{"docs":{},"用":{"docs":{},"是":{"docs":{},"将":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{},"转":{"docs":{},"换":{"docs":{},"成":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"1":{"2":{"3":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"可":{"docs":{},"以":{"docs":{},"被":{"docs":{},"转":{"docs":{},"换":{"docs":{},"成":{"docs":{},"数":{"docs":{},"字":{"1":{"2":{"3":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"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":{},"t":{"docs":{},"型":{"docs":{},",":{"docs":{},"值":{"docs":{},"是":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"键":{"docs":{},"值":{"docs":{},"对":{"docs":{},"。":{"docs":{},"他":{"docs":{},"们":{"docs":{},"对":{"docs":{},"应":{"docs":{},"a":{"docs":{},"i":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},"变":{"docs":{},"量":{"docs":{},"声":{"docs":{},"明":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"一":{"docs":{},"个":{"docs":{},"只":{"docs":{},"有":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"键":{"docs":{},"和":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"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":{},"个":{"docs":{},"初":{"docs":{},"始":{"docs":{},"数":{"docs":{},"据":{"docs":{},"项":{"docs":{},"的":{"docs":{},"a":{"docs":{},"i":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"变":{"docs":{},"量":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"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":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"e":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"当":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"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":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"后":{"docs":{},",":{"docs":{},"来":{"docs":{},"表":{"docs":{},"明":{"docs":{},"这":{"docs":{},"个":{"docs":{},"是":{"docs":{},"数":{"docs":{},"字":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"质":{"docs":{},"数":{"docs":{},"。":{"docs":{},"然":{"docs":{},"后":{"docs":{},"它":{"docs":{},"使":{"docs":{},"用":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"来":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"落":{"docs":{},"入":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"到":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"分":{"docs":{},"支":{"docs":{},"中":{"docs":{},"。":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"分":{"docs":{},"支":{"docs":{},"添":{"docs":{},"加":{"docs":{},"一":{"docs":{},"段":{"docs":{},"额":{"docs":{},"外":{"docs":{},"的":{"docs":{},"文":{"docs":{},"字":{"docs":{},"在":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"的":{"docs":{},"最":{"docs":{},"后":{"docs":{},",":{"docs":{},"至":{"docs":{},"此":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"可":{"docs":{},"以":{"docs":{},"理":{"docs":{},"解":{"docs":{},"为":{"docs":{},"“":{"docs":{},"一":{"docs":{},"个":{"docs":{},"没":{"docs":{},"有":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"返":{"docs":{},"回":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"你":{"docs":{},"绝":{"docs":{},"对":{"docs":{},"不":{"docs":{},"可":{"docs":{},"能":{"docs":{},"不":{"docs":{},"小":{"docs":{},"心":{"docs":{},"传":{"docs":{},"进":{"docs":{},"去":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}},"名":{"docs":{},"字":{"docs":{},"为":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"安":{"docs":{},"全":{"docs":{},"会":{"docs":{},"阻":{"docs":{},"止":{"docs":{},"你":{"docs":{},"不":{"docs":{},"小":{"docs":{},"心":{"docs":{},"传":{"docs":{},"入":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}},"和":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},")":{"docs":{},"。":{"docs":{},"相":{"docs":{},"反":{"docs":{},"的":{"docs":{},",":{"docs":{},"请":{"docs":{},"使":{"docs":{},"用":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"这":{"docs":{},"种":{"docs":{},"方":{"docs":{},"式":{"docs":{},"为":{"docs":{},"属":{"docs":{},"性":{"docs":{},"和":{"docs":{},"方":{"docs":{},"法":{"docs":{},"命":{"docs":{},"名":{"docs":{},"(":{"docs":{},"如":{"docs":{},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"和":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}},"s":{"docs":{},")":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.2564102564102564}}}}}}}}}}}}}},"t":{"docs":{},"f":{"docs":{},"-":{"8":{"docs":{},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{},"-":{"1":{"6":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.2564102564102564}}}}}}}}},"docs":{}},"docs":{}}}}}},"docs":{}}}}}}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},",":{"docs":{},"它":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"这":{"docs":{},"个":{"docs":{},"字":{"docs":{},"典":{"docs":{},"的":{"docs":{},"键":{"docs":{},"和":{"docs":{},"值":{"docs":{},"都":{"docs":{},"是":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"a":{"docs":{},"i":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}},"[":{"docs":{},"]":{"docs":{},"是":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}},"一":{"docs":{},"种":{"docs":{},"数":{"docs":{},"据":{"docs":{},"结":{"docs":{},"构":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"只":{"docs":{},"有":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}},"值":{"docs":{},"。":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"了":{"docs":{},"该":{"docs":{},"数":{"docs":{},"组":{"docs":{},"的":{"docs":{},"变":{"docs":{},"量":{"docs":{},"声":{"docs":{},"明":{"docs":{},"(":{"docs":{},"只":{"docs":{},"能":{"docs":{},"包":{"docs":{},"含":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"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":{},"是":{"docs":{},"允":{"docs":{},"许":{"docs":{},"用":{"docs":{},"两":{"docs":{},"个":{"docs":{},"初":{"docs":{},"始":{"docs":{},"项":{"docs":{},"来":{"docs":{},"构":{"docs":{},"造":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"左":{"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":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"中":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"然":{"docs":{},"后":{"docs":{},"将":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"多":{"docs":{},"的":{"docs":{},"填":{"docs":{},"充":{"docs":{},"(":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},")":{"docs":{},"字":{"docs":{},"符":{"docs":{},"填":{"docs":{},"充":{"docs":{},"到":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"左":{"docs":{},"边":{"docs":{},",":{"docs":{},"并":{"docs":{},"返":{"docs":{},"回":{"docs":{},"结":{"docs":{},"果":{"docs":{},"。":{"docs":{},"它":{"docs":{},"使":{"docs":{},"用":{"docs":{},"了":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}},"?":{"docs":{},"。":{"docs":{},"如":{"docs":{},"上":{"docs":{},"所":{"docs":{},"述":{"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":{},"t":{"docs":{},"r":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174}}}}}}},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}},"c":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}},"l":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.005076142131979695},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.016917293233082706},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.010282776349614395},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.01098901098901099},"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.005917159763313609},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.016260162601626018},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.008620689655172414},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.005012531328320802},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.005979073243647235},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"u":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.007614213197969543},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0034602076124567475},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}},"-":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013},"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.019867549668874173}},"属":{"docs":{},"性":{"docs":{},"值":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"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":{},"层":{"docs":{},"可":{"docs":{},"选":{"docs":{},"链":{"docs":{},",":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"?":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"?":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"的":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"类":{"docs":{},"型":{"docs":{},"也":{"docs":{},"是":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}},"a":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.012690355329949238},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}},"r":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}},"e":{"docs":{},"p":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.007518796992481203}},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.004219409282700422}},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.004219409282700422}},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813}}}}}}}},"和":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"。":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"函":{"docs":{},"数":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"比":{"docs":{},"输":{"docs":{},"入":{"docs":{},"值":{"docs":{},"大":{"docs":{},"一":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"函":{"docs":{},"数":{"docs":{},"返":{"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":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.005639097744360902}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.005639097744360902}}}}}}}}}}}},"类":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"s":{"docs":{},",":{"docs":{},"它":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"存":{"docs":{},"储":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"包":{"docs":{},"含":{"docs":{},"w":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002691272587466359}},"d":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013}}}}}}}}}}}}}}}},"a":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"u":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}}},"e":{"docs":{},"d":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}},"h":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002306805074971165}}}},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.06504065040650407}},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}}}}}}},"添":{"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"来":{"docs":{},"描":{"docs":{},"述":{"docs":{},"扑":{"docs":{},"克":{"docs":{},"牌":{"docs":{},"的":{"docs":{},"四":{"docs":{},"种":{"docs":{},"花":{"docs":{},"色":{"docs":{},",":{"docs":{},"并":{"docs":{},"分":{"docs":{},"别":{"docs":{},"用":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}},"o":{"docs":{},"f":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"(":{"4":{"2":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}},"n":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192}}}}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.012448132780082987},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}}}},"`":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.008298755186721992}}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.008298755186721992}}}}},"`":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}},"[":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}},"`":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.003015075376884422}},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}},"e":{"docs":{},"最":{"docs":{},"接":{"docs":{},"近":{"docs":{},"的":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}},"­":{"docs":{},".":{"docs":{},"­":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}},"[":{"docs":{},"­":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}},"b":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.008298755186721992},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.007905138339920948},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}},"i":{"docs":{},"n":{"docs":{},"g":{"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":{},"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":{},"写":{"docs":{},"属":{"docs":{},"性":{"docs":{},"重":{"docs":{},"写":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"和":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"重":{"docs":{},"写":{"docs":{},"属":{"docs":{},"性":{"docs":{},"观":{"docs":{},"察":{"docs":{},"器":{"docs":{},"(":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":5}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"变":{"docs":{},"成":{"docs":{},"父":{"docs":{},"类":{"docs":{},"(":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"超":{"docs":{},"类":{"docs":{},"(":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":10.005494505494505},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.29174443646805454},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}},")":{"docs":{},"去":{"docs":{},"替":{"docs":{},"换":{"docs":{},"这":{"docs":{},"一":{"docs":{},"范":{"docs":{},"围":{"docs":{},"内":{"docs":{},"的":{"docs":{},"元":{"docs":{},"素":{"docs":{},"。":{"docs":{},"只":{"docs":{},"有":{"docs":{},"当":{"docs":{},"数":{"docs":{},"组":{"docs":{},"拷":{"docs":{},"贝":{"docs":{},"确":{"docs":{},"要":{"docs":{},"发":{"docs":{},"生":{"docs":{},"时":{"docs":{},",":{"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":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"i":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.004484304932735426}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.016483516483516484}}}}}}},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}},"d":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}}}}}}},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},",":{"docs":{},"显":{"docs":{},"式":{"docs":{},"声":{"docs":{},"明":{"docs":{},"入":{"docs":{},"参":{"docs":{},"(":{"docs":{},"一":{"docs":{},"个":{"docs":{},"或":{"docs":{},"多":{"docs":{},"个":{"docs":{},")":{"docs":{},"和":{"docs":{},"返":{"docs":{},"回":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"与":{"docs":{},"实":{"docs":{},"例":{"docs":{},"方":{"docs":{},"法":{"docs":{},"不":{"docs":{},"同":{"docs":{},"的":{"docs":{},"是":{"docs":{},"下":{"docs":{},"标":{"docs":{},"可":{"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":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"和":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0027434842249657062}}}}}}}},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.003429355281207133}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.003429355281207133}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.007614213197969543}}}}}}},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0034602076124567475},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}}}}},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"y":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"w":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036}}}}}}}}},"e":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}}},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.2582899556583767}}}}}},"e":{"docs":{},"d":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}}}},"n":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}},"k":{"docs":{},"e":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.010025062656641603}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.006265664160401002}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"是":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}},"遵":{"docs":{},"循":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0031620553359683794}}}}}}}},"y":{"docs":{},"r":{"docs":{},"u":{"docs":{},"p":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.008908685968819599}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"的":{"docs":{},"新":{"docs":{},"数":{"docs":{},"据":{"docs":{},"项":{"docs":{},"插":{"docs":{},"入":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"列":{"docs":{},"表":{"docs":{},"的":{"docs":{},"最":{"docs":{},"开":{"docs":{},"始":{"docs":{},"位":{"docs":{},"置":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"使":{"docs":{},"用":{"0":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.44040058622374206},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}},"r":{"docs":{},"c":{"docs":{},"=":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"t":{"docs":{},"t":{"docs":{},"p":{"docs":{},"s":{"docs":{},":":{"docs":{},"/":{"docs":{},"/":{"docs":{},"d":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"/":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"/":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"/":{"docs":{},"i":{"docs":{},"o":{"docs":{},"s":{"docs":{},"/":{"docs":{},"d":{"docs":{},"o":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"/":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"/":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"/":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"h":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}},"docs":{}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"u":{"docs":{},"m":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}},"docs":{}}}}}}}},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"_":{"docs":{},"q":{"docs":{},"r":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}},"docs":{}}}},"u":{"docs":{},"p":{"docs":{},"c":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}},"docs":{}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"v":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"k":{"docs":{},"i":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002306805074971165}}}}}}}}}},"u":{"0":{"0":{"0":{"1":{"docs":{},"f":{"4":{"9":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"2":{"6":{"6":{"5":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.008928571428571428},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"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_4":{"ref":"index.html#gitbook_4","tf":0.06666666666666667},"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter1/chapter1.html#gitbook_9":{"ref":"chapter1/chapter1.html#gitbook_9","tf":0.25},"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847},"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.005917159763313609},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202},"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/chapter2.html#gitbook_67":{"ref":"chapter2/chapter2.html#gitbook_67","tf":0.3333333333333333},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099},"chapter3/01_About_the_Language_Reference.html#gitbook_71":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_71","tf":0.041666666666666664},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}},"r":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":1.0951898978214767},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.008928571428571428},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.007518796992481203}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}}}}},"拥":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"返":{"docs":{},"回":{"docs":{},"对":{"docs":{},"应":{"docs":{},"的":{"2":{"1":{"docs":{},"位":{"docs":{},"数":{"docs":{},"值":{"docs":{},",":{"docs":{},"用":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"3":{"2":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}},"docs":{}},"docs":{}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}},"是":{"2":{"1":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}},"docs":{}},"docs":{}}}}}}}}}}}},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},")":{"docs":{},"和":{"docs":{},"变":{"docs":{},"体":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"体":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}},"标":{"docs":{},"签":{"docs":{},"联":{"docs":{},"合":{"docs":{},"(":{"docs":{},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}},"-":{"docs":{},"s":{"docs":{},"t":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{},"-":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"-":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.003429355281207133}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}},"w":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.010101010101010102},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.003015075376884422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}}}}},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.008960573476702509},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"c":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},",":{"docs":{},"其":{"docs":{},"中":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}},",":{"docs":{},"其":{"docs":{},"中":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}},"u":{"docs":{},"s":{"docs":{},"u":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}},"a":{"docs":{},"l":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}},"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":{},"不":{"docs":{},"能":{"docs":{},"调":{"docs":{},"用":{"docs":{},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"调":{"docs":{},"用":{"docs":{},"后":{"docs":{},"再":{"docs":{},"修":{"docs":{},"改":{"docs":{},"b":{"docs":{},"中":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"元":{"docs":{},"素":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"这":{"docs":{},"三":{"docs":{},"个":{"docs":{},"数":{"docs":{},"组":{"docs":{},"(":{"docs":{},"a":{"docs":{},",":{"docs":{},"b":{"docs":{},",":{"docs":{},"c":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"y":{"docs":{},"方":{"docs":{},"法":{"docs":{},"。":{"docs":{},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"方":{"docs":{},"法":{"docs":{},"仅":{"docs":{},"会":{"docs":{},"在":{"docs":{},"确":{"docs":{},"有":{"docs":{},"必":{"docs":{},"要":{"docs":{},"时":{"docs":{},"才":{"docs":{},"会":{"docs":{},"创":{"docs":{},"建":{"docs":{},"数":{"docs":{},"组":{"docs":{},"拷":{"docs":{},"贝":{"docs":{},"。":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.4800351513154281}}}}}},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.010282776349614395}},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}},"i":{"docs":{},"k":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.013245033112582781}}}},"r":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002306805074971165},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}}},".":{"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}},"p":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.024896265560165973},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.005747126436781609},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.006622516556291391},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.2582899556583767},"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.006622516556291391}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"和":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},":":{"docs":{},")":{"docs":{},"函":{"docs":{},"数":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"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":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{},"的":{"docs":{},"字":{"docs":{},"典":{"docs":{},",":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"方":{"docs":{},"法":{"docs":{},"可":{"docs":{},"以":{"docs":{},"设":{"docs":{},"置":{"docs":{},"或":{"docs":{},"者":{"docs":{},"更":{"docs":{},"新":{"docs":{},"特":{"docs":{},"定":{"docs":{},"键":{"docs":{},"对":{"docs":{},"应":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"就":{"docs":{},"像":{"docs":{},"上":{"docs":{},"面":{"docs":{},"所":{"docs":{},"示":{"docs":{},"的":{"docs":{},"示":{"docs":{},"例":{"docs":{},",":{"docs":{},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"-":{"docs":{},"a":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.006825938566552901}}}},"a":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}}}}}},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}},"(":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"接":{"docs":{},"受":{"docs":{},"一":{"docs":{},"个":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"8":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"这":{"docs":{},"个":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"现":{"docs":{},"有":{"docs":{},"的":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"8":{"docs":{},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},"。":{"docs":{},"注":{"docs":{},"意":{"docs":{},",":{"docs":{},"你":{"docs":{},"并":{"docs":{},"不":{"docs":{},"能":{"docs":{},"传":{"docs":{},"入":{"docs":{},"任":{"docs":{},"意":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"只":{"docs":{},"能":{"docs":{},"传":{"docs":{},"入":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"进":{"docs":{},"行":{"docs":{},"相":{"docs":{},"加":{"docs":{},"。":{"docs":{},"目":{"docs":{},"标":{"docs":{},"常":{"docs":{},"量":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"被":{"docs":{},"推":{"docs":{},"测":{"docs":{},"为":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"它":{"docs":{},"是":{"docs":{},"两":{"docs":{},"个":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}},"docs":{}},"docs":{}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"3":{"2":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}},"docs":{}},"8":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.008960573476702509},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.006535947712418301}},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}},"i":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}},"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036}},",":{"docs":{},"除":{"docs":{},"非":{"docs":{},"你":{"docs":{},"真":{"docs":{},"的":{"docs":{},"需":{"docs":{},"要":{"docs":{},"存":{"docs":{},"储":{"docs":{},"一":{"docs":{},"个":{"docs":{},"和":{"docs":{},"当":{"docs":{},"前":{"docs":{},"平":{"docs":{},"台":{"docs":{},"原":{"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":{},"t":{"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":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"v":{"docs":{},"i":{"docs":{},"g":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}},"+":{"0":{"0":{"0":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}},"a":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}},"2":{"4":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}},"docs":{}},"docs":{},"a":{"8":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}},"docs":{},"a":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}},"b":{"2":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"docs":{},"b":{"5":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}},"docs":{}}},"docs":{}},"docs":{}}}}},"7":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"docs":{},"b":{"docs":{},"a":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}},"docs":{}},"docs":{}}}}},"docs":{},"c":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"docs":{},"b":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}},"docs":{}},"docs":{}}}}}},"c":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"docs":{},"d":{"6":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}},"docs":{}}},"docs":{}},"docs":{}}}}},"docs":{}},"d":{"8":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"docs":{},"f":{"6":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}},"docs":{}}},"docs":{}},"docs":{}}}}},"docs":{}},"f":{"8":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}},"docs":{}},"docs":{}}}}},"docs":{}}},"1":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"0":{"2":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}},"docs":{}},"docs":{}}}}},"docs":{}},"docs":{}},"3":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"0":{"3":{"6":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}},"docs":{}},"docs":{}},"docs":{}}}}},"docs":{}},"7":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"1":{"6":{"7":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}},"docs":{}},"docs":{}},"docs":{}}}}},"docs":{}},"docs":{}},"docs":{}},"1":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"1":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}},"docs":{}}}}},"docs":{}},"docs":{}},"docs":{}},"6":{"8":{"1":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"1":{"8":{"0":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}},"docs":{}},"docs":{}},"docs":{}}}}},"docs":{}},"docs":{}},"8":{"0":{"docs":{},"f":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"1":{"docs":{},"d":{"docs":{},"b":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}},"docs":{}}}}}},"docs":{}},"docs":{},"f":{"4":{"3":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}},"docs":{}},"9":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}},"docs":{}},"docs":{}},"docs":{}},"d":{"docs":{},"c":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"1":{"docs":{},"d":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}},"docs":{}}}}},"docs":{}}},"e":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"1":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}},"docs":{}}}}},"docs":{}},"docs":{}}},"2":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}},"docs":{}}}}},"docs":{}},"docs":{},"b":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"0":{"0":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}},"docs":{}},"docs":{}},"docs":{}}}}}},"2":{"docs":{},"a":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"0":{"2":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}},"docs":{}},"docs":{}},"docs":{}}}}}},"3":{"docs":{},"f":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"0":{"4":{"0":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}},"5":{"4":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}},"docs":{}},"6":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"0":{"6":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}},"docs":{}},"docs":{}},"docs":{}}}}},"docs":{}},"7":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"0":{"docs":{},"c":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}},"docs":{}},"docs":{}}}}},"docs":{}},"docs":{},"d":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"0":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}},"docs":{}},"docs":{}}}}},"docs":{}}},"1":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"1":{"8":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}},"docs":{}},"docs":{}},"docs":{}}}}},"docs":{}},"docs":{}},"4":{"6":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"4":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}},"docs":{}},"docs":{}}}}},"docs":{}},"docs":{}},"6":{"6":{"5":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}},"docs":{}},"docs":{}},"7":{"7":{"6":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"7":{"9":{"3":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}},"docs":{}},"docs":{}},"docs":{},"c":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"docs":{},"d":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}},"docs":{}}}}},"docs":{}},"docs":{}},"e":{"8":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"2":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}},"docs":{}}}}},"docs":{}},"docs":{}}},"3":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"3":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}},"docs":{}}}}},"docs":{}},"4":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"3":{"0":{"0":{"7":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}},"docs":{}},"2":{"1":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"3":{"0":{"2":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}},"docs":{}},"docs":{}},"docs":{}}}}},"docs":{}},"3":{"1":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"3":{"0":{"3":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}},"docs":{}},"docs":{}},"docs":{}}}}},"docs":{}},"4":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"d":{"7":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}},"docs":{}}}}}},"docs":{}},"docs":{}},"docs":{}},"4":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"4":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}},"docs":{}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"5":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"5":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}},"docs":{}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"6":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"6":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}},"docs":{}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"7":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"7":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}},"docs":{}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"8":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"8":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}},"docs":{}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"9":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"9":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}},"docs":{}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"d":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"d":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"8":{"3":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}},"docs":{}},"docs":{}},"a":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"a":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"b":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"b":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"c":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"c":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"e":{"0":{"0":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"e":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"f":{"9":{"0":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"f":{"docs":{},"d":{"3":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}},"docs":{}}}}}}},"docs":{}},"docs":{}},"docs":{},"d":{"4":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"f":{"docs":{},"d":{"docs":{},"c":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}}}}},"docs":{}},"docs":{},"f":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"f":{"docs":{},"e":{"1":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}},"docs":{}}}}}}},"docs":{}}},"e":{"2":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"f":{"docs":{},"e":{"2":{"docs":{},"f":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}},"docs":{}}}}}}},"docs":{}},"3":{"0":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"f":{"docs":{},"e":{"4":{"4":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}},"docs":{}},"docs":{}}}}}}},"docs":{}},"4":{"7":{"docs":{},"–":{"docs":{},"u":{"docs":{},"+":{"docs":{},"f":{"docs":{},"f":{"docs":{},"f":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}}}}},"docs":{}},"docs":{}}}},"s":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.004219409282700422},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.013438735177865613},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.005979073243647235},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.008073817762399077},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}},"s":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}}}},"t":{"docs":{},"f":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}}}}},"属":{"docs":{},"性":{"docs":{},"来":{"docs":{},"访":{"docs":{},"问":{"docs":{},"它":{"docs":{},"的":{"docs":{},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{},"-":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}},"docs":{}},"docs":{}}}}}}}}}}}}},"docs":{}},"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}}}}},"属":{"docs":{},"性":{"docs":{},"来":{"docs":{},"访":{"docs":{},"问":{"docs":{},"它":{"docs":{},"的":{"docs":{},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{},"-":{"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}},"docs":{}}}}}}}}}}}}},"docs":{},"-":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.009398496240601503}},"(":{"docs":{},"以":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}},"docs":{}},"docs":{}}}},"docs":{}},"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.011278195488721804}},"(":{"docs":{},"以":{"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}},"docs":{}}}},"docs":{}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"u":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.006825938566552901}}}}}}},"w":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}},"w":{"docs":{},"d":{"docs":{},"c":{"docs":{"index.html#gitbook_4":{"ref":"index.html#gitbook_4","tf":0.06666666666666667}}}}},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.01969057665260197},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.015659955257270694},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.006060606060606061},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}},"<":{"docs":{},"/":{"docs":{},"p":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}},"k":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.260169654906497},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.003952569169960474},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0019223375624759708}}},"d":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}},"n":{"docs":{"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.011834319526627219}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}},"c":{"docs":{},"h":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}},"i":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002306805074971165}}},"r":{"docs":{},"m":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192}}}},"n":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}},"语":{"docs":{},"句":{"docs":{},"作":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"队":{"docs":{},"列":{"docs":{},"的":{"docs":{},"一":{"docs":{},"部":{"docs":{},"分":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"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":{},"以":{"docs":{},"及":{"docs":{},"(":{"docs":{},"或":{"docs":{},")":{"docs":{},"那":{"docs":{},"个":{"docs":{},"特":{"docs":{},"定":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"和":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},"可":{"docs":{},"以":{"docs":{},"是":{"docs":{},"相":{"docs":{},"同":{"docs":{},"的":{"docs":{},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"写":{"docs":{},"一":{"docs":{},"个":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},",":{"docs":{},"通":{"docs":{},"过":{"docs":{},"紧":{"docs":{},"随":{"docs":{},"放":{"docs":{},"置":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"一":{"docs":{},"部":{"docs":{},"分":{"docs":{},",":{"docs":{},"写":{"docs":{},"在":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}},"。":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"由":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}}}}}}},"中":{"docs":{},"的":{"docs":{},"要":{"docs":{},"求":{"docs":{},"用":{"docs":{},"于":{"docs":{},"指":{"docs":{},"明":{"docs":{},"该":{"docs":{},"类":{"docs":{},"型":{"docs":{},"形":{"docs":{},"参":{"docs":{},"继":{"docs":{},"承":{"docs":{},"自":{"docs":{},"某":{"docs":{},"个":{"docs":{},"类":{"docs":{},"或":{"docs":{},"遵":{"docs":{},"守":{"docs":{},"某":{"docs":{},"个":{"docs":{},"协":{"docs":{},"议":{"docs":{},"或":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"一":{"docs":{},"部":{"docs":{},"分":{"docs":{},"。":{"docs":{},"尽":{"docs":{},"管":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"有":{"docs":{},"助":{"docs":{},"于":{"docs":{},"表":{"docs":{},"达":{"docs":{},"类":{"docs":{},"型":{"docs":{},"形":{"docs":{},"参":{"docs":{},"上":{"docs":{},"的":{"docs":{},"简":{"docs":{},"单":{"docs":{},"约":{"docs":{},"束":{"docs":{},"(":{"docs":{},"如":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}},"­":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.024896265560165973}}}},"n":{"docs":{},"e":{"docs":{},"v":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.003952569169960474},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}}}}},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"o":{"docs":{},"-":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"条":{"docs":{},"件":{"docs":{},"语":{"docs":{},"句":{"docs":{},"i":{"docs":{},"f":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"不":{"docs":{},"存":{"docs":{},"在":{"docs":{},"隐":{"docs":{},"式":{"docs":{},"的":{"docs":{},"贯":{"docs":{},"穿":{"docs":{},"(":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":1.6666666666666665}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"循":{"docs":{},"环":{"docs":{},"体":{"docs":{},"中":{"docs":{},"调":{"docs":{},"用":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}},"和":{"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":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"循":{"docs":{},"环":{"docs":{},"体":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"标":{"docs":{},"签":{"docs":{},"名":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"条":{"docs":{},"件":{"docs":{},"判":{"docs":{},"断":{"docs":{},"语":{"docs":{},"句":{"docs":{},"是":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}},"语":{"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":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.008547008547008548}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.005698005698005698}}}}}}}}},"t":{"docs":{},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"c":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.004464285714285714}}}}}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.017766497461928935},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.005639097744360902},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"=":{"docs":{},"\"":{"1":{"6":{"9":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}},"docs":{}},"docs":{}},"2":{"4":{"3":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}},"docs":{}},"5":{"2":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}},"docs":{}},"8":{"8":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013}}},"9":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}},"docs":{}},"docs":{}},"3":{"8":{"8":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}},"docs":{}},"docs":{}},"docs":{}}},"属":{"docs":{},"性":{"docs":{},"和":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"两":{"docs":{},"者":{"docs":{},"均":{"docs":{},"为":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.01015228426395939}}}},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}},"的":{"docs":{},"实":{"docs":{},"际":{"docs":{},"例":{"docs":{},"子":{"docs":{},",":{"docs":{},"其":{"docs":{},"中":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"或":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"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":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"和":{"docs":{},"重":{"docs":{},"写":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"观":{"docs":{},"察":{"docs":{},"器":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"想":{"docs":{},"观":{"docs":{},"察":{"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":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{},"那":{"docs":{},"么":{"docs":{},"你":{"docs":{},"在":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}},"监":{"docs":{},"视":{"docs":{},"器":{"docs":{},"会":{"docs":{},"将":{"docs":{},"新":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"值":{"docs":{},"作":{"docs":{},"为":{"docs":{},"固":{"docs":{},"定":{"docs":{},"参":{"docs":{},"数":{"docs":{},"传":{"docs":{},"入":{"docs":{},",":{"docs":{},"在":{"docs":{},"w":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"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":{},"名":{"docs":{},"称":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"将":{"docs":{},"表":{"docs":{},"示":{"docs":{},"新":{"docs":{},"值":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"为":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"-":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}}}}}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002306805074971165}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0019223375624759708}}}}}}}}}}}},"d":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.28671931083991387},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.008438818565400843}},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"-":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}}}}}},"h":{"docs":{},"h":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"y":{"docs":{},"b":{"docs":{},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"a":{"docs":{},"y":{"docs":{},"(":{"docs":{},"b":{"docs":{},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"a":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"b":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"的":{"docs":{},"形":{"docs":{},"参":{"docs":{},"c":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"为":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.005625879043600563}}}}}},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.4679292185915677},"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"i":{"docs":{},"n":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.8747066055661116},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767}}}}}},"n":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.005917159763313609}}}}}}}}}}}}}},"e":{"docs":{},"b":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.005639097744360902},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.006711409395973154}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.005376344086021506}},"e":{"docs":{},"变":{"docs":{},"量":{"docs":{},"添":{"docs":{},"加":{"docs":{},"了":{"docs":{},"类":{"docs":{},"型":{"docs":{},"标":{"docs":{},"注":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"这":{"docs":{},"个":{"docs":{},"变":{"docs":{},"量":{"docs":{},"可":{"docs":{},"以":{"docs":{},"存":{"docs":{},"储":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}}},"'":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}},"a":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.010128913443830571}}},"k":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.005025125628140704},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"或":{"docs":{},"者":{"docs":{},"u":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"和":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"引":{"docs":{},"用":{"docs":{},"(":{"docs":{},"如":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"或":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.006825938566552901},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.01015228426395939}}}},"i":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0019223375624759708}}}}},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}},"a":{"docs":{},"p":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}},"为":{"docs":{},"了":{"docs":{},"能":{"docs":{},"帮":{"docs":{},"助":{"docs":{},"你":{"docs":{},"管":{"docs":{},"理":{"docs":{},"内":{"docs":{},"存":{"docs":{},",":{"docs":{},"需":{"docs":{},"要":{"docs":{},"更":{"docs":{},"多":{"docs":{},"的":{"docs":{},"关":{"docs":{},"于":{"docs":{},"你":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"之":{"docs":{},"间":{"docs":{},"关":{"docs":{},"系":{"docs":{},"的":{"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":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"会":{"docs":{},"分":{"docs":{},"配":{"docs":{},"一":{"docs":{},"大":{"docs":{},"块":{"docs":{},"内":{"docs":{},"存":{"docs":{},"用":{"docs":{},"来":{"docs":{},"储":{"docs":{},"存":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"信":{"docs":{},"息":{"docs":{},"。":{"docs":{},"内":{"docs":{},"存":{"docs":{},"中":{"docs":{},"会":{"docs":{},"包":{"docs":{},"含":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"这":{"docs":{},"个":{"docs":{},"实":{"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":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"在":{"docs":{},"引":{"docs":{},"用":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"被":{"docs":{},"销":{"docs":{},"毁":{"docs":{},"后":{"docs":{},"自":{"docs":{},"动":{"docs":{},"将":{"docs":{},"其":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}},"第":{"docs":{},"三":{"docs":{},"个":{"docs":{},",":{"docs":{},"也":{"docs":{},"即":{"docs":{},"最":{"docs":{},"后":{"docs":{},"一":{"docs":{},"个":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"被":{"docs":{},"断":{"docs":{},"开":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},",":{"docs":{},"销":{"docs":{},"毁":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"这":{"docs":{},"也":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"你":{"docs":{},"不":{"docs":{},"再":{"docs":{},"使":{"docs":{},"用":{"docs":{},"这":{"docs":{},"个":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"跟":{"docs":{},"踪":{"docs":{},"你":{"docs":{},"所":{"docs":{},"新":{"docs":{},"创":{"docs":{},"建":{"docs":{},"的":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"引":{"docs":{},"用":{"docs":{},"数":{"docs":{},"量":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"会":{"docs":{},"在":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"计":{"docs":{},"算":{"docs":{},"每":{"docs":{},"一":{"docs":{},"个":{"docs":{},"实":{"docs":{},"例":{"docs":{},"正":{"docs":{},"在":{"docs":{},"被":{"docs":{},"多":{"docs":{},"少":{"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":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"无":{"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":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"变":{"docs":{},"量":{"docs":{},"不":{"docs":{},"允":{"docs":{},"许":{"docs":{},"被":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"销":{"docs":{},"毁":{"docs":{},"被":{"docs":{},"引":{"docs":{},"用":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"这":{"docs":{},"种":{"docs":{},"行":{"docs":{},"为":{"docs":{},"阻":{"docs":{},"止":{"docs":{},"了":{"docs":{},"引":{"docs":{},"用":{"docs":{},"变":{"docs":{},"为":{"docs":{},"循":{"docs":{},"环":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"。":{"docs":{},"声":{"docs":{},"明":{"docs":{},"属":{"docs":{},"性":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"时":{"docs":{},",":{"docs":{},"在":{"docs":{},"前":{"docs":{},"面":{"docs":{},"加":{"docs":{},"上":{"docs":{},"w":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.010025062656641603},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}},"r":{"docs":{},"a":{"docs":{},"y":{"3":{"docs":{},"d":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}},"[":{"0":{"docs":{},"]":{"docs":{},"是":{"docs":{},"指":{"docs":{},"[":{"docs":{},"[":{"1":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}},"docs":{}}}}}}},"docs":{}}}},"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"这":{"docs":{},"样":{"docs":{},"的":{"docs":{},"形":{"docs":{},"式":{"docs":{},",":{"docs":{},"其":{"docs":{},"中":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}},"替":{"docs":{},"代":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"形":{"docs":{},"参":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"a":{"docs":{},"i":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},".":{"docs":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}},"类":{"docs":{},"型":{"docs":{},"还":{"docs":{},"提":{"docs":{},"供":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"以":{"docs":{},"创":{"docs":{},"建":{"docs":{},"特":{"docs":{},"定":{"docs":{},"大":{"docs":{},"小":{"docs":{},"并":{"docs":{},"且":{"docs":{},"所":{"docs":{},"有":{"docs":{},"数":{"docs":{},"据":{"docs":{},"都":{"docs":{},"被":{"docs":{},"默":{"docs":{},"认":{"docs":{},"的":{"docs":{},"构":{"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":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},"和":{"docs":{},"适":{"docs":{},"当":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},",":{"docs":{},"字":{"docs":{},"典":{"docs":{},"(":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},")":{"docs":{},",":{"docs":{},"范":{"docs":{},"围":{"docs":{},"(":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"字":{"docs":{},"典":{"docs":{},"(":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}},"s":{"docs":{},")":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"和":{"docs":{},"拷":{"docs":{},"贝":{"docs":{},"行":{"docs":{},"为":{"docs":{},"要":{"docs":{},"比":{"docs":{},"字":{"docs":{},"典":{"docs":{},"(":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"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":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},")":{"docs":{},"能":{"docs":{},"提":{"docs":{},"供":{"docs":{},"接":{"docs":{},"近":{"docs":{},"c":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}},"性":{"docs":{},"质":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"存":{"docs":{},"储":{"docs":{},"值":{"docs":{},"。":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"提":{"docs":{},"供":{"docs":{},"两":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},":":{"docs":{},"p":{"docs":{},"u":{"docs":{},"s":{"docs":{},"h":{"docs":{},"和":{"docs":{},"p":{"docs":{},"o":{"docs":{},"p":{"docs":{},",":{"docs":{},"从":{"docs":{},"栈":{"docs":{},"中":{"docs":{},"压":{"docs":{},"进":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"docs":{},"和":{"docs":{},"移":{"docs":{},"除":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"docs":{},"。":{"docs":{},"这":{"docs":{},"些":{"docs":{},"方":{"docs":{},"法":{"docs":{},"标":{"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":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.008771929824561403},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"a":{"docs":{},"l":{"docs":{},"-":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00411522633744856}},"s":{"docs":{},"­":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}},"­":{"docs":{},",":{"docs":{},"­":{"docs":{},"(":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"-":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"<":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.01015228426395939},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.020553359683794466},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.004219409282700422},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.4375915974596971},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.012060301507537688},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.015503875968992248},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}},"y":{"docs":{},"r":{"docs":{},"i":{"docs":{},"o":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002691272587466359}},"i":{"docs":{},"c":{"docs":{},"m":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"(":{"1":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}},"3":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}},"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.008695652173913044}}}}},"/":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}},"docs":{}},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}}},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"s":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}},"docs":{}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}},"o":{"docs":{},"r":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}},"docs":{}}}},"x":{"docs":{},"o":{"docs":{},"r":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}}}}}}}}},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"2":{"docs":{},"x":{"docs":{},".":{"docs":{},"p":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808},"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}},"i":{"docs":{},"c":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.012448132780082987}},"的":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"观":{"docs":{},"察":{"docs":{},"器":{"docs":{},"就":{"docs":{},"会":{"docs":{},"自":{"docs":{},"动":{"docs":{},"地":{"docs":{},"设":{"docs":{},"置":{"docs":{},"g":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"为":{"docs":{},"新":{"docs":{},"的":{"docs":{},"速":{"docs":{},"度":{"docs":{},"选":{"docs":{},"择":{"docs":{},"一":{"docs":{},"个":{"docs":{},"合":{"docs":{},"适":{"docs":{},"的":{"docs":{},"挡":{"docs":{},"位":{"docs":{},"。":{"docs":{},"具":{"docs":{},"体":{"docs":{},"来":{"docs":{},"说":{"docs":{},"就":{"docs":{},"是":{"docs":{},",":{"docs":{},"属":{"docs":{},"性":{"docs":{},"观":{"docs":{},"察":{"docs":{},"器":{"docs":{},"将":{"docs":{},"新":{"docs":{},"的":{"docs":{},"速":{"docs":{},"度":{"docs":{},"值":{"docs":{},"除":{"docs":{},"以":{"1":{"0":{"docs":{},",":{"docs":{},"然":{"docs":{},"后":{"docs":{},"向":{"docs":{},"下":{"docs":{},"取":{"docs":{},"得":{"docs":{},"最":{"docs":{},"接":{"docs":{},"近":{"docs":{},"的":{"docs":{},"整":{"docs":{},"数":{"docs":{},"值":{"docs":{},",":{"docs":{},"最":{"docs":{},"后":{"docs":{},"加":{"1":{"docs":{},"来":{"docs":{},"得":{"docs":{},"到":{"docs":{},"档":{"docs":{},"位":{"docs":{},"g":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"例":{"docs":{},"如":{"docs":{},",":{"docs":{},"速":{"docs":{},"度":{"docs":{},"为":{"1":{"0":{"docs":{},".":{"0":{"docs":{},"时":{"docs":{},",":{"docs":{},"挡":{"docs":{},"位":{"docs":{},"为":{"1":{"docs":{},";":{"docs":{},"速":{"docs":{},"度":{"docs":{},"为":{"3":{"5":{"docs":{},".":{"0":{"docs":{},"时":{"docs":{},",":{"docs":{},"挡":{"docs":{},"位":{"docs":{},"为":{"4":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}},"docs":{}}}}}}},"docs":{}}},"docs":{}},"docs":{}}}}}},"docs":{}}}}}}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"它":{"docs":{},"是":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"的":{"docs":{},"子":{"docs":{},"类":{"docs":{},"。":{"docs":{},"a":{"docs":{},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"表":{"docs":{},"示":{"docs":{},"自":{"docs":{},"动":{"docs":{},"挡":{"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":{},"i":{"docs":{},"c":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"也":{"docs":{},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"定":{"docs":{},"制":{"docs":{},"的":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.02197802197802198},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}},"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":{},"表":{"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":{},"_":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},"来":{"docs":{},"定":{"docs":{},"义":{"docs":{},"一":{"docs":{},"个":{"docs":{},"很":{"docs":{},"简":{"docs":{},"单":{"docs":{},"的":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"o":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}},"e":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}},"被":{"docs":{},"定":{"docs":{},"义":{"docs":{},"为":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"别":{"docs":{},"名":{"docs":{},"。":{"docs":{},"因":{"docs":{},"为":{"docs":{},"它":{"docs":{},"是":{"docs":{},"别":{"docs":{},"名":{"docs":{},",":{"docs":{},"a":{"docs":{},"u":{"docs":{},"d":{"docs":{},"i":{"docs":{},"o":{"docs":{},"s":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"实":{"docs":{},"际":{"docs":{},"上":{"docs":{},"是":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},".":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"会":{"docs":{},"给":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"u":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"赋":{"docs":{},"一":{"docs":{},"个":{"docs":{},"初":{"docs":{},"值":{"0":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.009398496240601503}},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013}}}}}}}}}}}}}}}}},"也":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"表":{"docs":{},"示":{"docs":{},"立":{"docs":{},"体":{"docs":{},"声":{"docs":{},"系":{"docs":{},"统":{"docs":{},"的":{"docs":{},"两":{"docs":{},"个":{"docs":{},"声":{"docs":{},"道":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{},"和":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"4":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}},"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}},".":{"docs":{},".":{"docs":{},"b":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0044742729306487695}}}},"b":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0044742729306487695}}}}},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.024390243902439025}},"e":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}},"t":{"1":{"docs":{},"s":{"docs":{},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.005639097744360902}}}}}}}}}}}}},"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.02443609022556391}},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0031620553359683794},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.005376344086021506}},"e":{"docs":{},"r":{"docs":{},"常":{"docs":{},"量":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"i":{"docs":{},"f":{"docs":{},"语":{"docs":{},"句":{"docs":{},"的":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"分":{"docs":{},"支":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{},"。":{"docs":{},"它":{"docs":{},"已":{"docs":{},"经":{"docs":{},"被":{"docs":{},"可":{"docs":{},"选":{"docs":{},"包":{"docs":{},"含":{"docs":{},"的":{"docs":{},"值":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"过":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"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":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"拷":{"docs":{},"贝":{"docs":{},"才":{"docs":{},"会":{"docs":{},"被":{"docs":{},"执":{"docs":{},"行":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0044742729306487695},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0031620553359683794},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"h":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}},"d":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.005639097744360902},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767}},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002306805074971165},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}},"o":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813}},"s":{"docs":{},"(":{"docs":{},"a":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}},"和":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"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":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{},"y":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"。":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"都":{"docs":{},"传":{"docs":{},"入":{"docs":{},"两":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"(":{"4":{"docs":{},")":{"docs":{},"(":{"5":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.005847953216374269}}},"docs":{}}}},"docs":{},"a":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.005847953216374269}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"b":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.023178807947019868}},"。":{"docs":{},"它":{"docs":{},"有":{"docs":{},"三":{"docs":{},"个":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"属":{"docs":{},"性":{"docs":{},"他":{"docs":{},"们":{"docs":{},"额":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"?":{"docs":{},"。":{"docs":{},"前":{"docs":{},"面":{"docs":{},"两":{"docs":{},"个":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"属":{"docs":{},"性":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},"时":{"docs":{},"的":{"docs":{},"使":{"docs":{},"用":{"docs":{},"(":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},")":{"docs":{},"。":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"你":{"docs":{},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"它":{"docs":{},"获":{"docs":{},"取":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"中":{"docs":{},"的":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}},"还":{"docs":{},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"它":{"docs":{},"的":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"类":{"docs":{},"型":{"docs":{},"为":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"?":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"检":{"docs":{},"查":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"和":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"有":{"docs":{},"值":{"docs":{},"则":{"docs":{},"将":{"docs":{},"其":{"docs":{},"返":{"docs":{},"回":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"如":{"docs":{},"果":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"设":{"docs":{},"定":{"docs":{},"一":{"docs":{},"个":{"docs":{},"实":{"docs":{},"例":{"docs":{},"来":{"docs":{},"作":{"docs":{},"为":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"并":{"docs":{},"为":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.008842752787389465}}}}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.007050528789659225}}}}}},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.003015075376884422}},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.008426966292134831},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.007712082262210797},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.006265664160401002}},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}},"变":{"docs":{},"量":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"实":{"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":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"或":{"docs":{},"者":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"来":{"docs":{},"声":{"docs":{},"明":{"docs":{},"在":{"docs":{},"嵌":{"docs":{},"入":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"每":{"docs":{},"次":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"。":{"docs":{},"默":{"docs":{},"认":{"docs":{},"地":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"只":{"docs":{},"把":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"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":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}},"p":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.006920415224913495},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.007035175879396985},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},";":{"docs":{},"&":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.013422818791946308},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}}},")":{"docs":{},"和":{"docs":{},"按":{"docs":{},"位":{"docs":{},"右":{"docs":{},"移":{"docs":{},"就":{"docs":{},"可":{"docs":{},"以":{"docs":{},"从":{"docs":{},"这":{"docs":{},"个":{"docs":{},"颜":{"docs":{},"色":{"docs":{},"值":{"docs":{},"中":{"docs":{},"解":{"docs":{},"析":{"docs":{},"出":{"docs":{},"红":{"docs":{},"(":{"docs":{},"c":{"docs":{},"c":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}}}}}}}}}}}}}}}}}}},"­":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.005747126436781609}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.005012531328320802}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"这":{"docs":{},"样":{"docs":{},"的":{"docs":{},"格":{"docs":{},"式":{"docs":{},"进":{"docs":{},"行":{"docs":{},"组":{"docs":{},"合":{"docs":{},",":{"docs":{},"称":{"docs":{},"为":{"docs":{},"协":{"docs":{},"议":{"docs":{},"合":{"docs":{},"成":{"docs":{},"(":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036}}},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013}}}}}}},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0066815144766146995}}}}}}}}}}},"w":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013}}}}}}}},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}},"[":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}},"中":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"2":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}},"docs":{}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.007032348804500703},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.01195814648729447}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.004484304932735426}}}}},"v":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}},"n":{"docs":{},"y":{"docs":{},"m":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},"[":{"1":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.009486166007905139},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.8333333333333333}}}}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"代":{"docs":{},"表":{"docs":{},"任":{"docs":{},"何":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"表":{"docs":{},"示":{"docs":{},"任":{"docs":{},"何":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"除":{"docs":{},"了":{"docs":{},"方":{"docs":{},"法":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"i":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}},"a":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013}}}}},"(":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}},"s":{"docs":{},"h":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}},"n":{"docs":{},"a":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0044742729306487695}}},"o":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}},"s":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"1":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}},"2":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}},"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}},"d":{"docs":{},"/":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174}}}}}}},"p":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.004700352526439483},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.013363028953229399}},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.01818181818181818},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}}},"u":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{},",":{"docs":{},"插":{"docs":{},"入":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{},",":{"docs":{},"删":{"docs":{},"除":{"docs":{},"(":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{},"或":{"docs":{},"者":{"docs":{},"使":{"docs":{},"用":{"docs":{},"范":{"docs":{},"围":{"docs":{},"下":{"docs":{},"标":{"docs":{},"(":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.004484304932735426}}}}}}},"方":{"docs":{},"法":{"docs":{},"添":{"docs":{},"加":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}},"s":{"docs":{},",":{"docs":{},"它":{"docs":{},"一":{"docs":{},"般":{"docs":{},"接":{"docs":{},"收":{"docs":{},"一":{"docs":{},"个":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"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":{},"o":{"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":{},"仅":{"docs":{},"从":{"docs":{},"你":{"docs":{},"知":{"docs":{},"道":{"docs":{},"的":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.004454342984409799}}},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.022222222222222223},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00404040404040404}}}}}}},"实":{"docs":{},"例":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"叫":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},",":{"docs":{},"类":{"docs":{},"型":{"docs":{},"为":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"并":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},"的":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"属":{"docs":{},"性":{"docs":{},"。":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"来":{"docs":{},"自":{"docs":{},"于":{"docs":{},"变":{"docs":{},"量":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"7":{"3":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"断":{"docs":{},"开":{"docs":{},"这":{"docs":{},"个":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"再":{"docs":{},"也":{"docs":{},"没":{"docs":{},"有":{"docs":{},"指":{"docs":{},"向":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007168458781362007},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.007614213197969543},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.007518796992481203}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813}}}}},"e":{"docs":{},"s":{"docs":{},"的":{"docs":{},"字":{"docs":{},"典":{"docs":{},",":{"docs":{},"其":{"docs":{},"中":{"docs":{},"储":{"docs":{},"存":{"docs":{},"了":{"docs":{},"四":{"docs":{},"个":{"docs":{},"人":{"docs":{},"的":{"docs":{},"名":{"docs":{},"字":{"docs":{},"和":{"docs":{},"年":{"docs":{},"龄":{"docs":{},"。":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"字":{"docs":{},"典":{"docs":{},"被":{"docs":{},"赋":{"docs":{},"予":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"的":{"docs":{},"新":{"docs":{},"变":{"docs":{},"量":{"docs":{},",":{"docs":{},"同":{"docs":{},"时":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"在":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"的":{"docs":{},"过":{"docs":{},"程":{"docs":{},"中":{"docs":{},"被":{"docs":{},"拷":{"docs":{},"贝":{"docs":{},"。":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"结":{"docs":{},"束":{"docs":{},"后":{"docs":{},",":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"(":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"来":{"docs":{},"写":{"docs":{},"一":{"docs":{},"个":{"docs":{},"断":{"docs":{},"言":{"docs":{},"。":{"docs":{},"给":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"函":{"docs":{},"数":{"docs":{},"传":{"docs":{},"入":{"docs":{},"一":{"docs":{},"个":{"docs":{},"结":{"docs":{},"果":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"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":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"m":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}},"e":{"docs":{},"d":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.005376344086021506}}}}}}}}},"i":{"docs":{},"g":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}},"n":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.004454342984409799},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.007304882737408689},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.3007896625987078}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"­":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.006825938566552901},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.48426429395287524},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},")":{"docs":{},"—":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}}}},"i":{"docs":{},"v":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"、":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"、":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"、":{"docs":{},"i":{"docs":{},"n":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"、":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"、":{"docs":{},"l":{"docs":{},"e":{"docs":{},"f":{"docs":{},"t":{"docs":{},"、":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"、":{"docs":{},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"、":{"docs":{},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"、":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"、":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"、":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"、":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"、":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"、":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"、":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"、":{"docs":{},"u":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"、":{"docs":{},"u":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{},"e":{"docs":{},")":{"docs":{},"、":{"docs":{},"u":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{},"e":{"docs":{},"d":{"docs":{},"(":{"docs":{},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{},"e":{"docs":{},")":{"docs":{},"、":{"docs":{},"w":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"、":{"docs":{},"w":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"i":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.010238907849829351}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"的":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"类":{"docs":{},"型":{"docs":{},"被":{"docs":{},"定":{"docs":{},"义":{"docs":{},"为":{"docs":{},"字":{"docs":{},"符":{"docs":{},"型":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00404040404040404}},"声":{"docs":{},"明":{"docs":{},"为":{"docs":{},"l":{"docs":{},"a":{"docs":{},"z":{"docs":{},"y":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"只":{"docs":{},"有":{"docs":{},"当":{"docs":{},"元":{"docs":{},"素":{"docs":{},"确":{"docs":{},"实":{"docs":{},"需":{"docs":{},"要":{"docs":{},"处":{"docs":{},"理":{"docs":{},"为":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"输":{"docs":{},"出":{"docs":{},"的":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"时":{"docs":{},",":{"docs":{},"才":{"docs":{},"需":{"docs":{},"要":{"docs":{},"使":{"docs":{},"用":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"。":{"docs":{},"也":{"docs":{},"就":{"docs":{},"是":{"docs":{},"说":{"docs":{},",":{"docs":{},"在":{"docs":{},"默":{"docs":{},"认":{"docs":{},"的":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"中":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"只":{"docs":{},"有":{"docs":{},"当":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"完":{"docs":{},"成":{"docs":{},"以":{"docs":{},"及":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"确":{"docs":{},"实":{"docs":{},"存":{"docs":{},"在":{"docs":{},"后":{"docs":{},",":{"docs":{},"才":{"docs":{},"能":{"docs":{},"访":{"docs":{},"问":{"docs":{},"l":{"docs":{},"a":{"docs":{},"z":{"docs":{},"i":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"属":{"docs":{},"性":{"docs":{},"。":{"docs":{},"然":{"docs":{},"而":{"docs":{},",":{"docs":{},"由":{"docs":{},"于":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"是":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"实":{"docs":{},"例":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"想":{"docs":{},"改":{"docs":{},"变":{"docs":{},"特":{"docs":{},"定":{"docs":{},"元":{"docs":{},"素":{"docs":{},"的":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"持":{"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":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"(":{"docs":{},"引":{"docs":{},"用":{"docs":{},"了":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"和":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},")":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"占":{"docs":{},"有":{"docs":{},"了":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},",":{"docs":{},"这":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"又":{"docs":{},"反":{"docs":{},"过":{"docs":{},"来":{"docs":{},"持":{"docs":{},"有":{"docs":{},"了":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"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":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"这":{"docs":{},"个":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"代":{"docs":{},"表":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"标":{"docs":{},"签":{"docs":{},"的":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"值":{"docs":{},"存":{"docs":{},"在":{"docs":{},",":{"docs":{},"该":{"docs":{},"标":{"docs":{},"签":{"docs":{},"就":{"docs":{},"包":{"docs":{},"含":{"docs":{},"可":{"docs":{},"选":{"docs":{},"值":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},";":{"docs":{},"如":{"docs":{},"果":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"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":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"是":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"下":{"docs":{},"转":{"docs":{},"并":{"docs":{},"解":{"docs":{},"包":{"docs":{},"到":{"docs":{},"不":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"p":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}},"?":{"docs":{},")":{"docs":{},"。":{"docs":{},"可":{"docs":{},"选":{"docs":{},"形":{"docs":{},"式":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"检":{"docs":{},"查":{"docs":{},"总":{"docs":{},"是":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"值":{"docs":{},"(":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}}}}}},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"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":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.006265664160401002}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}}}}}}}}}}}},"­":{"docs":{},"?":{"docs":{},"(":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},")":{"docs":{},"­":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}},"、":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"、":{"docs":{},"i":{"docs":{},"s":{"docs":{},"、":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"、":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"、":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"、":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"、":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"、":{"docs":{},"_":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"_":{"docs":{},"_":{"docs":{},"、":{"docs":{},"_":{"docs":{},"_":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"_":{"docs":{},"、":{"docs":{},"_":{"docs":{},"_":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"_":{"docs":{},"、":{"docs":{},"_":{"docs":{},"_":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"_":{"docs":{},"_":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.008438818565400843},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}},"模":{"docs":{},"式":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"这":{"docs":{},"个":{"docs":{},"值":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"在":{"docs":{},"运":{"docs":{},"行":{"docs":{},"时":{"docs":{},"(":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},")":{"docs":{},"和":{"docs":{},"a":{"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":{},"的":{"docs":{},"。":{"docs":{},"一":{"docs":{},"旦":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"成":{"docs":{},"功":{"docs":{},",":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"的":{"docs":{},"值":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"被":{"docs":{},"转":{"docs":{},"换":{"docs":{},"成":{"docs":{},"a":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.035634743875278395}},"'":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.004454342984409799}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.011135857461024499}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.017817371937639197}}}}},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}},"[":{"docs":{},"\"":{"docs":{},"a":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.004454342984409799}}}}},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}},"l":{"docs":{},"h":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.004454342984409799}}}}}}},"字":{"docs":{},"典":{"docs":{},"使":{"docs":{},"用":{"docs":{},"字":{"docs":{},"典":{"docs":{},"字":{"docs":{},"面":{"docs":{},"语":{"docs":{},"句":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},",":{"docs":{},"包":{"docs":{},"含":{"docs":{},"两":{"docs":{},"个":{"docs":{},"键":{"docs":{},"值":{"docs":{},"对":{"docs":{},"。":{"docs":{},"第":{"docs":{},"一":{"docs":{},"对":{"docs":{},"的":{"docs":{},"键":{"docs":{},"是":{"docs":{},"t":{"docs":{},"y":{"docs":{},"o":{"docs":{},",":{"docs":{},"值":{"docs":{},"是":{"docs":{},"t":{"docs":{},"o":{"docs":{},"k":{"docs":{},"y":{"docs":{},"o":{"docs":{},"。":{"docs":{},"第":{"docs":{},"二":{"docs":{},"对":{"docs":{},"的":{"docs":{},"键":{"docs":{},"是":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},",":{"docs":{},"值":{"docs":{},"是":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"被":{"docs":{},"声":{"docs":{},"明":{"docs":{},"为":{"docs":{},"变":{"docs":{},"量":{"docs":{},"(":{"docs":{},"用":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},")":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"常":{"docs":{},"量":{"docs":{},"(":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"为":{"docs":{},"一":{"docs":{},"种":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002306805074971165},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.054945054945054944},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0205761316872428}},"e":{"docs":{},"-":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"e":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.02197802197802198},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}},"s":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}},"[":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.005847953216374269}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0056179775280898875},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0044742729306487695},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.005847953216374269}}}},"i":{"docs":{},"k":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}},"g":{"docs":{},"n":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"(":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}},"函":{"docs":{},"数":{"docs":{},"将":{"docs":{},"参":{"docs":{},"数":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"定":{"docs":{},"义":{"docs":{},"为":{"docs":{},"变":{"docs":{},"量":{"docs":{},"参":{"docs":{},"数":{"docs":{},"。":{"docs":{},"这":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"右":{"docs":{},"对":{"docs":{},"齐":{"docs":{},"输":{"docs":{},"入":{"docs":{},"的":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"到":{"docs":{},"一":{"docs":{},"个":{"docs":{},"长":{"docs":{},"的":{"docs":{},"输":{"docs":{},"出":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"中":{"docs":{},"。":{"docs":{},"左":{"docs":{},"侧":{"docs":{},"空":{"docs":{},"余":{"docs":{},"的":{"docs":{},"地":{"docs":{},"方":{"docs":{},"用":{"docs":{},"指":{"docs":{},"定":{"docs":{},"的":{"docs":{},"填":{"docs":{},"充":{"docs":{},"字":{"docs":{},"符":{"docs":{},"填":{"docs":{},"充":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"被":{"docs":{},"转":{"docs":{},"换":{"docs":{},"成":{"docs":{},"了":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"-":{"docs":{},"-":{"docs":{},"-":{"docs":{},"-":{"docs":{},"-":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}},"s":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}},"e":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848}}}}},"s":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0056179775280898875}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.007614213197969543}}},"y":{"docs":{},".":{"docs":{},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}},"的":{"docs":{},"新":{"docs":{},"常":{"docs":{},"量":{"docs":{},",":{"docs":{},"同":{"docs":{},"时":{"docs":{},"对":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0044742729306487695}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}}},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}},"=":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.006711409395973154}}}}}}}},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.005979073243647235}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}},"的":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"检":{"docs":{},"查":{"docs":{},"是":{"docs":{},"否":{"docs":{},"两":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"单":{"docs":{},"例":{"docs":{},"包":{"docs":{},"含":{"docs":{},"具":{"docs":{},"有":{"docs":{},"相":{"docs":{},"同":{"docs":{},"顺":{"docs":{},"序":{"docs":{},"的":{"docs":{},"相":{"docs":{},"同":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"到":{"docs":{},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},",":{"docs":{},"那":{"docs":{},"么":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"的":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"首":{"docs":{},"先":{"docs":{},"检":{"docs":{},"查":{"docs":{},"两":{"docs":{},"个":{"docs":{},"容":{"docs":{},"器":{"docs":{},"是":{"docs":{},"否":{"docs":{},"拥":{"docs":{},"有":{"docs":{},"同":{"docs":{},"样":{"docs":{},"数":{"docs":{},"目":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"他":{"docs":{},"们":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"数":{"docs":{},"目":{"docs":{},"不":{"docs":{},"同":{"docs":{},",":{"docs":{},"没":{"docs":{},"有":{"docs":{},"办":{"docs":{},"法":{"docs":{},"进":{"docs":{},"行":{"docs":{},"匹":{"docs":{},"配":{"docs":{},",":{"docs":{},"函":{"docs":{},"数":{"docs":{},"就":{"docs":{},"会":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"w":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}}},"w":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0031620553359683794},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813}}}}}}}}},"b":{"docs":{},"c":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"g":{"docs":{},"h":{"docs":{},"i":{"docs":{},"j":{"docs":{},"k":{"docs":{},"l":{"docs":{},"m":{"docs":{},"n":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.006825938566552901}}}}}}}}}}}}}}}},"o":{"docs":{},"v":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002306805074971165}}}},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}},",":{"docs":{},"b":{"docs":{},",":{"docs":{},"c":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.005076142131979695}}}}}},"[":{"0":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.005076142131979695}}},"docs":{}},"中":{"docs":{},"元":{"docs":{},"素":{"docs":{},"值":{"docs":{},"的":{"docs":{},"话":{"docs":{},",":{"docs":{},"a":{"docs":{},"将":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"docs":{},"与":{"docs":{},"b":{"docs":{},",":{"docs":{},"c":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}}}},",":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}},"+":{"docs":{},"+":{"docs":{},".":{"docs":{},"b":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}},"b":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}},"c":{"1":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.004484304932735426}},".":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.005979073243647235}}}}}}}}}},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"同":{"docs":{},"样":{"docs":{},"是":{"docs":{},"c":{"2":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}},"docs":{}}}}},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}},"2":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.004484304932735426}},".":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174}}}}}}}}}},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}},"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.017921146953405017},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0055248618784530384},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.010238907849829351},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.012690355329949238},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.005639097744360902},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.024608501118568233},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002691272587466359},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.007035175879396985},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"a":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.07142857142857142},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.013157894736842105},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}},"的":{"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":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"里":{"docs":{},"的":{"docs":{},"n":{"docs":{},"s":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"函":{"docs":{},"数":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.2582899556583767},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.004454342984409799},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.005625879043600563},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.017994858611825194},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.006265664160401002},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.004484304932735426},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.02313624678663239},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0037593984962406013}},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"(":{"2":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"5":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.005141388174807198}}},"docs":{}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}}}}}}}}}}}},"'":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.007712082262210797}}},"的":{"docs":{},"替":{"docs":{},"换":{"docs":{},"版":{"docs":{},"本":{"docs":{},"(":{"docs":{},"它":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"更":{"docs":{},"复":{"docs":{},"杂":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"i":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"这":{"docs":{},"个":{"docs":{},"类":{"docs":{},"还":{"docs":{},"声":{"docs":{},"明":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"变":{"docs":{},"属":{"docs":{},"性":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.006265664160401002}},"e":{"docs":{},"含":{"docs":{},"有":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"可":{"docs":{},"选":{"docs":{},"方":{"docs":{},"法":{"docs":{},"和":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"x":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"使":{"docs":{},"用":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"外":{"docs":{},"部":{"docs":{},"数":{"docs":{},"据":{"docs":{},"源":{"docs":{},"来":{"docs":{},"提":{"docs":{},"供":{"docs":{},"增":{"docs":{},"量":{"docs":{},"值":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"含":{"docs":{},"有":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"?":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"可":{"docs":{},"选":{"docs":{},"属":{"docs":{},"性":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},"u":{"docs":{},"n":{"docs":{},"u":{"docs":{},"s":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}},"返":{"docs":{},"回":{"docs":{},"的":{"docs":{},"字":{"docs":{},"符":{"docs":{},"数":{"docs":{},"量":{"docs":{},"并":{"docs":{},"不":{"docs":{},"总":{"docs":{},"是":{"docs":{},"与":{"docs":{},"包":{"docs":{},"含":{"docs":{},"相":{"docs":{},"同":{"docs":{},"字":{"docs":{},"符":{"docs":{},"的":{"docs":{},"n":{"docs":{},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"的":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013}}}}}},"属":{"docs":{},"性":{"docs":{},"进":{"docs":{},"行":{"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":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"等":{"docs":{},"于":{"0":{"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":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"于":{"docs":{},"存":{"docs":{},"储":{"docs":{},"当":{"docs":{},"前":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"方":{"docs":{},"法":{"docs":{},"用":{"docs":{},"来":{"docs":{},"为":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"获":{"docs":{},"取":{"docs":{},"容":{"docs":{},"器":{"docs":{},"里":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"的":{"docs":{},"数":{"docs":{},"量":{"docs":{},",":{"docs":{},"并":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"\"":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}},"函":{"docs":{},"数":{"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":{},"t":{"docs":{},"型":{"docs":{},"值":{"docs":{},"的":{"docs":{},"元":{"docs":{},"组":{"docs":{},"(":{"docs":{},"t":{"docs":{},"u":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.01616161616161616},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}},"y":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}},".":{"docs":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}},"和":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"产":{"docs":{},"生":{"docs":{},"循":{"docs":{},"环":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"每":{"docs":{},"个":{"docs":{},"类":{"docs":{},"将":{"docs":{},"另":{"docs":{},"外":{"docs":{},"一":{"docs":{},"个":{"docs":{},"类":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"保":{"docs":{},"存":{"docs":{},"为":{"docs":{},"属":{"docs":{},"性":{"docs":{},"。":{"docs":{},"在":{"docs":{},"这":{"docs":{},"个":{"docs":{},"模":{"docs":{},"型":{"docs":{},"中":{"docs":{},",":{"docs":{},"每":{"docs":{},"个":{"docs":{},"国":{"docs":{},"家":{"docs":{},"必":{"docs":{},"须":{"docs":{},"有":{"docs":{},"首":{"docs":{},"都":{"docs":{},",":{"docs":{},"而":{"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":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"类":{"docs":{},"拥":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"而":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"类":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"调":{"docs":{},"用":{"docs":{},"了":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"。":{"docs":{},"然":{"docs":{},"而":{"docs":{},",":{"docs":{},"只":{"docs":{},"有":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"完":{"docs":{},"全":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"完":{"docs":{},"后":{"docs":{},",":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"才":{"docs":{},"能":{"docs":{},"把":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"传":{"docs":{},"给":{"docs":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.006445672191528545},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.29174443646805454},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.05128205128205128}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"a":{"docs":{},"l":{"docs":{},"-":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"­":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"值":{"docs":{},"在":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"执":{"docs":{},"行":{"docs":{},"前":{"docs":{},"就":{"docs":{},"已":{"docs":{},"计":{"docs":{},"算":{"docs":{},"出":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"中":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"的":{"docs":{},"值":{"docs":{},"是":{"docs":{},"在":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"执":{"docs":{},"行":{"docs":{},"后":{"docs":{},"才":{"docs":{},"计":{"docs":{},"算":{"docs":{},"出":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"d":{"docs":{},"o":{"docs":{},"-":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"中":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"c":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},"。":{"docs":{},"同":{"docs":{},"时":{"docs":{},",":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.005698005698005698}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}},"e":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},".":{"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007168458781362007}}}}}}}}}},"n":{"docs":{},"i":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0047430830039525695},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}}}},"-":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}},"t":{"docs":{},"s":{"docs":{},"]":{"docs":{},"[":{"8":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}},"docs":{}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.006445672191528545},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767}}}},"o":{"docs":{},"n":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.008438818565400843},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.017241379310344827}}}}},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.2582899556583767}}}}}},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.011135857461024499},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0071146245059288534},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.02242152466367713}},"s":{"docs":{},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"#":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"声":{"docs":{},"明":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"的":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"写":{"docs":{},"作":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},",":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}},"泛":{"docs":{},"型":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"必":{"docs":{},"须":{"docs":{},"指":{"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":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"可":{"docs":{},"以":{"docs":{},"加":{"docs":{},"进":{"docs":{},"容":{"docs":{},"器":{"docs":{},"里":{"docs":{},",":{"docs":{},"必":{"docs":{},"须":{"docs":{},"明":{"docs":{},"确":{"docs":{},"可":{"docs":{},"以":{"docs":{},"通":{"docs":{},"过":{"docs":{},"其":{"docs":{},"下":{"docs":{},"标":{"docs":{},"返":{"docs":{},"回":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"需":{"docs":{},"要":{"docs":{},"一":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"指":{"docs":{},"定":{"docs":{},"容":{"docs":{},"器":{"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":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"需":{"docs":{},"要":{"docs":{},"指":{"docs":{},"定":{"docs":{},"任":{"docs":{},"何":{"docs":{},"通":{"docs":{},"过":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.007366482504604052},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":1.133903133903134}},"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":{},"这":{"docs":{},"种":{"docs":{},"行":{"docs":{},"为":{"docs":{},"使":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"于":{"docs":{},"终":{"docs":{},"止":{"docs":{},"循":{"docs":{},"环":{"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":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"时":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"只":{"docs":{},"写":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"docs":{},"这":{"docs":{},"个":{"docs":{},"关":{"docs":{},"键":{"docs":{},"词":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"docs":{},"后":{"docs":{},"面":{"docs":{},"跟":{"docs":{},"上":{"docs":{},"标":{"docs":{},"签":{"docs":{},"名":{"docs":{},"(":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},",":{"docs":{},"请":{"docs":{},"参":{"docs":{},"考":{"docs":{},"控":{"docs":{},"制":{"docs":{},"流":{"docs":{},"一":{"docs":{},"章":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.008547008547008548}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.4375915974596971},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}},"n":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.008948545861297539}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.004484304932735426},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.005698005698005698}},"-":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"s":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.003429355281207133},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.014245014245014245}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.005979073243647235},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"<":{"docs":{},"/":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}},"-":{"docs":{},"r":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"i":{"docs":{},"r":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.023255813953488372},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}}}}}}}}}}}},"g":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}},"j":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}},"d":{"docs":{},"e":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.014336917562724014},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0066815144766146995},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.013651877133105802},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002691272587466359},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}}}}},">":{"docs":{},"$":{"0":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"、":{"docs":{},"<":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"$":{"1":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"、":{"docs":{},"<":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"$":{"2":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}},"docs":{}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}},"docs":{}},"`":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"。":{"docs":{},"例":{"docs":{},"如":{"docs":{},",":{"docs":{},"<":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"`":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"。":{"docs":{},"反":{"docs":{},"引":{"docs":{},"号":{"docs":{},"不":{"docs":{},"属":{"docs":{},"于":{"docs":{},"标":{"docs":{},"识":{"docs":{},"符":{"docs":{},"的":{"docs":{},"一":{"docs":{},"部":{"docs":{},"分":{"docs":{},",":{"docs":{},"<":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},">":{"docs":{},"`":{"docs":{},"x":{"docs":{},"`":{"docs":{},"<":{"docs":{},"/":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.011659807956104253},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.019943019943019943}}}}}}}}}},"m":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.008960573476702509},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.004464285714285714}}}}},"o":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}},"u":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.003015075376884422}},"e":{"docs":{},"-":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}}}}}},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.2582899556583767},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},">":{"docs":{},"(":{"docs":{},"x":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}},"等":{"docs":{},"同":{"docs":{},"于":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}},"表":{"docs":{},"示":{"docs":{},"任":{"docs":{},"何":{"docs":{},"用":{"docs":{},"于":{"docs":{},"替":{"docs":{},"代":{"docs":{},"类":{"docs":{},"型":{"docs":{},"形":{"docs":{},"参":{"docs":{},"t":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"实":{"docs":{},"参":{"docs":{},"必":{"docs":{},"须":{"docs":{},"满":{"docs":{},"足":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"等":{"docs":{},"等":{"docs":{},")":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"依":{"docs":{},"然":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"来":{"docs":{},"对":{"docs":{},"类":{"docs":{},"型":{"docs":{},"形":{"docs":{},"参":{"docs":{},"及":{"docs":{},"其":{"docs":{},"关":{"docs":{},"联":{"docs":{},"约":{"docs":{},"束":{"docs":{},"提":{"docs":{},"供":{"docs":{},"更":{"docs":{},"复":{"docs":{},"杂":{"docs":{},"的":{"docs":{},"约":{"docs":{},"束":{"docs":{},"。":{"docs":{},"如":{"docs":{},",":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}},".":{"docs":{},"w":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}},"s":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},",":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},",":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"和":{"docs":{},"w":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"不":{"docs":{},"是":{"docs":{},"隐":{"docs":{},"式":{"docs":{},"得":{"docs":{},"等":{"docs":{},"于":{"0":{"docs":{},",":{"1":{"docs":{},",":{"2":{"docs":{},"和":{"3":{"docs":{},"。":{"docs":{},"相":{"docs":{},"反":{"docs":{},"的":{"docs":{},",":{"docs":{},"这":{"docs":{},"些":{"docs":{},"不":{"docs":{},"同":{"docs":{},"的":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"成":{"docs":{},"员":{"docs":{},"在":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}},"e":{"docs":{},"d":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.005639097744360902}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}},"e":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}},"x":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002306805074971165}}}}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767}}}}},"e":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002306805074971165}},"e":{"docs":{},"d":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"v":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}}}}}}}},"l":{"0":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}},"1":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}},"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":5.008908685968819},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":10.00507614213198},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},")":{"docs":{},",":{"docs":{},"列":{"docs":{},"表":{"docs":{},"(":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},")":{"docs":{},"或":{"docs":{},"序":{"docs":{},"列":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.007366482504604052}}},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.12087912087912088}},"s":{"docs":{},"个":{"docs":{},"数":{"docs":{},"的":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"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":{},"始":{"docs":{},"值":{"0":{"docs":{},".":{"0":{"docs":{},",":{"docs":{},"都":{"docs":{},"传":{"docs":{},"入":{"docs":{},"数":{"docs":{},"组":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"方":{"docs":{},"法":{"docs":{},"中":{"docs":{},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"正":{"docs":{},"确":{"docs":{},"大":{"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":{},"r":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"n":{"docs":{},"=":{"docs":{},"\"":{"4":{"docs":{},"\"":{"docs":{},">":{"4":{"docs":{},"<":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0044742729306487695}}}}}}},"docs":{}}}},"docs":{}}}}}}},"o":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767}}}}},"p":{"docs":{},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.004454342984409799},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.005076142131979695}},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}},"e":{"docs":{},"s":{"docs":{},"[":{"docs":{},"\"":{"docs":{},"p":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}},"e":{"docs":{},"[":{"0":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}},"docs":{}}}}}}}}},"y":{"docs":{},"方":{"docs":{},"法":{"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":{},"h":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}},"w":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0044742729306487695}}},"i":{"docs":{},"n":{"docs":{"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.07692307692307693}},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.023668639053254437}}}}}},"p":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.01775147928994083}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}}}}},"的":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"性":{"docs":{},"的":{"docs":{},"限":{"docs":{},"制":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808}}}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"u":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.44040058622374206},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.008040201005025126}},"e":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0027434842249657062}},"­":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{},"­":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"­":{"docs":{},"(":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},")":{"docs":{},"­":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{},"e":{"docs":{},"­":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"­":{"docs":{},"(":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},")":{"docs":{},"­":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"e":{"docs":{},"r":{"docs":{},"­":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"'":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.013157894736842105}}}}}}},"i":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00404040404040404}},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00404040404040404}},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"默":{"docs":{},"认":{"docs":{},"值":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},",":{"docs":{},"一":{"docs":{},"旦":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"在":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"中":{"docs":{},"给":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"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":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},"被":{"docs":{},"后":{"docs":{},",":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"就":{"docs":{},"能":{"docs":{},"引":{"docs":{},"用":{"docs":{},"并":{"docs":{},"传":{"docs":{},"递":{"docs":{},"显":{"docs":{},"式":{"docs":{},"的":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"。":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"在":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"时":{"docs":{},",":{"docs":{},"就":{"docs":{},"能":{"docs":{},"将":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"作":{"docs":{},"为":{"docs":{},"参":{"docs":{},"数":{"docs":{},"传":{"docs":{},"递":{"docs":{},"给":{"docs":{},"c":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.006060606060606061}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}},"r":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.024896265560165973}},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00404040404040404}},"(":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"添":{"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}},"中":{"docs":{},"的":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"方":{"docs":{},"法":{"docs":{},"并":{"docs":{},"非":{"docs":{},"完":{"docs":{},"全":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},",":{"docs":{},"而":{"docs":{},"是":{"docs":{},"通":{"docs":{},"过":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"使":{"docs":{},"用":{"docs":{},"了":{"docs":{},"超":{"docs":{},"类":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"中":{"docs":{},"的":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"声":{"docs":{},"明":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"存":{"docs":{},"储":{"docs":{},"型":{"docs":{},"属":{"docs":{},"性":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{},"它":{"docs":{},"是":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},",":{"docs":{},"默":{"docs":{},"认":{"docs":{},"值":{"docs":{},"是":{"0":{"docs":{},".":{"0":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"“":{"docs":{},"时":{"docs":{},"速":{"docs":{},"是":{"0":{"docs":{},"英":{"docs":{},"里":{"docs":{},"”":{"docs":{},"。":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"有":{"docs":{},"自":{"docs":{},"己":{"docs":{},"的":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"器":{"docs":{},",":{"docs":{},"它":{"docs":{},"将":{"docs":{},"乘":{"docs":{},"客":{"docs":{},"的":{"docs":{},"最":{"docs":{},"大":{"docs":{},"数":{"docs":{},"量":{"docs":{},"设":{"docs":{},"为":{"5":{"docs":{},",":{"docs":{},"轮":{"docs":{},"子":{"docs":{},"数":{"docs":{},"量":{"docs":{},"设":{"docs":{},"为":{"4":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}},"docs":{}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}},"docs":{}},"docs":{}}}}}}}},"docs":{}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"新":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"并":{"docs":{},"打":{"docs":{},"印":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}},"重":{"docs":{},"写":{"docs":{},"了":{"docs":{},"继":{"docs":{},"承":{"docs":{},"来":{"docs":{},"的":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"它":{"docs":{},"的":{"docs":{},"声":{"docs":{},"明":{"docs":{},"与":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"中":{"docs":{},"的":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"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":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}},"s":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.024676850763807285},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.03406998158379374},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.07167235494880546},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.010282776349614395},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.011067193675889328},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.04065040650406504},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.017241379310344827},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.008771929824561403},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":1.1364275668073136},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.014245014245014245}},"匹":{"docs":{},"配":{"docs":{},"同":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"docs":{},"。":{"docs":{},"实":{"docs":{},"际":{"docs":{},"上":{"docs":{},",":{"docs":{},"在":{"docs":{},"这":{"docs":{},"个":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"点":{"docs":{},"(":{"0":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}},"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":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}},"后":{"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":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"块":{"docs":{},"。":{"docs":{},"这":{"docs":{},"也":{"docs":{},"就":{"docs":{},"是":{"docs":{},"说":{"docs":{},",":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"块":{"docs":{},"中":{"docs":{},"显":{"docs":{},"式":{"docs":{},"地":{"docs":{},"使":{"docs":{},"用":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"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":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"就":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"想":{"docs":{},"执":{"docs":{},"行":{"docs":{},"下":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"块":{"docs":{},",":{"docs":{},"需":{"docs":{},"要":{"docs":{},"显":{"docs":{},"式":{"docs":{},"地":{"docs":{},"在":{"docs":{},"你":{"docs":{},"需":{"docs":{},"要":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"块":{"docs":{},"里":{"docs":{},"使":{"docs":{},"用":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"语":{"docs":{},"句":{"docs":{},"。":{"docs":{},"关":{"docs":{},"于":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"语":{"docs":{},"句":{"docs":{},"的":{"docs":{},"更":{"docs":{},"多":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"请":{"docs":{},"参":{"docs":{},"考":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"请":{"docs":{},"使":{"docs":{},"用":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}},"匹":{"docs":{},"配":{"docs":{},"了":{"docs":{},"余":{"docs":{},"下":{"docs":{},"所":{"docs":{},"有":{"docs":{},"可":{"docs":{},"能":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"于":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"五":{"docs":{},"个":{"docs":{},"元":{"docs":{},"音":{"docs":{},",":{"docs":{},"第":{"docs":{},"二":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}},"的":{"docs":{},"模":{"docs":{},"式":{"docs":{},"允":{"docs":{},"许":{"docs":{},"将":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"的":{"docs":{},"值":{"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":{},"a":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}},"都":{"docs":{},"必":{"docs":{},"须":{"docs":{},"包":{"docs":{},"含":{"docs":{},"至":{"docs":{},"少":{"docs":{},"一":{"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":{},"a":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"里":{"docs":{},"引":{"docs":{},"用":{"docs":{},"。":{"docs":{},"在":{"docs":{},"这":{"docs":{},"个":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"它":{"docs":{},"们":{"docs":{},"用":{"docs":{},"于":{"docs":{},"简":{"docs":{},"化":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}},"快":{"docs":{},"没":{"docs":{},"有":{"docs":{},"实":{"docs":{},"际":{"docs":{},"的":{"docs":{},"意":{"docs":{},"义":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"在":{"docs":{},"这":{"docs":{},"个":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{},"了":{"docs":{},"默":{"docs":{},"认":{"docs":{},"块":{"docs":{},"来":{"docs":{},"处":{"docs":{},"理":{"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":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"都":{"docs":{},"声":{"docs":{},"明":{"docs":{},"了":{"docs":{},"常":{"docs":{},"量":{"docs":{},"x":{"docs":{},"和":{"docs":{},"y":{"docs":{},"的":{"docs":{},"占":{"docs":{},"位":{"docs":{},"符":{"docs":{},",":{"docs":{},"用":{"docs":{},"于":{"docs":{},"临":{"docs":{},"时":{"docs":{},"获":{"docs":{},"取":{"docs":{},"元":{"docs":{},"组":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"或":{"docs":{},"两":{"docs":{},"个":{"docs":{},"值":{"docs":{},"。":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"—":{"docs":{},"—":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"e":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"两":{"docs":{},"个":{"docs":{},"值":{"docs":{},"。":{"docs":{},"这":{"docs":{},"些":{"docs":{},"常":{"docs":{},"量":{"docs":{},"被":{"docs":{},"用":{"docs":{},"作":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"的":{"docs":{},"一":{"docs":{},"部":{"docs":{},"分":{"docs":{},",":{"docs":{},"从":{"docs":{},"而":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"动":{"docs":{},"态":{"docs":{},"的":{"docs":{},"过":{"docs":{},"滤":{"docs":{},"器":{"docs":{},"(":{"docs":{},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},"。":{"docs":{},"当":{"docs":{},"且":{"docs":{},"仅":{"docs":{},"当":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"的":{"docs":{},"条":{"docs":{},"件":{"docs":{},"为":{"docs":{},"真":{"docs":{},"时":{"docs":{},",":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"到":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"代":{"docs":{},"码":{"docs":{},"执":{"docs":{},"行":{"docs":{},"的":{"docs":{},"一":{"docs":{},"条":{"docs":{},"分":{"docs":{},"支":{"docs":{},",":{"docs":{},"这":{"docs":{},"与":{"docs":{},"i":{"docs":{},"f":{"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":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}},"s":{"docs":{},"里":{"docs":{},"用":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}},"-":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.008547008547008548}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.008547008547008548}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"a":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}}}}}}}},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":1.6840579710144925},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{},"定":{"docs":{},"义":{"docs":{},"一":{"docs":{},"个":{"docs":{},"类":{"docs":{},"层":{"docs":{},"次":{"docs":{},"作":{"docs":{},"为":{"docs":{},"例":{"docs":{},"子":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.8333333333333333}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}},"f":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"b":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}},"a":{"docs":{},"d":{"docs":{},"a":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}},"'":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}},"l":{"docs":{},"l":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.23396460929578386},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00404040404040404},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0047430830039525695},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002306805074971165},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.28872936109117014}}},"c":{"docs":{},"u":{"docs":{},"l":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0019223375624759708}}}}}},"u":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0019223375624759708}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},".":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}}},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013}},"i":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.007518796992481203}}},"x":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.007518796992481203}}},"属":{"docs":{},"性":{"docs":{},"之":{"docs":{},"后":{"docs":{},"被":{"docs":{},"设":{"docs":{},"置":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"值":{"docs":{},"(":{"1":{"5":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}},"docs":{}},"docs":{}}}}}}}}}}}}}}},".":{"docs":{},"i":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}},"x":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}},"'":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}},"和":{"docs":{},"s":{"docs":{},"i":{"docs":{},"z":{"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":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},":":{"docs":{},"s":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}},"c":{"docs":{},"k":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.013651877133105802},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.8459815546772068},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}},"e":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}},"s":{"docs":{},"n":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}},"e":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":1.0519568151147098},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.006445672191528545},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.007032348804500703},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0044742729306487695},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.008620689655172414},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.006696428571428571}},"e":{"docs":{},"r":{"1":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.009398496240601503}}},"2":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}},"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}},"s":{"docs":{},"(":{"docs":{},"章":{"docs":{},"节":{"docs":{},"信":{"docs":{},"息":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}},"所":{"docs":{},"有":{"docs":{},"的":{"docs":{},"的":{"docs":{},"可":{"docs":{},"能":{"docs":{},"性":{"docs":{},"都":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"出":{"docs":{},"来":{"docs":{},"是":{"docs":{},"不":{"docs":{},"现":{"docs":{},"实":{"docs":{},"的":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"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":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"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":{},"语":{"docs":{},"句":{"docs":{},"。":{"docs":{},"一":{"docs":{},"旦":{"docs":{},"落":{"docs":{},"入":{"docs":{},"到":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"分":{"docs":{},"支":{"docs":{},"中":{"docs":{},"后":{"docs":{},",":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"语":{"docs":{},"句":{"docs":{},"就":{"docs":{},"完":{"docs":{},"成":{"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":{},"f":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.004219409282700422}}}}}}}},".":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}},"是":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"型":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"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":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"添":{"docs":{},"加":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"计":{"docs":{},"算":{"docs":{},"实":{"docs":{},"例":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"即":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"返":{"docs":{},"回":{"docs":{},"合":{"docs":{},"适":{"docs":{},"的":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"新":{"docs":{},"的":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},")":{"docs":{},"\\":{"0":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}},"docs":{}}}}}}}}},"i":{"docs":{},"n":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":5.003311258278146}},"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":{},"本":{"docs":{},"的":{"docs":{},"过":{"docs":{},"程":{"docs":{},",":{"docs":{},"它":{"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":{},")":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"的":{"docs":{},"目":{"docs":{},"标":{"docs":{},"有":{"docs":{},"值":{"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":{},")":{"docs":{},",":{"docs":{},"则":{"docs":{},"这":{"docs":{},"种":{"docs":{},"调":{"docs":{},"用":{"docs":{},"将":{"docs":{},"返":{"docs":{},"回":{"docs":{},"空":{"docs":{},"(":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},")":{"docs":{},"。":{"docs":{},"多":{"docs":{},"次":{"docs":{},"请":{"docs":{},"求":{"docs":{},"或":{"docs":{},"调":{"docs":{},"用":{"docs":{},"可":{"docs":{},"以":{"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":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813}}}}}}}}}},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813}}}}}}}}}}}}}},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"它":{"docs":{},"的":{"docs":{},"返":{"docs":{},"回":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}},"r":{"docs":{},"i":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0056179775280898875}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.010575793184488837},"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.03734439834024896},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.01015228426395939},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.020676691729323307},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.012853470437017995},"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.005917159763313609},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.022222222222222223},"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.019867549668874173},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.8491436100131752},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.017543859649122806},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.011695906432748537},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.01306532663316583},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}},"前":{"docs":{},"添":{"docs":{},"加":{"docs":{},"@":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"特":{"docs":{},"性":{"docs":{},"(":{"docs":{},"@":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}},")":{"docs":{},"来":{"docs":{},"将":{"docs":{},"整":{"docs":{},"个":{"docs":{},"类":{"docs":{},"标":{"docs":{},"记":{"docs":{},"为":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}},"和":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}},")":{"docs":{},"、":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},")":{"docs":{},"和":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"(":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"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":{},"快":{"docs":{},"捷":{"docs":{},"方":{"docs":{},"式":{"docs":{},"。":{"docs":{},"举":{"docs":{},"例":{"docs":{},"来":{"docs":{},"说":{"docs":{},",":{"docs":{},"用":{"docs":{},"下":{"docs":{},"标":{"docs":{},"访":{"docs":{},"问":{"docs":{},"一":{"docs":{},"个":{"docs":{},"数":{"docs":{},"组":{"docs":{},"(":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"\"":{"docs":{},"x":{"docs":{},"-":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"\"":{"docs":{},">":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"它":{"docs":{},"创":{"docs":{},"建":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"以":{"docs":{},"存":{"docs":{},"储":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},"该":{"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":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"表":{"docs":{},"示":{"docs":{},"协":{"docs":{},"议":{"docs":{},"中":{"docs":{},"的":{"docs":{},"成":{"docs":{},"员":{"docs":{},"为":{"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":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}}}}}}}},"、":{"docs":{},"d":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"、":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"、":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"、":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"、":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"、":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"、":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"、":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"、":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"c":{"docs":{},"、":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"、":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"、":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{},"s":{"docs":{},"、":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}},"u":{"docs":{},"s":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.015503875968992248}}}}},"u":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.4375915974596971}}}}},"u":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":1.3127747923790913},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00404040404040404},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.006030150753768844},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"需":{"docs":{},"要":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}},")":{"docs":{},"包":{"docs":{},"含":{"docs":{},"了":{"docs":{},"可":{"docs":{},"执":{"docs":{},"行":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"(":{"docs":{},"跟":{"docs":{},"方":{"docs":{},"法":{"docs":{},"主":{"docs":{},"体":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.003015075376884422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.005025125628140704},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00411522633744856}},"e":{"docs":{},"­":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"­":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}},"s":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}},"u":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.009398496240601503},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.005141388174807198}},"值":{"docs":{},"大":{"docs":{},"于":{"docs":{},"任":{"docs":{},"何":{"docs":{},"之":{"docs":{},"前":{"docs":{},"任":{"docs":{},"意":{"docs":{},"a":{"docs":{},"u":{"docs":{},"d":{"docs":{},"i":{"docs":{},"o":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"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":{},"x":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"包":{"docs":{},"含":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}},"的":{"docs":{},"新":{"docs":{},"值":{"docs":{},"大":{"docs":{},"于":{"docs":{},"允":{"docs":{},"许":{"docs":{},"的":{"docs":{},"阈":{"docs":{},"值":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},",":{"docs":{},"属":{"docs":{},"性":{"docs":{},"监":{"docs":{},"视":{"docs":{},"器":{"docs":{},"将":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"的":{"docs":{},"值":{"docs":{},"限":{"docs":{},"定":{"docs":{},"为":{"docs":{},"阈":{"docs":{},"值":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"实":{"docs":{},"例":{"docs":{},"方":{"docs":{},"法":{"docs":{},"a":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"会":{"docs":{},"在":{"docs":{},"更":{"docs":{},"新":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"之":{"docs":{},"前":{"docs":{},"检":{"docs":{},"查":{"docs":{},"所":{"docs":{},"请":{"docs":{},"求":{"docs":{},"的":{"docs":{},"新":{"docs":{},"等":{"docs":{},"级":{"docs":{},"是":{"docs":{},"否":{"docs":{},"已":{"docs":{},"经":{"docs":{},"解":{"docs":{},"锁":{"docs":{},"。":{"docs":{},"a":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"方":{"docs":{},"法":{"docs":{},"返":{"docs":{},"回":{"docs":{},"布":{"docs":{},"尔":{"docs":{},"值":{"docs":{},"以":{"docs":{},"指":{"docs":{},"示":{"docs":{},"是":{"docs":{},"否":{"docs":{},"确":{"docs":{},"实":{"docs":{},"能":{"docs":{},"够":{"docs":{},"设":{"docs":{},"置":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.008438818565400843}},"e":{"docs":{},"逐":{"docs":{},"渐":{"docs":{},"接":{"docs":{},"近":{"docs":{},"到":{"0":{"docs":{},"是":{"docs":{},"需":{"docs":{},"要":{"docs":{},"向":{"docs":{},"正":{"docs":{},"数":{"docs":{},"走":{"docs":{},"还":{"docs":{},"是":{"docs":{},"向":{"docs":{},"负":{"docs":{},"数":{"docs":{},"走":{"docs":{},"。":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"的":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{},"是":{"3":{"docs":{},",":{"docs":{},"这":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.007614213197969543}}}}}}}}}}},"i":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}},"t":{"docs":{},"i":{"docs":{},"z":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}}}}},"b":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013}},"(":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}},"的":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},",":{"docs":{},"表":{"docs":{},"示":{"docs":{},"三":{"docs":{},"维":{"docs":{},"空":{"docs":{},"间":{"docs":{},"的":{"docs":{},"立":{"docs":{},"方":{"docs":{},"体":{"docs":{},",":{"docs":{},"包":{"docs":{},"含":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},"、":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"和":{"docs":{},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{},"h":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"还":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"v":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"的":{"docs":{},"只":{"docs":{},"读":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"用":{"docs":{},"来":{"docs":{},"返":{"docs":{},"回":{"docs":{},"立":{"docs":{},"方":{"docs":{},"体":{"docs":{},"的":{"docs":{},"体":{"docs":{},"积":{"docs":{},",":{"docs":{},"设":{"docs":{},"置":{"docs":{},"v":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"的":{"docs":{},"值":{"docs":{},"毫":{"docs":{},"无":{"docs":{},"意":{"docs":{},"义":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"无":{"docs":{},"法":{"docs":{},"确":{"docs":{},"定":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},"、":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"和":{"docs":{},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.01818181818181818},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.006535947712418301}},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}},"和":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}},"之":{"docs":{},"间":{"docs":{},"的":{"docs":{},"关":{"docs":{},"系":{"docs":{},"与":{"docs":{},"前":{"docs":{},"面":{"docs":{},"弱":{"docs":{},"引":{"docs":{},"用":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"和":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"的":{"docs":{},"关":{"docs":{},"系":{"docs":{},"截":{"docs":{},"然":{"docs":{},"不":{"docs":{},"同":{"docs":{},"。":{"docs":{},"在":{"docs":{},"这":{"docs":{},"个":{"docs":{},"数":{"docs":{},"据":{"docs":{},"模":{"docs":{},"型":{"docs":{},"中":{"docs":{},",":{"docs":{},"一":{"docs":{},"个":{"docs":{},"客":{"docs":{},"户":{"docs":{},"可":{"docs":{},"能":{"docs":{},"有":{"docs":{},"或":{"docs":{},"者":{"docs":{},"没":{"docs":{},"有":{"docs":{},"信":{"docs":{},"用":{"docs":{},"卡":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"一":{"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":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"类":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"类":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"非":{"docs":{},"可":{"docs":{},"选":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"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":{},"性":{"docs":{},"的":{"docs":{},"值":{"docs":{},"不":{"docs":{},"允":{"docs":{},"许":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},"持":{"docs":{},"有":{"docs":{},"对":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"而":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"实":{"docs":{},"例":{"docs":{},"持":{"docs":{},"有":{"docs":{},"对":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"该":{"docs":{},"实":{"docs":{},"例":{"docs":{},"被":{"docs":{},"销":{"docs":{},"毁":{"docs":{},"了":{"docs":{},"。":{"docs":{},"其":{"docs":{},"后":{"docs":{},",":{"docs":{},"再":{"docs":{},"也":{"docs":{},"没":{"docs":{},"有":{"docs":{},"指":{"docs":{},"向":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"无":{"docs":{},"主":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"当":{"docs":{},"你":{"docs":{},"断":{"docs":{},"开":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},"变":{"docs":{},"量":{"docs":{},"持":{"docs":{},"有":{"docs":{},"的":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"时":{"docs":{},",":{"docs":{},"再":{"docs":{},"也":{"docs":{},"没":{"docs":{},"有":{"docs":{},"指":{"docs":{},"向":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"用":{"docs":{},"它":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"并":{"docs":{},"将":{"docs":{},"新":{"docs":{},"创":{"docs":{},"建":{"docs":{},"的":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"实":{"docs":{},"例":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"为":{"docs":{},"客":{"docs":{},"户":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}},"语":{"docs":{},"言":{"docs":{},"和":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0044742729306487695}},"中":{"docs":{},"的":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"更":{"docs":{},"加":{"docs":{},"清":{"docs":{},"晰":{"docs":{},"和":{"docs":{},"可":{"docs":{},"预":{"docs":{},"测":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"避":{"docs":{},"免":{"docs":{},"无":{"docs":{},"意":{"docs":{},"识":{"docs":{},"地":{"docs":{},"执":{"docs":{},"行":{"docs":{},"多":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}},"里":{"docs":{},"的":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}},"中":{"docs":{},"的":{"docs":{},"指":{"docs":{},"针":{"docs":{},"类":{"docs":{},"似":{"docs":{},",":{"docs":{},"不":{"docs":{},"同":{"docs":{},"的":{"docs":{},"是":{"docs":{},"并":{"docs":{},"不":{"docs":{},"直":{"docs":{},"接":{"docs":{},"指":{"docs":{},"向":{"docs":{},"内":{"docs":{},"存":{"docs":{},"中":{"docs":{},"的":{"docs":{},"某":{"docs":{},"个":{"docs":{},"地":{"docs":{},"址":{"docs":{},",":{"docs":{},"而":{"docs":{},"且":{"docs":{},"也":{"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":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}}}}}}}}},"风":{"docs":{},"格":{"docs":{},"的":{"docs":{},"落":{"docs":{},"入":{"docs":{},"(":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},")":{"docs":{},"的":{"docs":{},"特":{"docs":{},"性":{"docs":{},",":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"每":{"docs":{},"个":{"docs":{},"需":{"docs":{},"要":{"docs":{},"该":{"docs":{},"特":{"docs":{},"性":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"分":{"docs":{},"支":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"。":{"docs":{},"下":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"使":{"docs":{},"用":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.005076142131979695}},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.005076142131979695}}}}}}}},"的":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},"属":{"docs":{},"性":{"docs":{},"确":{"docs":{},"已":{"docs":{},"改":{"docs":{},"为":{"docs":{},"了":{"2":{"0":{"4":{"8":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}},"变":{"docs":{},"量":{"docs":{},",":{"docs":{},"其":{"docs":{},"值":{"docs":{},"为":{"docs":{},"之":{"docs":{},"前":{"docs":{},"声":{"docs":{},"明":{"docs":{},"的":{"docs":{},"h":{"docs":{},"d":{"docs":{},"。":{"docs":{},"因":{"docs":{},"为":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"c":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"的":{"docs":{},"值":{"docs":{},"其":{"docs":{},"实":{"docs":{},"是":{"docs":{},"h":{"docs":{},"d":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"拷":{"docs":{},"贝":{"docs":{},"副":{"docs":{},"本":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"h":{"docs":{},"d":{"docs":{},"本":{"docs":{},"身":{"docs":{},"。":{"docs":{},"尽":{"docs":{},"管":{"docs":{},"h":{"docs":{},"d":{"docs":{},"和":{"docs":{},"c":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"有":{"docs":{},"着":{"docs":{},"相":{"docs":{},"同":{"docs":{},"的":{"docs":{},"宽":{"docs":{},"(":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},")":{"docs":{},"和":{"docs":{},"高":{"docs":{},"(":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00808080808080808}},"z":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}}}}},"y":{"docs":{},"!":{"docs":{},")":{"docs":{},"的":{"docs":{},"方":{"docs":{},"式":{"docs":{},",":{"docs":{},"将":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"属":{"docs":{},"性":{"docs":{},"声":{"docs":{},"明":{"docs":{},"为":{"docs":{},"显":{"docs":{},"示":{"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":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"默":{"docs":{},"认":{"docs":{},"值":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"将":{"docs":{},"实":{"docs":{},"例":{"docs":{},"保":{"docs":{},"存":{"docs":{},"为":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"c":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}},"e":{"docs":{},"(":{"docs":{},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{},"i":{"docs":{},"u":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}},",":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},",":{"docs":{},"a":{"docs":{},"n":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{},"并":{"docs":{},"没":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"相":{"docs":{},"同":{"docs":{},"的":{"docs":{},"基":{"docs":{},"类":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"采":{"docs":{},"用":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"r":{"docs":{},"y":{"docs":{},"都":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"了":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"前":{"docs":{},"者":{"docs":{},"把":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"写":{"docs":{},"为":{"docs":{},"计":{"docs":{},"算":{"docs":{},"型":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"后":{"docs":{},"者":{"docs":{},"则":{"docs":{},"把":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"c":{"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":{},"用":{"docs":{},"内":{"docs":{},"存":{"docs":{},"中":{"docs":{},"的":{"docs":{},"地":{"docs":{},"址":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00404040404040404}},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}},"中":{"docs":{},"的":{"docs":{},"比":{"docs":{},"较":{"docs":{},"运":{"docs":{},"算":{"docs":{},"都":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}}}}}}}}}}}}}}}},"和":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}}}}}}}}}}}}},"m":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}},"-":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}},"c":{"6":{"6":{"9":{"9":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}},"s":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}},"颜":{"docs":{},"色":{"docs":{},"#":{"docs":{},"c":{"docs":{},"c":{"6":{"6":{"9":{"9":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"用":{"docs":{},"十":{"docs":{},"六":{"docs":{},"进":{"docs":{},"制":{"0":{"docs":{},"x":{"docs":{},"c":{"docs":{},"c":{"6":{"6":{"9":{"9":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}},"docs":{}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"等":{"docs":{},"效":{"docs":{},"于":{"docs":{},"一":{"docs":{},"个":{"docs":{},"从":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}},"继":{"docs":{},"承":{"docs":{},"而":{"docs":{},"来":{"docs":{},"的":{"docs":{},"新":{"docs":{},"协":{"docs":{},"议":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}},"?":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.006696428571428571},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.008960573476702509},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}},"a":{"docs":{},"t":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.005639097744360902}}}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}},";":{"docs":{},")":{"docs":{},"元":{"docs":{},"组":{"docs":{},"把":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"值":{"docs":{},"和":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174}}}}}}}}},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}},"b":{"docs":{},"y":{"docs":{},"f":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"b":{"docs":{},"y":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.005639097744360902}},".":{"docs":{},"v":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.005639097744360902},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.007366482504604052},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0044742729306487695},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":1.1196581196581197}},"循":{"docs":{},"环":{"docs":{},"来":{"docs":{},"遍":{"docs":{},"历":{"docs":{},"某":{"docs":{},"个":{"docs":{},"字":{"docs":{},"典":{"docs":{},"中":{"docs":{},"的":{"docs":{},"键":{"docs":{},"值":{"docs":{},"对":{"docs":{},"。":{"docs":{},"每":{"docs":{},"一":{"docs":{},"个":{"docs":{},"字":{"docs":{},"典":{"docs":{},"中":{"docs":{},"的":{"docs":{},"数":{"docs":{},"据":{"docs":{},"项":{"docs":{},"都":{"docs":{},"由":{"docs":{},"(":{"docs":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"介":{"docs":{},"绍":{"docs":{},"请":{"docs":{},"参":{"docs":{},"见":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}},"请":{"docs":{},"参":{"docs":{},"见":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}},"和":{"docs":{},"半":{"docs":{},"闭":{"docs":{},"区":{"docs":{},"间":{"docs":{},"操":{"docs":{},"作":{"docs":{},"(":{"docs":{},".":{"docs":{},".":{"docs":{},")":{"docs":{},"来":{"docs":{},"迭":{"docs":{},"代":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"。":{"docs":{},"对":{"docs":{},"于":{"docs":{},"每":{"docs":{},"个":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},",":{"docs":{},"函":{"docs":{},"数":{"docs":{},"检":{"docs":{},"查":{"docs":{},"是":{"docs":{},"否":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"不":{"docs":{},"等":{"docs":{},"于":{"docs":{},"对":{"docs":{},"应":{"docs":{},"的":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"s":{"docs":{},"不":{"docs":{},"等":{"docs":{},",":{"docs":{},"则":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"容":{"docs":{},"器":{"docs":{},"不":{"docs":{},"匹":{"docs":{},"配":{"docs":{},",":{"docs":{},"返":{"docs":{},"回":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"条":{"docs":{},"件":{"docs":{},"递":{"docs":{},"增":{"docs":{},"(":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":1.6666666666666665}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"语":{"docs":{},"句":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"或":{"docs":{},"常":{"docs":{},"量":{"docs":{},"申":{"docs":{},"明":{"docs":{},"时":{"docs":{},",":{"docs":{},"它":{"docs":{},"可":{"docs":{},"以":{"docs":{},"包":{"docs":{},"含":{"docs":{},"通":{"docs":{},"配":{"docs":{},"符":{"docs":{},"模":{"docs":{},"式":{"docs":{},",":{"docs":{},"标":{"docs":{},"识":{"docs":{},"符":{"docs":{},"模":{"docs":{},"式":{"docs":{},"或":{"docs":{},"者":{"docs":{},"其":{"docs":{},"他":{"docs":{},"包":{"docs":{},"含":{"docs":{},"这":{"docs":{},"两":{"docs":{},"种":{"docs":{},"模":{"docs":{},"式":{"docs":{},"的":{"docs":{},"模":{"docs":{},"式":{"docs":{},"。":{"docs":{},"例":{"docs":{},"如":{"docs":{},",":{"docs":{},"下":{"docs":{},"面":{"docs":{},"这":{"docs":{},"段":{"docs":{},"代":{"docs":{},"码":{"docs":{},"是":{"docs":{},"不":{"docs":{},"正":{"docs":{},"确":{"docs":{},"的":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"(":{"docs":{},"x":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"允":{"docs":{},"许":{"docs":{},"在":{"docs":{},"重":{"docs":{},"复":{"docs":{},"执":{"docs":{},"行":{"docs":{},"代":{"docs":{},"码":{"docs":{},"块":{"docs":{},"的":{"docs":{},"同":{"docs":{},"时":{"docs":{},",":{"docs":{},"迭":{"docs":{},"代":{"docs":{},"集":{"docs":{},"合":{"docs":{},"(":{"docs":{},"或":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"s":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}},"在":{"docs":{},"循":{"docs":{},"环":{"docs":{},"开":{"docs":{},"始":{"docs":{},"前":{"docs":{},"会":{"docs":{},"调":{"docs":{},"用":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"的":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"方":{"docs":{},"法":{"docs":{},"来":{"docs":{},"获":{"docs":{},"取":{"docs":{},"一":{"docs":{},"个":{"docs":{},"生":{"docs":{},"成":{"docs":{},"器":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"这":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},")":{"docs":{},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"接":{"docs":{},"下":{"docs":{},"来":{"docs":{},"循":{"docs":{},"环":{"docs":{},"开":{"docs":{},"始":{"docs":{},",":{"docs":{},"调":{"docs":{},"用":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"的":{"docs":{},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"方":{"docs":{},"法":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"其":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"不":{"docs":{},"是":{"docs":{},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},",":{"docs":{},"它":{"docs":{},"将":{"docs":{},"会":{"docs":{},"被":{"docs":{},"赋":{"docs":{},"给":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},",":{"docs":{},"然":{"docs":{},"后":{"docs":{},"执":{"docs":{},"行":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"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":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"也":{"docs":{},"不":{"docs":{},"会":{"docs":{},"执":{"docs":{},"行":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},",":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.005698005698005698}}}}}}},"i":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.005698005698005698}}}}}},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"循":{"docs":{},"环":{"docs":{},"体":{"docs":{},"中":{"docs":{},",":{"docs":{},"在":{"docs":{},"调":{"docs":{},"用":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.011396011396011397}}}}}}},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192}}}}},"条":{"docs":{},"件":{"docs":{},"递":{"docs":{},"增":{"docs":{},"(":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.003952569169960474}},"e":{"docs":{},"-":{"docs":{},"u":{"docs":{},"n":{"docs":{},"w":{"docs":{},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}}}}}}}},"d":{"docs":{},"-":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}},"e":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}},"m":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.008695652173913044},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}},"—":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}},"语":{"docs":{},"句":{"docs":{},"、":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{},"语":{"docs":{},"句":{"docs":{},"、":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"和":{"docs":{},"d":{"docs":{},"o":{"docs":{},"-":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}},"中":{"docs":{},",":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"执":{"docs":{},"行":{"docs":{},"后":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"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":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.005747126436781609},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002306805074971165},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}}}},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}},"u":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}},"l":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.003683241252302026},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.026845637583892617},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.003015075376884422},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.005698005698005698}},"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":{},"况":{"docs":{},"下":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"同":{"docs":{},"样":{"docs":{},"的":{"docs":{},",":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}}}}},"l":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":1.113960113960114}},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.004604051565377533},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":1.1196581196581197}},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"不":{"docs":{},"会":{"docs":{},"检":{"docs":{},"查":{"docs":{},"它":{"docs":{},"下":{"docs":{},"一":{"docs":{},"个":{"docs":{},"将":{"docs":{},"会":{"docs":{},"落":{"docs":{},"入":{"docs":{},"执":{"docs":{},"行":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"中":{"docs":{},"的":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"条":{"docs":{},"件":{"docs":{},"。":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"简":{"docs":{},"单":{"docs":{},"地":{"docs":{},"使":{"docs":{},"代":{"docs":{},"码":{"docs":{},"执":{"docs":{},"行":{"docs":{},"继":{"docs":{},"续":{"docs":{},"连":{"docs":{},"接":{"docs":{},"到":{"docs":{},"下":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"中":{"docs":{},"的":{"docs":{},"执":{"docs":{},"行":{"docs":{},"代":{"docs":{},"码":{"docs":{},",":{"docs":{},"这":{"docs":{},"和":{"docs":{},"c":{"docs":{},"语":{"docs":{},"言":{"docs":{},"标":{"docs":{},"准":{"docs":{},"中":{"docs":{},"的":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}},"语":{"docs":{},"句":{"docs":{},"可":{"docs":{},"出":{"docs":{},"现":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"语":{"docs":{},"句":{"docs":{},"中":{"docs":{},"的":{"docs":{},"任":{"docs":{},"意":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"里":{"docs":{},",":{"docs":{},"但":{"docs":{},"不":{"docs":{},"能":{"docs":{},"出":{"docs":{},"现":{"docs":{},"在":{"docs":{},"最":{"docs":{},"后":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"块":{"docs":{},"中":{"docs":{},"。":{"docs":{},"同":{"docs":{},"时":{"docs":{},",":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"语":{"docs":{},"句":{"docs":{},"也":{"docs":{},"不":{"docs":{},"能":{"docs":{},"把":{"docs":{},"控":{"docs":{},"制":{"docs":{},"权":{"docs":{},"传":{"docs":{},"递":{"docs":{},"给":{"docs":{},"使":{"docs":{},"用":{"docs":{},"了":{"docs":{},"可":{"docs":{},"选":{"docs":{},"绑":{"docs":{},"定":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"于":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"语":{"docs":{},"句":{"docs":{},"中":{"docs":{},"传":{"docs":{},"递":{"docs":{},"控":{"docs":{},"制":{"docs":{},"权":{"docs":{},"。":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"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":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"传":{"docs":{},"递":{"docs":{},"给":{"docs":{},"下":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"。":{"docs":{},"这":{"docs":{},"种":{"docs":{},"传":{"docs":{},"递":{"docs":{},"是":{"docs":{},"无":{"docs":{},"条":{"docs":{},"件":{"docs":{},"的":{"docs":{},",":{"docs":{},"即":{"docs":{},"使":{"docs":{},"下":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"的":{"docs":{},"值":{"docs":{},"与":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"字":{"docs":{},"符":{"docs":{},"的":{"docs":{},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{},"-":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}},"docs":{}},"docs":{}}}}}}}},"的":{"4":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}},"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}},",":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}}},"i":{"docs":{},"b":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036},"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.019867549668874173},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.016260162601626018},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0019223375624759708}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0066815144766146995}}}}}},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"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":{},",":{"docs":{},"例":{"docs":{},"如":{"docs":{},"计":{"docs":{},"算":{"docs":{},"型":{"docs":{},"属":{"docs":{},"性":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.013245033112582781}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}}}}}}}}}},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0019223375624759708}}}}},"s":{"docs":{},"i":{"docs":{},"x":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.012448132780082987},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"属":{"docs":{},"性":{"docs":{},"或":{"docs":{},"下":{"docs":{},"标":{"docs":{},",":{"docs":{},"在":{"docs":{},"编":{"docs":{},"译":{"docs":{},"时":{"docs":{},"会":{"docs":{},"报":{"docs":{},"错":{"docs":{},"。":{"docs":{},"在":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"中":{"docs":{},",":{"docs":{},"你":{"docs":{},"添":{"docs":{},"加":{"docs":{},"到":{"docs":{},"类":{"docs":{},"里":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"属":{"docs":{},"性":{"docs":{},"或":{"docs":{},"下":{"docs":{},"标":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"的":{"docs":{},"定":{"docs":{},"义":{"docs":{},"里":{"docs":{},"标":{"docs":{},"记":{"docs":{},"为":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"来":{"docs":{},"防":{"docs":{},"止":{"docs":{},"它":{"docs":{},"们":{"docs":{},"被":{"docs":{},"重":{"docs":{},"写":{"docs":{},",":{"docs":{},"只":{"docs":{},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"声":{"docs":{},"明":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"前":{"docs":{},"加":{"docs":{},"上":{"docs":{},"@":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"特":{"docs":{},"性":{"docs":{},"即":{"docs":{},"可":{"docs":{},"。":{"docs":{},"(":{"docs":{},"例":{"docs":{},"如":{"docs":{},":":{"docs":{},"@":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.011970534069981584},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.007518796992481203}},"e":{"docs":{},",":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},",":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}},"这":{"docs":{},"表":{"docs":{},"明":{"docs":{},"你":{"docs":{},"必":{"docs":{},"须":{"docs":{},"刚":{"docs":{},"好":{"docs":{},"落":{"docs":{},"在":{"docs":{},"方":{"docs":{},"格":{"2":{"5":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}},"docs":{}},"docs":{}}}}}}}}}}}}}},",":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},",":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"(":{"docs":{},"[":{"3":{"docs":{},".":{"1":{"4":{"1":{"5":{"9":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{},"\"":{"docs":{},"m":{"docs":{},"i":{"docs":{},"k":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}},"<":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}},">":{"docs":{},"(":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}},"中":{"docs":{},"这":{"docs":{},"个":{"docs":{},"单":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"写":{"docs":{},"做":{"docs":{},":":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"现":{"docs":{},"在":{"docs":{},"则":{"docs":{},"可":{"docs":{},"以":{"docs":{},"成":{"docs":{},"功":{"docs":{},"的":{"docs":{},"编":{"docs":{},"译":{"docs":{},"过":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"作":{"docs":{},"用":{"docs":{},"于":{"docs":{},"任":{"docs":{},"何":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"如":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"或":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"用":{"docs":{},"某":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}},"(":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}},"的":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"版":{"docs":{},"本":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"。":{"docs":{},"请":{"docs":{},"注":{"docs":{},"意":{"docs":{},"这":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"仍":{"docs":{},"然":{"docs":{},"返":{"docs":{},"回":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"非":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"该":{"docs":{},"函":{"docs":{},"数":{"docs":{},"功":{"docs":{},"能":{"docs":{},"是":{"docs":{},"去":{"docs":{},"查":{"docs":{},"找":{"docs":{},"包":{"docs":{},"含":{"docs":{},"一":{"docs":{},"给":{"docs":{},"定":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{},"的":{"docs":{},"数":{"docs":{},"组":{"docs":{},"。":{"docs":{},"若":{"docs":{},"查":{"docs":{},"找":{"docs":{},"到":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"的":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},",":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"函":{"docs":{},"数":{"docs":{},"返":{"docs":{},"回":{"docs":{},"该":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"在":{"docs":{},"数":{"docs":{},"组":{"docs":{},"中":{"docs":{},"的":{"docs":{},"索":{"docs":{},"引":{"docs":{},"值":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},",":{"docs":{},"反":{"docs":{},"之":{"docs":{},"则":{"docs":{},"返":{"docs":{},"回":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"e":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}},")":{"docs":{},",":{"docs":{},"它":{"docs":{},"返":{"docs":{},"回":{"docs":{},"的":{"docs":{},"是":{"docs":{},"当":{"docs":{},"前":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}},"m":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}},"l":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}},"x":{"docs":{},"e":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013}},"e":{"docs":{},"(":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013}}}}}}}}}}}},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"包":{"docs":{},"含":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"的":{"docs":{},"变":{"docs":{},"量":{"docs":{},"存":{"docs":{},"储":{"docs":{},"属":{"docs":{},"性":{"docs":{},"和":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},"的":{"docs":{},"常":{"docs":{},"量":{"docs":{},"存":{"docs":{},"储":{"docs":{},"属":{"docs":{},"性":{"docs":{},"。":{"docs":{},"在":{"docs":{},"上":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}},".":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"b":{"docs":{},"y":{"docs":{},"x":{"docs":{},"(":{"2":{"docs":{},".":{"0":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}}}}}}}}},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.005847953216374269},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}},"并":{"docs":{},"指":{"docs":{},"定":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{},"为":{"4":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}}}}}}}},"表":{"docs":{},"示":{"3":{"2":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}},"docs":{}},"docs":{}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"-":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.006696428571428571}},"-":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.006696428571428571},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}},"p":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}}}}}}},"u":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.004454342984409799}}}},"w":{"docs":{},"章":{"docs":{},"节":{"docs":{},"有":{"docs":{},"该":{"docs":{},"游":{"docs":{},"戏":{"docs":{},"的":{"docs":{},"详":{"docs":{},"细":{"docs":{},"介":{"docs":{},"绍":{"docs":{},")":{"docs":{},"游":{"docs":{},"戏":{"docs":{},"的":{"docs":{},"新":{"docs":{},"版":{"docs":{},"本":{"docs":{},".":{"docs":{},"新":{"docs":{},"版":{"docs":{},"本":{"docs":{},"使":{"docs":{},"用":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"作":{"docs":{},"为":{"docs":{},"骰":{"docs":{},"子":{"docs":{},",":{"docs":{},"并":{"docs":{},"且":{"docs":{},"实":{"docs":{},"现":{"docs":{},"了":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}},"a":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}},"r":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}},"i":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"y":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.010752688172043012}},"e":{"docs":{},"的":{"docs":{},"值":{"docs":{},"从":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{},"!":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"改":{"docs":{},"为":{"docs":{},"了":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"o":{"docs":{},"n":{"docs":{},"j":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"!":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}}}},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"方":{"docs":{},"法":{"docs":{},"来":{"docs":{},"试":{"docs":{},"图":{"docs":{},"找":{"docs":{},"到":{"docs":{},"具":{"docs":{},"有":{"docs":{},"特":{"docs":{},"定":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"的":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"成":{"docs":{},"员":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"例":{"docs":{},"子":{"docs":{},"通":{"docs":{},"过":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"7":{"docs":{},"识":{"docs":{},"别":{"docs":{},"u":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"u":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174}}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.007614213197969543}}}}}},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0282021151586369},"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.02074688796680498},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.03938115330520394},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.014044943820224719},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.04113110539845758},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.01098901098901099},"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.01775147928994083},"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.009933774834437087},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.008620689655172414},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.02882205513784461},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.03288490284005979},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0038446751249519417},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.02046783625730994},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.003015075376884422},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"来":{"docs":{},"声":{"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.49043273476597},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.883610161211529},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.01046337817638266},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.006151480199923107},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.29978463747307965}},"s":{"docs":{},")":{"docs":{},"函":{"docs":{},"数":{"docs":{},"参":{"docs":{},"数":{"docs":{},"与":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.23255813953488372}}}}}}}}}}}}}},"的":{"docs":{},"定":{"docs":{},"义":{"docs":{},"与":{"docs":{},"调":{"docs":{},"用":{"docs":{},"(":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.23255813953488372}}}}}}}}}}}}}}}},",":{"docs":{},"它":{"docs":{},"们":{"docs":{},"定":{"docs":{},"义":{"docs":{},"在":{"docs":{},"全":{"docs":{},"局":{"docs":{},"域":{"docs":{},"中":{"docs":{},"。":{"docs":{},"你":{"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":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},")":{"docs":{},"。":{"docs":{},"这":{"docs":{},"包":{"docs":{},"括":{"docs":{},"在":{"docs":{},"没":{"docs":{},"有":{"docs":{},"权":{"docs":{},"限":{"docs":{},"获":{"docs":{},"取":{"docs":{},"原":{"docs":{},"始":{"docs":{},"源":{"docs":{},"代":{"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":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"中":{"docs":{},"的":{"docs":{},"分":{"docs":{},"类":{"docs":{},"(":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.005847953216374269},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.003015075376884422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}}}}}}}}},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00411522633744856}}}}}}}},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}}}}}},")":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"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":{},"d":{"docs":{},"d":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{},"(":{"docs":{},")":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"中":{"docs":{},",":{"docs":{},"_":{"docs":{},"_":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"_":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}},"作":{"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":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"之":{"docs":{},"前":{"docs":{},"加":{"docs":{},"上":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},";":{"docs":{},"声":{"docs":{},"明":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"和":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"在":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"之":{"docs":{},"前":{"docs":{},"加":{"docs":{},"上":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0037593984962406013}}}}},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0037593984962406013}},"e":{"docs":{},"d":{"docs":{},"协":{"docs":{},"议":{"docs":{},"含":{"docs":{},"有":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},".":{"docs":{},"因":{"docs":{},"此":{"docs":{},"其":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"者":{"docs":{},"必":{"docs":{},"须":{"docs":{},"含":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{},"类":{"docs":{},"型":{"docs":{},"为":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"w":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}},"e":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.005747126436781609}}},"d":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}},")":{"docs":{},"\\":{"docs":{},"n":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}},"(":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"0":{"docs":{},"a":{"docs":{},")":{"docs":{},"、":{"docs":{},"回":{"docs":{},"车":{"docs":{},"符":{"docs":{},"(":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}}}}}}}}}},"c":{"docs":{},")":{"docs":{},"以":{"docs":{},"及":{"docs":{},"空":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},")":{"docs":{},"(":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"0":{"0":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}}}},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}},"h":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808},"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.005875440658049354},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.007518796992481203},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.004604051565377533},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.02531645569620253},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.006711409395973154},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00404040404040404},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.011494252873563218},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}},"-":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813}}}}}}}}}},"p":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.005639097744360902}}}},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.004700352526439483},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}},"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}},"成":{"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"y":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.011135857461024499}}}}}}}},"r":{"docs":{},"e":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.008298755186721992},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.005076142131979695},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.009398496240601503},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00404040404040404},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.005747126436781609},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}},"’":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0030757400999615533}}},"'":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}},"x":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}},"-":{"docs":{},"d":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.03794642857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.011659807956104253}}}}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.011160714285714286},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.003429355281207133}},"a":{"docs":{},"l":{"docs":{},"-":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.011160714285714286},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.003429355281207133}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.009398496240601503},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.008620689655172414}},"=":{"docs":{},"\"":{"1":{"2":{"0":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}},"docs":{}},"6":{"9":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}},"docs":{}},"docs":{}},"2":{"8":{"8":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013}}},"docs":{}},"9":{"0":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}},"docs":{}},"docs":{}},"3":{"5":{"7":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}},"docs":{}},"8":{"7":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}},"docs":{}},"docs":{}},"docs":{}}}}},"t":{"docs":{},"h":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.005076142131979695}}}}}}},"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.005012531328320802}},"协":{"docs":{},"议":{"docs":{},"时":{"docs":{},",":{"docs":{},"通":{"docs":{},"过":{"docs":{},"a":{"docs":{},"s":{"docs":{},"?":{"docs":{},"操":{"docs":{},"作":{"docs":{},"符":{"docs":{},"将":{"docs":{},"其":{"docs":{},"可":{"docs":{},"选":{"docs":{},"绑":{"docs":{},"定":{"docs":{},"(":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}},"/":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}},"h":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.008948545861297539}}}}},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}},"e":{"docs":{},"和":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"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":{},"的":{"docs":{},"所":{"docs":{},"有":{"docs":{},"约":{"docs":{},"束":{"docs":{},",":{"docs":{},"包":{"docs":{},"括":{"docs":{},"任":{"docs":{},"何":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"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":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"要":{"docs":{},"求":{"docs":{},"满":{"docs":{},"足":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"也":{"docs":{},"必":{"docs":{},"须":{"docs":{},"满":{"docs":{},"足":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.011185682326621925}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}},"f":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}},"v":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}},"r":{"docs":{},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.010238907849829351}}}}}}}},"w":{"docs":{},"k":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}}},"m":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.006265664160401002}},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"可":{"docs":{},"以":{"docs":{},"作":{"docs":{},"为":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}},"e":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"o":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036}}}}}},"s":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}},"l":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.004229142637447136}}}}},"t":{"docs":{},"t":{"docs":{},"p":{"2":{"0":{"0":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}},"s":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"4":{"0":{"4":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007168458781362007}},".":{"0":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}},"1":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}},"docs":{}}}}}}}},"docs":{}},"docs":{}},"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.005376344086021506}}}},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.012121212121212121}},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00404040404040404}}}}}},"d":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"中":{"docs":{},"的":{"docs":{},"消":{"docs":{},"息":{"docs":{},"并":{"docs":{},"没":{"docs":{},"有":{"docs":{},"别":{"docs":{},"打":{"docs":{},"印":{"docs":{},",":{"docs":{},"证":{"docs":{},"明":{"docs":{},"了":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"无":{"docs":{},"主":{"docs":{},"引":{"docs":{},"用":{"docs":{},"是":{"docs":{},"正":{"docs":{},"确":{"docs":{},"的":{"docs":{},"解":{"docs":{},"决":{"docs":{},"循":{"docs":{},"环":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"的":{"docs":{},"方":{"docs":{},"法":{"docs":{},"。":{"docs":{},"这":{"docs":{},"样":{"docs":{},"这":{"docs":{},"样":{"docs":{},"编":{"docs":{},"写":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"现":{"docs":{},"和":{"docs":{},"之":{"docs":{},"前":{"docs":{},"的":{"docs":{},"实":{"docs":{},"现":{"docs":{},"一":{"docs":{},"致":{"docs":{},",":{"docs":{},"只":{"docs":{},"是":{"docs":{},"在":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"中":{"docs":{},"多":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"占":{"docs":{},"有":{"docs":{},"列":{"docs":{},"表":{"docs":{},"。":{"docs":{},"这":{"docs":{},"里":{"docs":{},",":{"docs":{},"占":{"docs":{},"有":{"docs":{},"列":{"docs":{},"表":{"docs":{},"是":{"docs":{},"[":{"docs":{},"u":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"产":{"docs":{},"生":{"docs":{},"了":{"docs":{},"类":{"docs":{},"实":{"docs":{},"例":{"docs":{},"和":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}},"只":{"docs":{},"提":{"docs":{},"供":{"docs":{},"一":{"docs":{},"个":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"通":{"docs":{},"过":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"和":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"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":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},"这":{"docs":{},"个":{"docs":{},"元":{"docs":{},"素":{"docs":{},"的":{"docs":{},"名":{"docs":{},"称":{"docs":{},",":{"docs":{},"例":{"docs":{},"如":{"docs":{},"代":{"docs":{},"表":{"docs":{},"段":{"docs":{},"落":{"docs":{},"的":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"p":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"代":{"docs":{},"表":{"docs":{},"换":{"docs":{},"行":{"docs":{},"的":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"b":{"docs":{},"r":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"。":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"还":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"属":{"docs":{},"性":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"设":{"docs":{},"置":{"docs":{},"和":{"docs":{},"展":{"docs":{},"现":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"还":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"l":{"docs":{},"a":{"docs":{},"z":{"docs":{},"y":{"docs":{},"属":{"docs":{},"性":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},"引":{"docs":{},"用":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"闭":{"docs":{},"包":{"docs":{},",":{"docs":{},"将":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"和":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"组":{"docs":{},"合":{"docs":{},"成":{"docs":{},"h":{"docs":{},"t":{"docs":{},"m":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.010282776349614395}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}}}}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}},"u":{"docs":{},"n":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"d":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.010282776349614395}}}}}}}}}}}}}}}}},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}},"-":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.8372859025032937},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.006825938566552901}}}}}},"d":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.01015228426395939}},".":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}},"实":{"docs":{},"例":{"docs":{},"中":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},"属":{"docs":{},"性":{"docs":{},"还":{"docs":{},"是":{"1":{"9":{"2":{"0":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}},"的":{"docs":{},"常":{"docs":{},"量":{"docs":{},",":{"docs":{},"其":{"docs":{},"值":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"为":{"docs":{},"全":{"docs":{},"高":{"docs":{},"清":{"docs":{},"视":{"docs":{},"频":{"docs":{},"分":{"docs":{},"辨":{"docs":{},"率":{"docs":{},"(":{"1":{"9":{"2":{"0":{"docs":{},"像":{"docs":{},"素":{"docs":{},"宽":{"docs":{},",":{"1":{"0":{"8":{"0":{"docs":{},"像":{"docs":{},"素":{"docs":{},"高":{"docs":{},")":{"docs":{},"的":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}},"赋":{"docs":{},"予":{"docs":{},"给":{"docs":{},"c":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},",":{"docs":{},"实":{"docs":{},"际":{"docs":{},"上":{"docs":{},"是":{"docs":{},"将":{"docs":{},"h":{"docs":{},"d":{"docs":{},"中":{"docs":{},"所":{"docs":{},"储":{"docs":{},"存":{"docs":{},"的":{"docs":{},"值":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},")":{"docs":{},"进":{"docs":{},"行":{"docs":{},"拷":{"docs":{},"贝":{"docs":{},",":{"docs":{},"然":{"docs":{},"后":{"docs":{},"将":{"docs":{},"拷":{"docs":{},"贝":{"docs":{},"的":{"docs":{},"数":{"docs":{},"据":{"docs":{},"储":{"docs":{},"存":{"docs":{},"到":{"docs":{},"新":{"docs":{},"的":{"docs":{},"c":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"实":{"docs":{},"例":{"docs":{},"中":{"docs":{},"。":{"docs":{},"结":{"docs":{},"果":{"docs":{},"就":{"docs":{},"是":{"docs":{},"两":{"docs":{},"个":{"docs":{},"完":{"docs":{},"全":{"docs":{},"独":{"docs":{},"立":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"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":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"m":{"docs":{},"a":{"docs":{},"的":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{},"修":{"docs":{},"改":{"docs":{},"为":{"2":{"0":{"4":{"8":{"docs":{},"并":{"docs":{},"不":{"docs":{},"会":{"docs":{},"影":{"docs":{},"响":{"docs":{},"h":{"docs":{},"d":{"docs":{},"中":{"docs":{},"的":{"docs":{},"宽":{"docs":{},"(":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.009398496240601503},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0031620553359683794},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.005012531328320802}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.09523809523809523},"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.017921146953405017},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}},",":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}},"(":{"docs":{},"章":{"docs":{},"节":{"docs":{},"信":{"docs":{},"息":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}},"的":{"docs":{},"n":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"n":{"docs":{},"s":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}},"中":{"docs":{},"的":{"docs":{},"类":{"docs":{},"方":{"docs":{},"法":{"docs":{},"(":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}},"表":{"docs":{},"示":{"docs":{},"的":{"docs":{},"声":{"docs":{},"明":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"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":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"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":{},"构":{"docs":{},"器":{"docs":{},",":{"docs":{},"以":{"docs":{},"下":{"docs":{},"下":{"docs":{},"标":{"docs":{},"。":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"c":{"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":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"里":{"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":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"-":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}},"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":{},"们":{"docs":{},"被":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"给":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"时":{"docs":{},"只":{"docs":{},"被":{"docs":{},"视":{"docs":{},"为":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"只":{"docs":{},"有":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}},".":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}},"数":{"docs":{},"组":{"docs":{},"的":{"docs":{},"元":{"docs":{},"素":{"docs":{},"是":{"docs":{},"否":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"了":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0037593984962406013},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.02197802197802198}},"前":{"docs":{},"缀":{"docs":{},"的":{"docs":{},"协":{"docs":{},"议":{"docs":{},"中":{"docs":{},"生":{"docs":{},"效":{"docs":{},".":{"docs":{},"且":{"docs":{},"@":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"c":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}},"用":{"docs":{},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},"协":{"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":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},",":{"docs":{},"此":{"docs":{},"外":{"docs":{},",":{"docs":{},"@":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"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":{},".":{"docs":{},"详":{"docs":{},"情":{"docs":{},"查":{"docs":{},"看":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}}}},"特":{"docs":{},"性":{"docs":{},"修":{"docs":{},"饰":{"docs":{},"一":{"docs":{},"个":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"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":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"应":{"docs":{},"用":{"docs":{},"于":{"docs":{},"一":{"docs":{},"个":{"docs":{},"类":{"docs":{},"或":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"它":{"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":{},"b":{"docs":{},"j":{"docs":{},"c":{"docs":{},"特":{"docs":{},"性":{"docs":{},"的":{"docs":{},"类":{"docs":{},",":{"docs":{},"编":{"docs":{},"译":{"docs":{},"器":{"docs":{},"会":{"docs":{},"隐":{"docs":{},"式":{"docs":{},"地":{"docs":{},"为":{"docs":{},"它":{"docs":{},"的":{"docs":{},"子":{"docs":{},"类":{"docs":{},"添":{"docs":{},"加":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"c":{"docs":{},"特":{"docs":{},"性":{"docs":{},"。":{"docs":{},"标":{"docs":{},"记":{"docs":{},"了":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"c":{"docs":{},"特":{"docs":{},"性":{"docs":{},"的":{"docs":{},"协":{"docs":{},"议":{"docs":{},"不":{"docs":{},"能":{"docs":{},"继":{"docs":{},"承":{"docs":{},"自":{"docs":{},"没":{"docs":{},"有":{"docs":{},"标":{"docs":{},"记":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"c":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"由":{"docs":{},"标":{"docs":{},"记":{"docs":{},"符":{"docs":{},"组":{"docs":{},"成":{"docs":{},"。":{"docs":{},"当":{"docs":{},"你":{"docs":{},"想":{"docs":{},"把":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"c":{"docs":{},"所":{"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":{},",":{"docs":{},"你":{"docs":{},"就":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"这":{"docs":{},"个":{"docs":{},"特":{"docs":{},"性":{"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":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},",":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},",":{"docs":{},"以":{"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":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"中":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"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":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":5.004149377593361},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},",":{"docs":{},"这":{"docs":{},"样":{"docs":{},"一":{"docs":{},"来":{"docs":{},",":{"docs":{},"当":{"docs":{},"属":{"docs":{},"性":{"docs":{},"值":{"docs":{},"改":{"docs":{},"变":{"docs":{},"时":{"docs":{},",":{"docs":{},"类":{"docs":{},"就":{"docs":{},"会":{"docs":{},"被":{"docs":{},"通":{"docs":{},"知":{"docs":{},"到":{"docs":{},"。":{"docs":{},"可":{"docs":{},"以":{"docs":{},"为":{"docs":{},"任":{"docs":{},"何":{"docs":{},"属":{"docs":{},"性":{"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":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}}}}}},"s":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.047619047619047616},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"[":{"docs":{},"\"":{"docs":{},"j":{"docs":{},"a":{"docs":{},"y":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}},"-":{"docs":{},"d":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.006696428571428571},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"a":{"docs":{},"l":{"docs":{},"-":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.011160714285714286},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.003429355281207133}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825},"chapter3/01_About_the_Language_Reference.html#gitbook_71":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_71","tf":0.041666666666666664},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.008771929824561403},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.044642857142857144},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.012658227848101266},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.10905349794238683},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.05982905982905983}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.016129032258064516},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505},"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":5.009933774834437},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.014229249011857707},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.005012531328320802},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.005847953216374269},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.006030150753768844},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}},"a":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"e":{"docs":{},"?":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"<":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}},"特":{"docs":{},"性":{"docs":{},"修":{"docs":{},"饰":{"docs":{},"那":{"docs":{},"些":{"docs":{},"标":{"docs":{},"记":{"docs":{},"了":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"c":{"docs":{},"特":{"docs":{},"性":{"docs":{},"的":{"docs":{},"协":{"docs":{},"议":{"docs":{},"。":{"docs":{},"因":{"docs":{},"此":{"docs":{},",":{"docs":{},"只":{"docs":{},"有":{"docs":{},"类":{"docs":{},"类":{"docs":{},"型":{"docs":{},"可":{"docs":{},"以":{"docs":{},"a":{"docs":{},"d":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"枚":{"docs":{},"举":{"docs":{},",":{"docs":{},"有":{"docs":{},"两":{"docs":{},"种":{"docs":{},"形":{"docs":{},"式":{"docs":{},",":{"docs":{},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"和":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"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":{},"用":{"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":{},"t":{"docs":{},"[":{"docs":{},"]":{"docs":{},")":{"docs":{},"?":{"docs":{},",":{"docs":{},"写":{"docs":{},"成":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.005847953216374269},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}}}}}}}}}}},"<":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.014619883040935672}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.443209574987787},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.005076142131979695},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.012648221343873518},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.05613225682429835},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.01306532663316583},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.015625},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.009602194787379973}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.47619047619047616}}}}}},"位":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.47619047619047616}}}}}}}}}}}},"按":{"docs":{},"位":{"docs":{},"左":{"docs":{},"移":{"docs":{},"/":{"docs":{},"右":{"docs":{},"移":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.47619047619047616}}}}}}}}}}}}}}}}},")":{"docs":{},"主":{"docs":{},"要":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.2857142857142857}}}}}}}}}}}}}}},"的":{"docs":{},"更":{"docs":{},"多":{"docs":{},"信":{"docs":{},"息":{"docs":{},",":{"docs":{},"请":{"docs":{},"参":{"docs":{},"见":{"docs":{},":":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}},"’":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}},"按":{"docs":{},"位":{"docs":{},"与":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.47619047619047616}}}}}}}}}}}},"取":{"docs":{},"反":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.47619047619047616}}}}}}}}}}}}},"异":{"docs":{},"或":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.47619047619047616}}}}}}}}}}}}},"或":{"docs":{},"运":{"docs":{},"算":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.47619047619047616}}}}}}}}}}}}},")":{"docs":{},"三":{"docs":{},"元":{"docs":{},"条":{"docs":{},"件":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"(":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.2857142857142857}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"转":{"docs":{},"换":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"(":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.2857142857142857}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}},")":{"docs":{},"、":{"docs":{},"后":{"docs":{},"缀":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"(":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}}}}}}}}}},"或":{"docs":{},"二":{"docs":{},"元":{"docs":{},"运":{"docs":{},"算":{"docs":{},"符":{"docs":{},"(":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}},"e":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}},"e":{"docs":{},"和":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"i":{"docs":{},"p":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"会":{"docs":{},"被":{"docs":{},"推":{"docs":{},"测":{"docs":{},"为":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"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":{},"t":{"docs":{},"和":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"创":{"docs":{},"建":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},"给":{"docs":{},"它":{"docs":{},"们":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"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":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.005747126436781609},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.02531645569620253}},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813}}}}}}},".":{"docs":{},"i":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.007518796992481203}}},"x":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.007518796992481203}}}},"i":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.005747126436781609}}},"x":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.005747126436781609}}}}}}},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.003683241252302026},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.02074688796680498},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}},"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"。":{"docs":{},"这":{"docs":{},"么":{"docs":{},"做":{"docs":{},",":{"docs":{},"你":{"docs":{},"就":{"docs":{},"表":{"docs":{},"明":{"docs":{},"了":{"docs":{},"你":{"docs":{},"是":{"docs":{},"想":{"docs":{},"提":{"docs":{},"供":{"docs":{},"一":{"docs":{},"个":{"docs":{},"重":{"docs":{},"写":{"docs":{},"版":{"docs":{},"本":{"docs":{},",":{"docs":{},"而":{"docs":{},"非":{"docs":{},"错":{"docs":{},"误":{"docs":{},"地":{"docs":{},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"相":{"docs":{},"同":{"docs":{},"的":{"docs":{},"定":{"docs":{},"义":{"docs":{},"。":{"docs":{},"意":{"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":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"会":{"docs":{},"提":{"docs":{},"醒":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}},"a":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.010380622837370242},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.005025125628140704}},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.47619047619047616}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}}}}}}},"n":{"docs":{},"l":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.007712082262210797}},".":{"docs":{},"n":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.005141388174807198}}}}}}}}}}}}}}},"k":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0019223375624759708}},"e":{"docs":{},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.005747126436781609}}}}}}},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}},".":{"docs":{},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}},"枚":{"docs":{},"举":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"了":{"docs":{},"t":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}},"u":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.010238907849829351},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.01098901098901099},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.005639097744360902},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.011235955056179775},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.032520325203252036},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.006265664160401002},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002306805074971165}},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}}}},"l":{"docs":{},"d":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.004454342984409799}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.004454342984409799},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.005625879043600563},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0019223375624759708}}}}}}}},"t":{"docs":{},"a":{"docs":{},"w":{"docs":{},"a":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00404040404040404}}}}}}},"d":{"docs":{},"y":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848}}}}}}}},"x":{"docs":{},"c":{"docs":{},"c":{"6":{"6":{"9":{"9":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.004700352526439483},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.026905829596412557},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.02197802197802198},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.003015075376884422},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.06976744186046512},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}},"o":{"docs":{},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.023809523809523808},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}},"和":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"方":{"docs":{},"法":{"docs":{},"可":{"docs":{},"能":{"docs":{},"会":{"docs":{},"失":{"docs":{},"败":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"它":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"被":{"docs":{},"写":{"docs":{},"作":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"?":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"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":{},"t":{"docs":{},"值":{"docs":{},"也":{"docs":{},"可":{"docs":{},"能":{"docs":{},"不":{"docs":{},"包":{"docs":{},"含":{"docs":{},"值":{"docs":{},"。":{"docs":{},"(":{"docs":{},"不":{"docs":{},"能":{"docs":{},"包":{"docs":{},"含":{"docs":{},"其":{"docs":{},"他":{"docs":{},"任":{"docs":{},"何":{"docs":{},"值":{"docs":{},"比":{"docs":{},"如":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{},"值":{"docs":{},"或":{"docs":{},"者":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"值":{"docs":{},"。":{"docs":{},"只":{"docs":{},"能":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"来":{"docs":{},"尝":{"docs":{},"试":{"docs":{},"将":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"转":{"docs":{},"换":{"docs":{},"成":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"i":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}},"k":{"docs":{},"y":{"docs":{},"o":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.011135857461024499}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.005625879043600563}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},":":{"docs":{},"\"":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.005625879043600563}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.013157894736842105}},"s":{"docs":{},"设":{"docs":{},"置":{"docs":{},"新":{"docs":{},"值":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},",":{"docs":{},"它":{"docs":{},"的":{"docs":{},"w":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"o":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}},"p":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}},"-":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}},"-":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}}}}}}}}}}},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},"含":{"docs":{},"有":{"docs":{},"t":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"函":{"docs":{},"数":{"docs":{},".":{"docs":{},"根":{"docs":{},"据":{"docs":{},"函":{"docs":{},"数":{"docs":{},"名":{"docs":{},"称":{"docs":{},"推":{"docs":{},"测":{"docs":{},",":{"docs":{},"t":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"可":{"docs":{},"能":{"docs":{},"用":{"docs":{},"于":{"docs":{},"切":{"docs":{},"换":{"docs":{},"或":{"docs":{},"恢":{"docs":{},"复":{"docs":{},"某":{"docs":{},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"状":{"docs":{},"态":{"docs":{},".":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"协":{"docs":{},"议":{"docs":{},"时":{"docs":{},",":{"docs":{},"必":{"docs":{},"须":{"docs":{},"在":{"docs":{},"t":{"docs":{},"o":{"docs":{},"g":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"方":{"docs":{},"法":{"docs":{},"前":{"docs":{},"加":{"docs":{},"上":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0019223375624759708}}}}}},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"s":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}},"e":{"docs":{},"实":{"docs":{},"现":{"docs":{},"了":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},"中":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}}}}}}}},"那":{"docs":{},"些":{"docs":{},"包":{"docs":{},"含":{"docs":{},"可":{"docs":{},"选":{"docs":{},"成":{"docs":{},"员":{"docs":{},"需":{"docs":{},"求":{"docs":{},"的":{"docs":{},"协":{"docs":{},"议":{"docs":{},"。":{"docs":{},"更":{"docs":{},"多":{"docs":{},"关":{"docs":{},"于":{"docs":{},"如":{"docs":{},"何":{"docs":{},"使":{"docs":{},"用":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"特":{"docs":{},"性":{"docs":{},"以":{"docs":{},"及":{"docs":{},"如":{"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":{},"n":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"0":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}},"1":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}},"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.015503875968992248}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}},"k":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.02074688796680498}},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}},"类":{"docs":{},"也":{"docs":{},"继":{"docs":{},"承":{"docs":{},"了":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}},"b":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}},"l":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0044742729306487695}}},"(":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"z":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}},")":{"docs":{},"\\":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}},"(":{"docs":{},"u":{"docs":{},"+":{"0":{"0":{"0":{"9":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}},"docs":{},"b":{"docs":{},")":{"docs":{},"、":{"docs":{},"换":{"docs":{},"页":{"docs":{},"符":{"docs":{},"(":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}}}}},"k":{"docs":{},"e":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"i":{"docs":{},"l":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0019223375624759708}}}}}}},"e":{"docs":{},"a":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"m":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.004700352526439483}}}}}}}},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.015228426395939087}}},"y":{"docs":{},".":{"docs":{},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.005076142131979695}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}},"和":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"y":{"docs":{},"被":{"docs":{},"声":{"docs":{},"明":{"docs":{},"为":{"docs":{},"常":{"docs":{},"量":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},")":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"变":{"docs":{},"量":{"docs":{},"。":{"docs":{},"然":{"docs":{},"而":{"docs":{},"你":{"docs":{},"依":{"docs":{},"然":{"docs":{},"可":{"docs":{},"以":{"docs":{},"改":{"docs":{},"变":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"和":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"y":{"docs":{},".":{"docs":{},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"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":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"o":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"在":{"docs":{},"后":{"docs":{},"台":{"docs":{},"仅":{"docs":{},"仅":{"docs":{},"是":{"docs":{},"对":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"o":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"引":{"docs":{},"用":{"docs":{},"。":{"docs":{},"所":{"docs":{},"以":{"docs":{},",":{"docs":{},"改":{"docs":{},"变":{"docs":{},"的":{"docs":{},"是":{"docs":{},"被":{"docs":{},"引":{"docs":{},"用":{"docs":{},"的":{"docs":{},"基":{"docs":{},"础":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"o":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"的":{"docs":{},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"我":{"docs":{},"们":{"docs":{},"会":{"docs":{},"发":{"docs":{},"现":{"docs":{},"它":{"docs":{},"正":{"docs":{},"确":{"docs":{},"的":{"docs":{},"显":{"docs":{},"示":{"docs":{},"了":{"docs":{},"基":{"docs":{},"本":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"o":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"新":{"docs":{},"帧":{"docs":{},"率":{"docs":{},",":{"docs":{},"其":{"docs":{},"值":{"docs":{},"为":{"3":{"0":{"docs":{},".":{"0":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"常":{"docs":{},"量":{"docs":{},",":{"docs":{},"其":{"docs":{},"引":{"docs":{},"用":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"o":{"docs":{},"m":{"docs":{},"o":{"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":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"o":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"o":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"实":{"docs":{},"际":{"docs":{},"上":{"docs":{},"引":{"docs":{},"用":{"docs":{},"的":{"docs":{},"是":{"docs":{},"相":{"docs":{},"同":{"docs":{},"的":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"o":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00404040404040404}}}}}},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}},".":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.008771929824561403}}}}}}}},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.2582899556583767}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.004020100502512563}}}}}}},"m":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"f":{"docs":{},"a":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"h":{"docs":{},"e":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.009208103130755065}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"a":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.01195814648729447}}}},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}},"x":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.020202020202020204}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"/":{"docs":{},"p":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"或":{"docs":{},"者":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"p":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"还":{"docs":{},"是":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},",":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"p":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.006265664160401002}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},"含":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0044742729306487695},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0066815144766146995}}}}}}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"的":{"docs":{},"值":{"docs":{},"被":{"docs":{},"用":{"docs":{},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"[":{"6":{"docs":{},"]":{"docs":{},"。":{"docs":{},"这":{"docs":{},"句":{"docs":{},"话":{"docs":{},"访":{"docs":{},"问":{"docs":{},"了":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"的":{"docs":{},"第":{"docs":{},"六":{"docs":{},"个":{"docs":{},"元":{"docs":{},"素":{"docs":{},",":{"docs":{},"返":{"docs":{},"回":{"1":{"8":{"docs":{},"或":{"docs":{},"者":{"6":{"docs":{},"的":{"3":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}},"docs":{}}},"docs":{}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}},"f":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.005747126436781609}}}}}},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}},"e":{"docs":{},"作":{"docs":{},"为":{"docs":{},"数":{"docs":{},"据":{"docs":{},"源":{"docs":{},"开":{"docs":{},"实":{"docs":{},"例":{"docs":{},"化":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}},"实":{"docs":{},"现":{"docs":{},"了":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0054869684499314125},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}},")":{"docs":{},"带":{"docs":{},"标":{"docs":{},"签":{"docs":{},"的":{"docs":{},"语":{"docs":{},"句":{"docs":{},"控":{"docs":{},"制":{"docs":{},"传":{"docs":{},"递":{"docs":{},"语":{"docs":{},"句":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":1.1111111111111112}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}},"g":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0071146245059288534},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0037593984962406013},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}},"s":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"0":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}},".":{"0":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}},"docs":{}}},"3":{"docs":{},".":{"1":{"4":{"1":{"5":{"9":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"4":{"2":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}},"docs":{}},"docs":{},"\"":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}},"(":{"3":{"docs":{},".":{"0":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}},"docs":{}}},"docs":{}},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}},"数":{"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"被":{"docs":{},"直":{"docs":{},"接":{"docs":{},"遍":{"docs":{},"历":{"docs":{},",":{"docs":{},"并":{"docs":{},"调":{"docs":{},"用":{"docs":{},"其":{"docs":{},"中":{"docs":{},"元":{"docs":{},"素":{"docs":{},"的":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}},"被":{"docs":{},"当":{"docs":{},"做":{"docs":{},"是":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},",":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},",":{"docs":{},"h":{"docs":{},"a":{"docs":{},"m":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"等":{"docs":{},"类":{"docs":{},"型":{"docs":{},".":{"docs":{},"因":{"docs":{},"此":{"docs":{},"能":{"docs":{},"且":{"docs":{},"仅":{"docs":{},"能":{"docs":{},"调":{"docs":{},"用":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}},"s":{"docs":{},"e":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}}}},"e":{"docs":{},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.016260162601626018}},"e":{"docs":{},"s":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"’":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.007366482504604052},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.003015075376884422},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}},"s":{"docs":{},"t":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"(":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}}}}},"例":{"docs":{},"子":{"docs":{},"是":{"docs":{},"基":{"docs":{},"于":{"docs":{},"一":{"docs":{},"个":{"docs":{},"固":{"docs":{},"定":{"docs":{},"的":{"docs":{},"数":{"docs":{},"学":{"docs":{},"公":{"docs":{},"式":{"docs":{},"。":{"docs":{},"它":{"docs":{},"并":{"docs":{},"不":{"docs":{},"适":{"docs":{},"合":{"docs":{},"开":{"docs":{},"放":{"docs":{},"写":{"docs":{},"权":{"docs":{},"限":{"docs":{},"来":{"docs":{},"对":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"[":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"中":{"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":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}},"创":{"docs":{},"建":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"用":{"docs":{},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},"索":{"docs":{},"引":{"docs":{},"值":{"docs":{},"三":{"docs":{},"倍":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"数":{"docs":{},"值":{"3":{"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":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.008948545861297539}},"i":{"docs":{},"a":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.004700352526439483}},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},".":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}},"g":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}},"u":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0447427293064877},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.003952569169960474},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.004484304932735426},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.004020100502512563},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.008547008547008548}},"。":{"docs":{},"从":{"docs":{},"字":{"docs":{},"面":{"docs":{},"意":{"docs":{},"思":{"docs":{},"来":{"docs":{},"说":{"docs":{},",":{"docs":{},"断":{"docs":{},"言":{"docs":{},"“":{"docs":{},"断":{"docs":{},"言":{"docs":{},"”":{"docs":{},"一":{"docs":{},"个":{"docs":{},"条":{"docs":{},"件":{"docs":{},"是":{"docs":{},"否":{"docs":{},"为":{"docs":{},"真":{"docs":{},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"断":{"docs":{},"言":{"docs":{},"来":{"docs":{},"保":{"docs":{},"证":{"docs":{},"在":{"docs":{},"运":{"docs":{},"行":{"docs":{},"其":{"docs":{},"他":{"docs":{},"代":{"docs":{},"码":{"docs":{},"之":{"docs":{},"前":{"docs":{},",":{"docs":{},"某":{"docs":{},"些":{"docs":{},"重":{"docs":{},"要":{"docs":{},"的":{"docs":{},"条":{"docs":{},"件":{"docs":{},"已":{"docs":{},"经":{"docs":{},"被":{"docs":{},"满":{"docs":{},"足":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"条":{"docs":{},"件":{"docs":{},"判":{"docs":{},"断":{"docs":{},"为":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"e":{"docs":{},",":{"docs":{},"代":{"docs":{},"码":{"docs":{},"运":{"docs":{},"行":{"docs":{},"会":{"docs":{},"继":{"docs":{},"续":{"docs":{},"进":{"docs":{},"行":{"docs":{},";":{"docs":{},"如":{"docs":{},"果":{"docs":{},"条":{"docs":{},"件":{"docs":{},"判":{"docs":{},"断":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}},",":{"docs":{},"会":{"docs":{},"重":{"docs":{},"复":{"docs":{},"运":{"docs":{},"行":{"docs":{},"一":{"docs":{},"系":{"docs":{},"列":{"docs":{},"语":{"docs":{},"句":{"docs":{},",":{"docs":{},"直":{"docs":{},"到":{"docs":{},"条":{"docs":{},"件":{"docs":{},"变":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}},"则":{"docs":{},"会":{"docs":{},"执":{"docs":{},"行":{"docs":{},"大":{"docs":{},"括":{"docs":{},"号":{"docs":{},"内":{"docs":{},"部":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}},")":{"docs":{},",":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"将":{"docs":{},"会":{"docs":{},"被":{"docs":{},"执":{"docs":{},"行":{"docs":{},",":{"docs":{},"然":{"docs":{},"后":{"docs":{},"转":{"docs":{},"到":{"docs":{},"第":{"3":{"docs":{},"步":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"为":{"docs":{},"假":{"docs":{},"(":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"和":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"都":{"docs":{},"不":{"docs":{},"会":{"docs":{},"被":{"docs":{},"执":{"docs":{},"行":{"docs":{},",":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}},"转":{"docs":{},"到":{"docs":{},"第":{"1":{"docs":{},"步":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"为":{"docs":{},"假":{"docs":{},"(":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{},"d":{"docs":{},"o":{"docs":{},"-":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}},"2":{"docs":{},"步":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"为":{"docs":{},"假":{"docs":{},"(":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},")":{"docs":{},",":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}},"n":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}},"a":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.016597510373443983}}}}},"i":{"docs":{},"l":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.44040058622374206},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}}}}}},"c":{"docs":{},"k":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"t":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"(":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}},"n":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}},"e":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}},"a":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}},"e":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}},")":{"docs":{},"的":{"docs":{},"叶":{"docs":{},"子":{"docs":{},"节":{"docs":{},"点":{"docs":{},"传":{"docs":{},"向":{"docs":{},"根":{"docs":{},"节":{"docs":{},"点":{"docs":{},"。":{"docs":{},"也":{"docs":{},"就":{"docs":{},"是":{"docs":{},"说":{"docs":{},",":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.003952569169960474},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}}},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"l":{"docs":{},"i":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"p":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":1.667587476979742},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.005847953216374269},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.006030150753768844},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}},"e":{"docs":{},"-":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}},"e":{"docs":{},"-":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}},"y":{"docs":{},"[":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}},"e":{"docs":{},"l":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.008771929824561403},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.008771929824561403},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.008438818565400843},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}},"-":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.012658227848101266},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.012658227848101266},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"-":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"n":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}},"i":{"docs":{},"p":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.005376344086021506}},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036}}}}}}}}}}}}}}}}},"w":{"docs":{},"o":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.01015228426395939},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0071146245059288534},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.005382545174932718}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},",":{"docs":{},"然":{"docs":{},"而":{"docs":{},"常":{"docs":{},"量":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"8":{"docs":{},"。":{"docs":{},"它":{"docs":{},"们":{"docs":{},"不":{"docs":{},"能":{"docs":{},"直":{"docs":{},"接":{"docs":{},"相":{"docs":{},"加":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"它":{"docs":{},"们":{"docs":{},"类":{"docs":{},"型":{"docs":{},"不":{"docs":{},"同":{"docs":{},"。":{"docs":{},"所":{"docs":{},"以":{"docs":{},"要":{"docs":{},"调":{"docs":{},"用":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},"(":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},")":{"docs":{},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"1":{"6":{"docs":{},"数":{"docs":{},"字":{"docs":{},"并":{"docs":{},"用":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}},"-":{"docs":{},"d":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}}}}}},"’":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.2582899556583767},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":5.011135857461024},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.47496156739606843},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.443209574987787},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.01015228426395939},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.4476360791326702},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":3.3862977602108035},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":5.013452914798206},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0038446751249519417},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":10.078947368421053},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.3178750897343862},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.008438818565400843},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.015503875968992248},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.01440329218106996}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"a":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.007473841554559043},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"s":{"docs":{},"-":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}}},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}}},"s":{"docs":{},"(":{"docs":{},"章":{"docs":{},"节":{"docs":{},"信":{"docs":{},"息":{"docs":{},"u":{"docs":{},"r":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}},")":{"docs":{},"使":{"docs":{},"用":{"docs":{},"函":{"docs":{},"数":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.23255813953488372}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"类":{"docs":{},"型":{"docs":{},"作":{"docs":{},"为":{"docs":{},"参":{"docs":{},"数":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.23255813953488372}}}}}}}}}}}},"返":{"docs":{},"回":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.23255813953488372}}}}}}}}}}}}}}}}}},"嵌":{"docs":{},"套":{"docs":{},"函":{"docs":{},"数":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.23255813953488372}}}}}}}}}}},"—":{"docs":{},"—":{"docs":{},"比":{"docs":{},"如":{"docs":{},"表":{"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":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"中":{"docs":{},"知":{"docs":{},"道":{"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":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"去":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"新":{"docs":{},"的":{"docs":{},"常":{"docs":{},"量":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"如":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"、":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},")":{"docs":{},"外":{"docs":{},",":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"任":{"docs":{},"何":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"包":{"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":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},")":{"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":{},"g":{"docs":{},"e":{"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"声":{"docs":{},"明":{"docs":{},"属":{"docs":{},"性":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"时":{"docs":{},",":{"docs":{},"在":{"docs":{},"前":{"docs":{},"面":{"docs":{},"加":{"docs":{},"上":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"u":{"docs":{},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"n":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"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":{},"u":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"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":{},"型":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"需":{"docs":{},"要":{"docs":{},"前":{"docs":{},"置":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"方":{"docs":{},"便":{"docs":{},"的":{"docs":{},"修":{"docs":{},"改":{"docs":{},"实":{"docs":{},"例":{"docs":{},"及":{"docs":{},"其":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"值":{"docs":{},"而":{"docs":{},"无":{"docs":{},"需":{"docs":{},"改":{"docs":{},"变":{"docs":{},"类":{"docs":{},"型":{"docs":{},";":{"docs":{},"而":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"和":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"中":{"docs":{},"的":{"docs":{},"成":{"docs":{},"员":{"docs":{},"均":{"docs":{},"为":{"docs":{},"值":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"上":{"docs":{},"下":{"docs":{},"文":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},")":{"docs":{},"中":{"docs":{},",":{"docs":{},"隐":{"docs":{},"式":{"docs":{},"成":{"docs":{},"员":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"是":{"docs":{},"访":{"docs":{},"问":{"docs":{},"某":{"docs":{},"个":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"的":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"。":{"docs":{},",":{"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":{},"f":{"docs":{},"语":{"docs":{},"句":{"docs":{},"来":{"docs":{},"检":{"docs":{},"查":{"docs":{},"是":{"docs":{},"否":{"docs":{},"能":{"docs":{},"成":{"docs":{},"功":{"docs":{},"调":{"docs":{},"用":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"s":{"docs":{},"方":{"docs":{},"法":{"docs":{},":":{"docs":{},"如":{"docs":{},"果":{"docs":{},"方":{"docs":{},"法":{"docs":{},"通":{"docs":{},"过":{"docs":{},"可":{"docs":{},"选":{"docs":{},"链":{"docs":{},"调":{"docs":{},"用":{"docs":{},"成":{"docs":{},"功":{"docs":{},",":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"s":{"docs":{},"的":{"docs":{},"隐":{"docs":{},"式":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"将":{"docs":{},"会":{"docs":{},"是":{"docs":{},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"没":{"docs":{},"有":{"docs":{},"成":{"docs":{},"功":{"docs":{},",":{"docs":{},"将":{"docs":{},"返":{"docs":{},"回":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"s":{"docs":{},"a":{"docs":{},"f":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.005847953216374269},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00823045267489712}}}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.014619883040935672},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0102880658436214}},"e":{"docs":{},"r":{"docs":{},"­":{"docs":{},":":{"docs":{},"­":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"-":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"-":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}}}}}},"=":{"docs":{},"=":{"docs":{},"­":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"-":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00411522633744856}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.008771929824561403},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.008771929824561403},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00411522633744856}},"e":{"docs":{},"­":{"docs":{},":":{"docs":{},"­":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"-":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"-":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"-":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.008438818565400843},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}}}}}}}}}},"’":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}},"。":{"docs":{},"协":{"docs":{},"议":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"元":{"docs":{},"类":{"docs":{},"型":{"docs":{},"—":{"docs":{},"—":{"docs":{},"并":{"docs":{},"不":{"docs":{},"是":{"docs":{},"运":{"docs":{},"行":{"docs":{},"时":{"docs":{},"适":{"docs":{},"配":{"docs":{},"该":{"docs":{},"协":{"docs":{},"议":{"docs":{},"的":{"docs":{},"具":{"docs":{},"体":{"docs":{},"类":{"docs":{},"型":{"docs":{},"—":{"docs":{},"—":{"docs":{},"是":{"docs":{},"该":{"docs":{},"协":{"docs":{},"议":{"docs":{},"名":{"docs":{},"字":{"docs":{},"紧":{"docs":{},"跟":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"。":{"docs":{},"比":{"docs":{},"如":{"docs":{},",":{"docs":{},"类":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"的":{"docs":{},"元":{"docs":{},"类":{"docs":{},"型":{"docs":{},"就":{"docs":{},"是":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},".":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},",":{"docs":{},"协":{"docs":{},"议":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"的":{"docs":{},"元":{"docs":{},"类":{"docs":{},"型":{"docs":{},"就":{"docs":{},"是":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},".":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}},"在":{"docs":{},"声":{"docs":{},"明":{"docs":{},"时":{"docs":{},"候":{"docs":{},"所":{"docs":{},"定":{"docs":{},"义":{"docs":{},"(":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}},"的":{"docs":{},"名":{"docs":{},"字":{"docs":{},"(":{"docs":{},"当":{"docs":{},"然":{"docs":{},"了":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"我":{"docs":{},"都":{"docs":{},"知":{"docs":{},"道":{"docs":{},"它":{"docs":{},"的":{"docs":{},"名":{"docs":{},"字":{"docs":{},"了":{"docs":{},"还":{"docs":{},"需":{"docs":{},"要":{"docs":{},"动":{"docs":{},"态":{"docs":{},"来":{"docs":{},"获":{"docs":{},"取":{"docs":{},"它":{"docs":{},"吗":{"docs":{},")":{"docs":{},"。":{"docs":{},"动":{"docs":{},"态":{"docs":{},"类":{"docs":{},"型":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"运":{"docs":{},"行":{"docs":{},"时":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"某":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"的":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.011135857461024499}}}},"-":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192}}}}}}}},"d":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.024608501118568233}},">":{"1":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}},"*":{"docs":{},"<":{"docs":{},"/":{"docs":{},"t":{"docs":{},"d":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}}}}}}},"2":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}},"3":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}},"4":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}},"5":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}},"6":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}},"7":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}},"8":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}},"9":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}},"docs":{}}},")":{"docs":{},"是":{"docs":{},"用":{"docs":{},"尖":{"docs":{},"括":{"docs":{},"号":{"docs":{},"括":{"docs":{},"起":{"docs":{},"来":{"docs":{},"的":{"docs":{},"(":{"docs":{},"<":{"docs":{},"t":{"docs":{},">":{"docs":{},")":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"尖":{"docs":{},"括":{"docs":{},"号":{"docs":{},"告":{"docs":{},"诉":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"那":{"docs":{},"个":{"docs":{},"t":{"docs":{},"是":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"函":{"docs":{},"数":{"docs":{},"所":{"docs":{},"定":{"docs":{},"义":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"因":{"docs":{},"为":{"docs":{},"t":{"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":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"分":{"docs":{},"别":{"docs":{},"代":{"docs":{},"表":{"docs":{},"t":{"docs":{},"n":{"docs":{},"t":{"docs":{},"和":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"“":{"docs":{},"某":{"docs":{},"种":{"docs":{},"类":{"docs":{},"型":{"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":{},"t":{"docs":{},"”":{"docs":{},"。":{"docs":{},"在":{"docs":{},"这":{"docs":{},"种":{"docs":{},"情":{"docs":{},"况":{"docs":{},"下":{"docs":{},",":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},")":{"docs":{},"来":{"docs":{},"代":{"docs":{},"替":{"docs":{},"实":{"docs":{},"际":{"docs":{},"类":{"docs":{},"型":{"docs":{},"名":{"docs":{},"(":{"docs":{},"如":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"、":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"或":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},")":{"docs":{},"。":{"docs":{},"节":{"docs":{},"点":{"docs":{},"类":{"docs":{},"型":{"docs":{},"名":{"docs":{},"并":{"docs":{},"不":{"docs":{},"是":{"docs":{},"表":{"docs":{},"示":{"docs":{},"t":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"任":{"docs":{},"何":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"其":{"docs":{},"规":{"docs":{},"定":{"docs":{},"a":{"docs":{},"和":{"docs":{},"b":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"同":{"docs":{},"一":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"t":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"管":{"docs":{},"t":{"docs":{},"表":{"docs":{},"示":{"docs":{},"任":{"docs":{},"何":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"只":{"docs":{},"有":{"docs":{},"s":{"docs":{},"w":{"docs":{},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"函":{"docs":{},"数":{"docs":{},"在":{"docs":{},"每":{"docs":{},"次":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},"所":{"docs":{},"传":{"docs":{},"入":{"docs":{},"的":{"docs":{},"实":{"docs":{},"际":{"docs":{},"类":{"docs":{},"型":{"docs":{},"决":{"docs":{},"定":{"docs":{},"了":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"被":{"docs":{},"用":{"docs":{},"作":{"docs":{},"a":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"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":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"的":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"需":{"docs":{},"要":{"docs":{},"t":{"docs":{},"必":{"docs":{},"须":{"docs":{},"是":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"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":{},"型":{"docs":{},"参":{"docs":{},"数":{"docs":{},"u":{"docs":{},",":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"需":{"docs":{},"要":{"docs":{},"u":{"docs":{},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"@":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.02197802197802198}}}}}}}}}}}},"u":{"docs":{},",":{"docs":{},"v":{"docs":{},",":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},",":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}},"则":{"docs":{},"是":{"docs":{},"跟":{"docs":{},"这":{"docs":{},"些":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"的":{"docs":{},"公":{"docs":{},"共":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"最":{"docs":{},"接":{"docs":{},"近":{"docs":{},"的":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},".":{"docs":{},"(":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"就":{"docs":{},"是":{"docs":{},"数":{"docs":{},"组":{"docs":{},"中":{"docs":{},"元":{"docs":{},"素":{"docs":{},"的":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}},"和":{"docs":{},"u":{"docs":{},"遵":{"docs":{},"守":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"同":{"docs":{},"时":{"docs":{},"要":{"docs":{},"求":{"docs":{},"它":{"docs":{},"们":{"docs":{},"的":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},"等":{"docs":{},"同":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"这":{"docs":{},"样":{"docs":{},"来":{"docs":{},"表":{"docs":{},"达":{"docs":{},":":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"2":{"4":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}},"docs":{}},"docs":{"chapter1/01_swift.html#gitbook_5":{"ref":"chapter1/01_swift.html#gitbook_5","tf":0.047619047619047616},"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007168458781362007},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.01565377532228361},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.02056555269922879},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.011185682326621925},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0031620553359683794},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.005747126436781609},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.004998077662437524},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.008771929824561403},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.016080402010050253},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.011160714285714286},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.03375527426160337},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.015503875968992248},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.005698005698005698}},".":{"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}},"n":{"docs":{},"n":{"docs":{},",":{"docs":{},"其":{"docs":{},"中":{"docs":{},"n":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}},"-":{"docs":{},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192}}}}}},"和":{"docs":{},"y":{"docs":{},"是":{"docs":{},"常":{"docs":{},"量":{"docs":{},",":{"docs":{},"这":{"docs":{},"是":{"docs":{},"因":{"docs":{},"为":{"docs":{},"没":{"docs":{},"有":{"docs":{},"必":{"docs":{},"要":{"docs":{},"在":{"docs":{},"其":{"docs":{},"对":{"docs":{},"应":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"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":{},"将":{"docs":{},"会":{"docs":{},"创":{"docs":{},"建":{"docs":{},"临":{"docs":{},"时":{"docs":{},"变":{"docs":{},"量":{"docs":{},",":{"docs":{},"并":{"docs":{},"用":{"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":{},"a":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"y":{"docs":{},"和":{"docs":{},"z":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"三":{"docs":{},"者":{"docs":{},"均":{"docs":{},"为":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.47734387872796175},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.014064697609001406},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.01015228426395939},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.07829977628635347},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.02391629297458894},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.011695906432748537},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.011160714285714286}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}},"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.016260162601626018}},"(":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}}}}},"二":{"docs":{},"十":{"docs":{},"一":{"docs":{},"点":{"docs":{},")":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"模":{"docs":{},"拟":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"中":{"docs":{},"的":{"docs":{},"扑":{"docs":{},"克":{"docs":{},"牌":{"docs":{},"点":{"docs":{},"数":{"docs":{},"。":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"包":{"docs":{},"含":{"2":{"docs":{},"个":{"docs":{},"嵌":{"docs":{},"套":{"docs":{},"定":{"docs":{},"义":{"docs":{},"的":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"类":{"docs":{},"型":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},".":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"s":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"没":{"docs":{},"有":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"的":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},",":{"docs":{},"在":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"结":{"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":{},",":{"docs":{},"也":{"docs":{},"同":{"docs":{},"样":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"属":{"docs":{},"性":{"docs":{},"用":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"和":{"docs":{},"s":{"docs":{},"u":{"docs":{},"i":{"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":{},"s":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"规":{"docs":{},"则":{"docs":{},"中":{"docs":{},",":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"牌":{"docs":{},"可":{"docs":{},"以":{"docs":{},"表":{"docs":{},"示":{"1":{"docs":{},"或":{"docs":{},"者":{"1":{"1":{"docs":{},",":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"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":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter3/01_About_the_Language_Reference.html#gitbook_71":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_71","tf":0.08333333333333333}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.004700352526439483},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.004219409282700422},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.02247191011235955},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.007712082262210797},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.01098901098901099},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}},"。":{"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":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"地":{"docs":{},"方":{"docs":{},"使":{"docs":{},"用":{"docs":{},"了":{"docs":{},"非":{"docs":{},"布":{"docs":{},"尔":{"docs":{},"值":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}}}},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"实":{"docs":{},"际":{"docs":{},"上":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"和":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"默":{"docs":{},"认":{"docs":{},"都":{"docs":{},"是":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}},"t":{"docs":{},"t":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"h":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0030757400999615533},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}},"n":{"docs":{},"j":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.007168458781362007}}}}}}},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0055248618784530384},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}},")":{"docs":{},",":{"docs":{},"b":{"docs":{},"o":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"[":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}},"[":{"0":{"3":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.003683241252302026},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}},"6":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}},"9":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192}}},"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}},"1":{"0":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}},"4":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192}}},"9":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}},"docs":{}},"2":{"2":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192}}},"4":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}},"6":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}},"docs":{}},"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.004604051565377533},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}},"x":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192}}},"d":{"docs":{},"i":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00404040404040404},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}},"y":{"docs":{},")":{"docs":{},"中":{"docs":{},",":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"指":{"docs":{},"向":{"docs":{},"这":{"docs":{},"个":{"docs":{},"类":{"docs":{},"型":{"docs":{},"本":{"docs":{},"身":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"某":{"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":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"d":{"docs":{},"[":{"0":{"9":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}},"docs":{}},"1":{"4":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}},"docs":{}},"2":{"2":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}},"docs":{}},"docs":{}}}}},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767}},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.02074688796680498}},"e":{"docs":{},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"新":{"docs":{},"类":{"docs":{},"是":{"docs":{},"在":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"的":{"docs":{},"基":{"docs":{},"础":{"docs":{},"上":{"docs":{},"创":{"docs":{},"建":{"docs":{},"起":{"docs":{},"来":{"docs":{},"。":{"docs":{},"因":{"docs":{},"此":{"docs":{},"你":{"docs":{},"需":{"docs":{},"要":{"docs":{},"将":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"放":{"docs":{},"在":{"docs":{},"b":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"不":{"docs":{},"仅":{"docs":{},"可":{"docs":{},"以":{"docs":{},"继":{"docs":{},"承":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"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":{},"b":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"你":{"docs":{},"就":{"docs":{},"可":{"docs":{},"以":{"docs":{},"调":{"docs":{},"用":{"docs":{},"它":{"docs":{},"继":{"docs":{},"承":{"docs":{},"来":{"docs":{},"的":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"的":{"docs":{},"子":{"docs":{},"类":{"docs":{},",":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"是":{"docs":{},"b":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"的":{"docs":{},"超":{"docs":{},"类":{"docs":{},"。":{"docs":{},"新":{"docs":{},"的":{"docs":{},"b":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"自":{"docs":{},"动":{"docs":{},"获":{"docs":{},"得":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"的":{"docs":{},"特":{"docs":{},"性":{"docs":{},",":{"docs":{},"比":{"docs":{},"如":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"和":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"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":{},"性":{"docs":{},"来":{"docs":{},"更":{"docs":{},"好":{"docs":{},"地":{"docs":{},"描":{"docs":{},"述":{"docs":{},"b":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"子":{"docs":{},"类":{"docs":{},":":{"docs":{},"双":{"docs":{},"人":{"docs":{},"自":{"docs":{},"行":{"docs":{},"车":{"docs":{},"(":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},")":{"docs":{},"。":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"从":{"docs":{},"b":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"继":{"docs":{},"承":{"docs":{},"了":{"docs":{},"两":{"docs":{},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"而":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},"是":{"docs":{},"b":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"从":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"继":{"docs":{},"承":{"docs":{},"而":{"docs":{},"来":{"docs":{},"的":{"docs":{},"。":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"m":{"docs":{},"并":{"docs":{},"不":{"docs":{},"修":{"docs":{},"改":{"docs":{},"轮":{"docs":{},"子":{"docs":{},"的":{"docs":{},"数":{"docs":{},"量":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"它":{"docs":{},"仍":{"docs":{},"是":{"docs":{},"一":{"docs":{},"辆":{"docs":{},"自":{"docs":{},"行":{"docs":{},"车":{"docs":{},",":{"docs":{},"有":{"2":{"docs":{},"个":{"docs":{},"轮":{"docs":{},"子":{"docs":{},"。":{"docs":{},"但":{"docs":{},"它":{"docs":{},"需":{"docs":{},"要":{"docs":{},"修":{"docs":{},"改":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"器":{"docs":{},"来":{"docs":{},"设":{"docs":{},"置":{"docs":{},"它":{"docs":{},"定":{"docs":{},"制":{"docs":{},"的":{"docs":{},"特":{"docs":{},"性":{"docs":{},"(":{"docs":{},"自":{"docs":{},"行":{"docs":{},"车":{"docs":{},"只":{"docs":{},"有":{"2":{"docs":{},"个":{"docs":{},"轮":{"docs":{},"子":{"docs":{},")":{"docs":{},"。":{"docs":{},"b":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"的":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"器":{"docs":{},"调":{"docs":{},"用":{"docs":{},"了":{"docs":{},"它":{"docs":{},"父":{"docs":{},"类":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"的":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"器":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},")":{"docs":{},",":{"docs":{},"以":{"docs":{},"此":{"docs":{},"确":{"docs":{},"保":{"docs":{},"在":{"docs":{},"b":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"试":{"docs":{},"图":{"docs":{},"修":{"docs":{},"改":{"docs":{},"那":{"docs":{},"些":{"docs":{},"继":{"docs":{},"承":{"docs":{},"来":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"前":{"docs":{},",":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"它":{"docs":{},"继":{"docs":{},"承":{"docs":{},"了":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.005025125628140704},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0054869684499314125}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"­":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"­":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.006696428571428571},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"a":{"docs":{},"l":{"docs":{},"-":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.011160714285714286},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.003429355281207133}}}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.005382545174932718},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.28671931083991387}}}}},"d":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},")":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"控":{"docs":{},"制":{"docs":{},"转":{"docs":{},"移":{"docs":{},"语":{"docs":{},"句":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"在":{"docs":{},"循":{"docs":{},"环":{"docs":{},"体":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"代":{"docs":{},"码":{"docs":{},"块":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":1.6666666666666665}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},",":{"docs":{},"通":{"docs":{},"过":{"docs":{},"原":{"docs":{},"始":{"docs":{},"值":{"9":{"docs":{},"试":{"docs":{},"图":{"docs":{},"访":{"docs":{},"问":{"docs":{},"一":{"docs":{},"个":{"docs":{},"行":{"docs":{},"星":{"docs":{},"。":{"docs":{},"i":{"docs":{},"f":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}}},"docs":{}}}}}}},"来":{"docs":{},"检":{"docs":{},"查":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}},")":{"docs":{},"到":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}},"自":{"docs":{},"动":{"docs":{},"拆":{"docs":{},"包":{"docs":{},"并":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"给":{"docs":{},"常":{"docs":{},"量":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.020761245674740483},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}},"-":{"docs":{},"s":{"docs":{},"h":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.4869555665403416},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.009045226130653266}}}}}}},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0066815144766146995}}}},"n":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0066815144766146995}}}}},"k":{"docs":{"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.04142011834319527}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.01775147928994083}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"r":{"docs":{},"s":{"docs":{"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.005917159763313609}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.011834319526627219}}}}}}}}}}}}}}}}},"和":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"y":{"docs":{},"e":{"docs":{},"r":{"docs":{},"。":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"管":{"docs":{},"理":{"docs":{},"一":{"docs":{},"个":{"docs":{},"虚":{"docs":{},"拟":{"docs":{},"货":{"docs":{},"币":{"docs":{},"的":{"docs":{},"流":{"docs":{},"通":{"docs":{},",":{"docs":{},"在":{"docs":{},"这":{"docs":{},"个":{"docs":{},"流":{"docs":{},"通":{"docs":{},"中":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"永":{"docs":{},"远":{"docs":{},"不":{"docs":{},"可":{"docs":{},"能":{"docs":{},"拥":{"docs":{},"有":{"docs":{},"超":{"docs":{},"过":{"1":{"0":{"docs":{},",":{"0":{"0":{"0":{"docs":{},"的":{"docs":{},"硬":{"docs":{},"币":{"docs":{},"。":{"docs":{},"在":{"docs":{},"这":{"docs":{},"个":{"docs":{},"游":{"docs":{},"戏":{"docs":{},"中":{"docs":{},"有":{"docs":{},"且":{"docs":{},"只":{"docs":{},"能":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"存":{"docs":{},"在":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.005917159763313609}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"根":{"docs":{},"据":{"docs":{},"它":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"属":{"docs":{},"性":{"docs":{},"来":{"docs":{},"跟":{"docs":{},"踪":{"docs":{},"当":{"docs":{},"前":{"docs":{},"它":{"docs":{},"拥":{"docs":{},"有":{"docs":{},"的":{"docs":{},"硬":{"docs":{},"币":{"docs":{},"数":{"docs":{},"量":{"docs":{},"。":{"docs":{},"银":{"docs":{},"行":{"docs":{},"还":{"docs":{},"提":{"docs":{},"供":{"docs":{},"两":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"—":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"和":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.005917159763313609}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0031620553359683794},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}},"i":{"docs":{},"c":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}},"c":{"docs":{},"k":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}},"w":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.011235955056179775}},"s":{"docs":{},"(":{"docs":{},"s":{"1":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}},"docs":{}}}}}}}},"s":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0056179775280898875}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}},"e":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"c":{"docs":{},"a":{"docs":{},"(":{"8":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}},"docs":{}},"和":{"docs":{},"其":{"docs":{},"整":{"docs":{},"数":{"docs":{},"值":{"docs":{},"被":{"docs":{},"新":{"docs":{},"的":{"docs":{},"b":{"docs":{},"a":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},".":{"docs":{},"q":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"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":{},"个":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"c":{"docs":{},"a":{"docs":{},"或":{"docs":{},"者":{"docs":{},"一":{"docs":{},"个":{"docs":{},".":{"docs":{},"q":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"它":{"docs":{},"可":{"docs":{},"以":{"docs":{},"是":{"docs":{},"u":{"docs":{},"p":{"docs":{},"c":{"docs":{},"a":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"关":{"docs":{},"联":{"docs":{},"值":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"q":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},"-":{"docs":{},"t":{"docs":{},"o":{"docs":{},"k":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.07692307692307693},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00823045267489712}},"s":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.054945054945054944}}}}}}}}}}}}}}}}}}},"e":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.03636363636363636},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}},"h":{"docs":{},"a":{"docs":{},"v":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}},"i":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.004454342984409799},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.4373533027830558},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.9566100950183994}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"y":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}},"t":{"docs":{},"o":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}},"w":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002691272587466359}}}}}}},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"v":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}},"o":{"docs":{},"w":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0047430830039525695},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00461361014994233}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}}}},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0019223375624759708}}}}},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}},"u":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}},"g":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.013245033112582781}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.009933774834437087}},"e":{"docs":{},"r":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},",":{"docs":{},"不":{"docs":{},"是":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.009933774834437087}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.009933774834437087}},"e":{"docs":{},"r":{"docs":{},"作":{"docs":{},"为":{"docs":{},"地":{"docs":{},"址":{"docs":{},"的":{"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":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":5.010989010989011}},"特":{"docs":{},"性":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}}}}}}}},":":{"docs":{},"i":{"docs":{},"b":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},",":{"docs":{},"i":{"docs":{},"b":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{},"i":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{},"以":{"docs":{},"及":{"docs":{},"i":{"docs":{},"b":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"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":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"来":{"docs":{},"与":{"docs":{},"x":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"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":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"f":{"docs":{},"a":{"docs":{},"c":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.008287292817679558},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.014245014245014245}},",":{"docs":{},"和":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"语":{"docs":{},"句":{"docs":{},"。":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}},"语":{"docs":{},"句":{"docs":{},"会":{"docs":{},"立":{"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":{},",":{"docs":{},"你":{"docs":{},"都":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"没":{"docs":{},"有":{"docs":{},"使":{"docs":{},"用":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"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":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"循":{"docs":{},"环":{"docs":{},"体":{"docs":{},"。":{"docs":{},"使":{"docs":{},"用":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{},"标":{"docs":{},"签":{"docs":{},"清":{"docs":{},"晰":{"docs":{},"的":{"docs":{},"表":{"docs":{},"明":{"docs":{},"了":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"、":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"、":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"语":{"docs":{},"句":{"docs":{},"和":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"后":{"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":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"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":{},"参":{"docs":{},"考":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"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":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"语":{"docs":{},"句":{"docs":{},"时":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"只":{"docs":{},"写":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"这":{"docs":{},"个":{"docs":{},"关":{"docs":{},"键":{"docs":{},"词":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"后":{"docs":{},"面":{"docs":{},"跟":{"docs":{},"上":{"docs":{},"标":{"docs":{},"签":{"docs":{},"名":{"docs":{},"(":{"docs":{},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},",":{"docs":{},"请":{"docs":{},"参":{"docs":{},"考":{"docs":{},"控":{"docs":{},"制":{"docs":{},"流":{"docs":{},"一":{"docs":{},"章":{"docs":{},"的":{"docs":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"不":{"docs":{},"会":{"docs":{},"发":{"docs":{},"生":{"docs":{},"这":{"docs":{},"种":{"docs":{},"“":{"docs":{},"掉":{"docs":{},"入":{"docs":{},"”":{"docs":{},"的":{"docs":{},"情":{"docs":{},"况":{"docs":{},"。":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}},"、":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"、":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"docs":{},"、":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"、":{"docs":{},"d":{"docs":{},"o":{"docs":{},"、":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"、":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"、":{"docs":{},"i":{"docs":{},"f":{"docs":{},"、":{"docs":{},"i":{"docs":{},"n":{"docs":{},"、":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"、":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"、":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"、":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"、":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.005698005698005698}}}}}}},"时":{"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":{},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"用":{"docs":{},"于":{"docs":{},"终":{"docs":{},"止":{"docs":{},"上":{"docs":{},"下":{"docs":{},"文":{"docs":{},"中":{"docs":{},"包":{"docs":{},"含":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0044742729306487695},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.005847953216374269}}}}},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}},"-":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.008547008547008548}}}}}}}}}}}},"[":{"0":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}},".":{"docs":{},".":{"docs":{},".":{"1":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.005076142131979695}}},"docs":{}}}}},"docs":{}},"和":{"docs":{},"c":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}},"都":{"docs":{},"引":{"docs":{},"用":{"docs":{},"了":{"docs":{},"同":{"docs":{},"一":{"docs":{},"个":{"docs":{},"数":{"docs":{},"组":{"docs":{},"。":{"docs":{},"此":{"docs":{},"时":{"docs":{},"在":{"docs":{},"b":{"docs":{},"上":{"docs":{},"调":{"docs":{},"用":{"docs":{},"u":{"docs":{},"n":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"方":{"docs":{},"法":{"docs":{},"则":{"docs":{},"会":{"docs":{},"将":{"docs":{},"b":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},">":{"docs":{},"提":{"docs":{},"示":{"docs":{},"<":{"docs":{},"/":{"docs":{},"b":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.01098901098901099}}}}}}}},"y":{"docs":{},"t":{"docs":{},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"d":{"1":{"2":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}},"docs":{}},"6":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}},"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.009398496240601503},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}},"a":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}},"v":{"docs":{},"e":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.005847953216374269}}}},"n":{"docs":{},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0056179775280898875}}}}}}}},"t":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.011278195488721804},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0019223375624759708},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}},".":{"docs":{},"t":{"docs":{},"x":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013}}}}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.011278195488721804}},"e":{"docs":{},"r":{"docs":{},"和":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.005639097744360902}},"e":{"docs":{},"r":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"不":{"docs":{},"从":{"docs":{},"文":{"docs":{},"件":{"docs":{},"中":{"docs":{},"导":{"docs":{},"入":{"docs":{},"数":{"docs":{},"据":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"当":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"被":{"docs":{},"创":{"docs":{},"建":{"docs":{},"时":{"docs":{},",":{"docs":{},"就":{"docs":{},"没":{"docs":{},"有":{"docs":{},"必":{"docs":{},"要":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"同":{"docs":{},"时":{"docs":{},",":{"docs":{},"更":{"docs":{},"有":{"docs":{},"意":{"docs":{},"义":{"docs":{},"的":{"docs":{},"是":{"docs":{},"当":{"docs":{},"用":{"docs":{},"到":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"功":{"docs":{},"能":{"docs":{},"是":{"docs":{},"从":{"docs":{},"文":{"docs":{},"件":{"docs":{},"导":{"docs":{},"入":{"docs":{},"数":{"docs":{},"据":{"docs":{},",":{"docs":{},"该":{"docs":{},"功":{"docs":{},"能":{"docs":{},"由":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"包":{"docs":{},"含":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"的":{"docs":{},"存":{"docs":{},"储":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"空":{"docs":{},"的":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{},"数":{"docs":{},"组":{"docs":{},"。":{"docs":{},"虽":{"docs":{},"然":{"docs":{},"没":{"docs":{},"有":{"docs":{},"写":{"docs":{},"出":{"docs":{},"全":{"docs":{},"部":{"docs":{},"代":{"docs":{},"码":{"docs":{},",":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}},"e":{"docs":{},"?":{"docs":{},".":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"?":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"能":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"在":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"后":{"docs":{},"边":{"docs":{},"加":{"docs":{},"上":{"docs":{},"了":{"docs":{},"?":{"docs":{},"标":{"docs":{},"记":{"docs":{},"来":{"docs":{},"表":{"docs":{},"明":{"docs":{},"只":{"docs":{},"在":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"非":{"docs":{},"空":{"docs":{},"时":{"docs":{},"才":{"docs":{},"去":{"docs":{},"调":{"docs":{},"用":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"存":{"docs":{},"在":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"也":{"docs":{},"无":{"docs":{},"法":{"docs":{},"保":{"docs":{},"证":{"docs":{},"其":{"docs":{},"是":{"docs":{},"否":{"docs":{},"实":{"docs":{},"现":{"docs":{},"了":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"在":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.008287292817679558},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.23677754881758414},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.010238907849829351},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0034602076124567475},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.008438818565400843},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.005698005698005698}},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}},"-":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.008547008547008548}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0047430830039525695},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.004484304932735426},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.005382545174932718}},"i":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.005076142131979695},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.011834319526627219},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.01818181818181818},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}},"来":{"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":{"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.005917159763313609}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.030303030303030304}},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.012448132780082987},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0031620553359683794},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}}},"b":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767}}}}}}},"c":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0030757400999615533},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}},"a":{"docs":{},"l":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.008620689655172414}}}}},"-":{"docs":{},"d":{"docs":{},"i":{"docs":{},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.015625},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0054869684499314125}}}}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.011160714285714286},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.003429355281207133}},"a":{"docs":{},"l":{"docs":{},"-":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.011160714285714286},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.003429355281207133}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0019223375624759708},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.003015075376884422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":10.018518518518519},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.008547008547008548}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.004801097393689987}}}}}}}}}}}}}}}}}},"o":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}}}}}},"p":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.005639097744360902}}}},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"l":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.010282776349614395},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}},"x":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.005141388174807198},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}},"e":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"?":{"docs":{},".":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},",":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}},"不":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}},"属":{"docs":{},"性":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}},"并":{"docs":{},"不":{"docs":{},"是":{"docs":{},"该":{"docs":{},"游":{"docs":{},"戏":{"docs":{},"的":{"docs":{},"必":{"docs":{},"备":{"docs":{},"条":{"docs":{},"件":{"docs":{},",":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"被":{"docs":{},"定":{"docs":{},"义":{"docs":{},"为":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"的":{"docs":{},"可":{"docs":{},"选":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"在":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"i":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.015659955257270694}}}},"d":{"docs":{},"u":{"docs":{},"c":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}},"v":{"docs":{},"i":{"docs":{},"c":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"i":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}}}}},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}},"c":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"<":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.004454342984409799}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}},"e":{"docs":{},"l":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}}},"的":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"上":{"docs":{},",":{"docs":{},"当":{"docs":{},"然":{"docs":{},"其":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"类":{"docs":{},"型":{"docs":{},"必":{"docs":{},"须":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"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":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"基":{"docs":{},"本":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},"如":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},",":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"a":{"docs":{},"l":{"docs":{},"-":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.003015075376884422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00411522633744856}},",":{"docs":{},"­":{"docs":{},"(":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}},"­":{"docs":{},",":{"docs":{},"­":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"-":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"特":{"docs":{},"化":{"docs":{},"版":{"docs":{},"本":{"docs":{},",":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.008908685968819599},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.01098901098901099},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.004020100502512563}}}}}}}}},"e":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.018796992481203006}},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.022099447513812154},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.007518796992481203}},"l":{"docs":{},":":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}},"(":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0037593984962406013}}}}}},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.010025062656641603}},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0037593984962406013}},"a":{"docs":{},"t":{"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":{},"的":{"docs":{},"逻":{"docs":{},"辑":{"docs":{},"中":{"docs":{},",":{"docs":{},"即":{"docs":{},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0037593984962406013}},"e":{"docs":{},"r":{"docs":{},"实":{"docs":{},"现":{"docs":{},"了":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}},"遵":{"docs":{},"循":{"docs":{},"了":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}},"协":{"docs":{},"议":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"任":{"docs":{},"意":{"docs":{},"含":{"docs":{},"有":{"docs":{},"骰":{"docs":{},"子":{"docs":{},"的":{"docs":{},"游":{"docs":{},"戏":{"docs":{},"中":{"docs":{},"实":{"docs":{},"现":{"docs":{},",":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"来":{"docs":{},"追":{"docs":{},"踪":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"含":{"docs":{},"有":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"和":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"两":{"docs":{},"个":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"前":{"docs":{},"者":{"docs":{},"用":{"docs":{},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},"骰":{"docs":{},"子":{"docs":{},"有":{"docs":{},"几":{"docs":{},"个":{"docs":{},"面":{"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":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"类":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"代":{"docs":{},"表":{"docs":{},"桌":{"docs":{},"游":{"docs":{},"中":{"docs":{},"的":{"docs":{},"n":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"可":{"docs":{},"被":{"docs":{},"当":{"docs":{},"作":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}},"遵":{"docs":{},"循":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.007518796992481203},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}},"属":{"docs":{},"性":{"docs":{},"监":{"docs":{},"视":{"docs":{},"器":{"docs":{},"将":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}},"监":{"docs":{},"视":{"docs":{},"器":{"docs":{},"会":{"docs":{},"将":{"docs":{},"旧":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"值":{"docs":{},"作":{"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":{},"l":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"在":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"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":{},"如":{"docs":{},"果":{"docs":{},"总":{"docs":{},"的":{"docs":{},"步":{"docs":{},"数":{"docs":{},"增":{"docs":{},"加":{"docs":{},"了":{"docs":{},",":{"docs":{},"就":{"docs":{},"输":{"docs":{},"出":{"docs":{},"一":{"docs":{},"个":{"docs":{},"消":{"docs":{},"息":{"docs":{},"表":{"docs":{},"示":{"docs":{},"增":{"docs":{},"加":{"docs":{},"了":{"docs":{},"多":{"docs":{},"少":{"docs":{},"步":{"docs":{},"。":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"没":{"docs":{},"有":{"docs":{},"提":{"docs":{},"供":{"docs":{},"自":{"docs":{},"定":{"docs":{},"义":{"docs":{},"名":{"docs":{},"称":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"默":{"docs":{},"认":{"docs":{},"值":{"docs":{},"o":{"docs":{},"l":{"docs":{},"d":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00411522633744856}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.011235955056179775}},"e":{"docs":{},"s":{"docs":{},"[":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.010276679841897233}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.005076142131979695},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.017064846416382253}},"的":{"docs":{},"值":{"docs":{},"。":{"docs":{},"当":{"docs":{},"它":{"docs":{},"等":{"docs":{},"于":{"docs":{},".":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},",":{"docs":{},"打":{"docs":{},"印":{"docs":{},"“":{"docs":{},"l":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"被":{"docs":{},"推":{"docs":{},"断":{"docs":{},"当":{"docs":{},"它":{"docs":{},"被":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"能":{"docs":{},"值":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"。":{"docs":{},"一":{"docs":{},"旦":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"被":{"docs":{},"声":{"docs":{},"明":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"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":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}},"o":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.011067193675889328}}}}}}}},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}},"o":{"docs":{},"v":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}}}}},"j":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.003952569169960474},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}}}}},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}},"o":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.012925969447708578},"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.012448132780082987},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.008960573476702509},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0066815144766146995},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.004219409282700422},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.012853470437017995},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.01098901098901099},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.012648221343873518},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.017241379310344827},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.011278195488721804},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.005979073243647235},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.008771929824561403},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}},"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.005639097744360902}}}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}},"或":{"docs":{},"者":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}},"精":{"docs":{},"确":{"docs":{},"度":{"docs":{},"很":{"docs":{},"高":{"docs":{},",":{"docs":{},"至":{"docs":{},"少":{"docs":{},"有":{"1":{"5":{"docs":{},"位":{"docs":{},"数":{"docs":{},"字":{"docs":{},",":{"docs":{},"而":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"最":{"docs":{},"少":{"docs":{},"只":{"docs":{},"有":{"6":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}},"docs":{}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}},"表":{"docs":{},"示":{"6":{"4":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}},"docs":{}},"docs":{}}},"[":{"docs":{},"]":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}},"和":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}},"型":{"docs":{},"的":{"docs":{},"值":{"1":{"docs":{},".":{"0":{"docs":{},"被":{"docs":{},"用":{"docs":{},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},"“":{"1":{"docs":{},"米":{"docs":{},"”":{"docs":{},"。":{"docs":{},"这":{"docs":{},"就":{"docs":{},"是":{"docs":{},"为":{"docs":{},"什":{"docs":{},"么":{"docs":{},"m":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},"返":{"docs":{},"回":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"—":{"docs":{},"—":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"1":{"docs":{},".":{"docs":{},"m":{"docs":{},"被":{"docs":{},"认":{"docs":{},"为":{"docs":{},"是":{"docs":{},"计":{"docs":{},"算":{"1":{"docs":{},".":{"0":{"docs":{},"的":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}},"docs":{}}},"docs":{},"看":{"docs":{},"作":{"docs":{},"是":{"docs":{},"某":{"docs":{},"单":{"docs":{},"位":{"docs":{},"下":{"docs":{},"的":{"docs":{},"长":{"docs":{},"度":{"docs":{},"值":{"docs":{},"。":{"docs":{},"即":{"docs":{},"使":{"docs":{},"它":{"docs":{},"们":{"docs":{},"被":{"docs":{},"实":{"docs":{},"现":{"docs":{},"为":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"但":{"docs":{},"这":{"docs":{},"些":{"docs":{},"属":{"docs":{},"性":{"docs":{},"仍":{"docs":{},"可":{"docs":{},"以":{"docs":{},"接":{"docs":{},"一":{"docs":{},"个":{"docs":{},"带":{"docs":{},"有":{"docs":{},"d":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174}}}}}}},")":{"docs":{},"。":{"docs":{},"在":{"docs":{},"第":{"docs":{},"二":{"docs":{},"个":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"函":{"docs":{},"数":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"a":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"被":{"docs":{},"指":{"docs":{},"定":{"docs":{},"为":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"表":{"docs":{},"示":{"6":{"4":{"docs":{},"位":{"docs":{},"浮":{"docs":{},"点":{"docs":{},"数":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.009398496240601503},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0044742729306487695},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}},"c":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0044742729306487695}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}}}}}}}}}}}}},"t":{"docs":{},"f":{"1":{"6":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}},"docs":{}},"8":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}},"docs":{}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}},"、":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"和":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"k":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.007366482504604052},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":1.1253561253561255}},"e":{"docs":{},"-":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.005698005698005698}}}}}}}}}}}}},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}},"’":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}},"w":{"docs":{},"n":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013}},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.016600790513833993}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"和":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.8333333333333333}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}},"(":{"docs":{},".":{"docs":{},")":{"docs":{},"语":{"docs":{},"法":{"docs":{},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},"在":{"docs":{},"其":{"docs":{},"它":{"docs":{},"模":{"docs":{},"块":{"docs":{},"(":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"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":{},"例":{"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":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"模":{"docs":{},"块":{"docs":{},"中":{"docs":{},"声":{"docs":{},"明":{"docs":{},"的":{"docs":{},"命":{"docs":{},"名":{"docs":{},"型":{"docs":{},"类":{"docs":{},"型":{"docs":{},"m":{"docs":{},"y":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"n":{"docs":{},"'":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}}}},"o":{"docs":{},"t":{"docs":{},"n":{"docs":{},"e":{"docs":{},"e":{"docs":{},"d":{"docs":{},"t":{"docs":{},"o":{"docs":{},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}},"’":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}},"`":{"docs":{},"`":{"docs":{},"o":{"docs":{},"`":{"docs":{},"`":{"docs":{},"g":{"docs":{},"`":{"docs":{},"`":{"docs":{},"!":{"docs":{},"和":{"docs":{},"":{"docs":{},"":{"docs":{},"(":{"docs":{},"d":{"docs":{},"o":{"docs":{},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}},"u":{"docs":{},"b":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.013363028953229399}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.008908685968819599}},".":{"docs":{},"\"":{"docs":{},"(":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"原":{"docs":{},"值":{"docs":{},"是":{"docs":{},"d":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"c":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848}}}}}},"r":{"docs":{},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"c":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}},"i":{"docs":{},"c":{"docs":{},"-":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}},"e":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.004604051565377533},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.005847953216374269},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.008928571428571428},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767}},"-":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}},".":{"docs":{},"\"":{"docs":{},"(":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.2582899556583767},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.004454342984409799},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.005875440658049354},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.023890784982935155},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.016260162601626018},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}},"e":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.017064846416382253},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.004484304932735426}}}}}}}},"函":{"docs":{},"数":{"docs":{},"来":{"docs":{},"进":{"docs":{},"行":{"docs":{},"数":{"docs":{},"组":{"docs":{},"遍":{"docs":{},"历":{"docs":{},"。":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"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":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":3.333333333333333}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"-":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"-":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0027434842249657062}}}}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.008438818565400843},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}}},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}},"a":{"docs":{},"p":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}},"o":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"d":{"docs":{},"o":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.011185682326621925}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}}}}}}}},"r":{"docs":{},"y":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}}}}}},".":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},";":{"docs":{},"和":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}},"表":{"docs":{},"示":{"docs":{},"t":{"docs":{},"遵":{"docs":{},"守":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"协":{"docs":{},"议":{"docs":{},",":{"docs":{},"而":{"docs":{},"且":{"docs":{},"t":{"docs":{},"的":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},"t":{"docs":{},".":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"遵":{"docs":{},"守":{"docs":{},"e":{"docs":{},"a":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"协":{"docs":{},"议":{"docs":{},"(":{"docs":{},"t":{"docs":{},"有":{"docs":{},"关":{"docs":{},"联":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"因":{"docs":{},"为":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"声":{"docs":{},"明":{"docs":{},"了":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"而":{"docs":{},"t":{"docs":{},"遵":{"docs":{},"守":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},">":{"docs":{},"(":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"都":{"docs":{},"可":{"docs":{},"以":{"docs":{},"安":{"docs":{},"全":{"docs":{},"的":{"docs":{},"使":{"docs":{},"用":{"docs":{},"在":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"函":{"docs":{},"数":{"docs":{},"中":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"其":{"docs":{},"保":{"docs":{},"证":{"docs":{},"支":{"docs":{},"持":{"docs":{},"等":{"docs":{},"式":{"docs":{},"操":{"docs":{},"作":{"docs":{},"。":{"docs":{},"为":{"docs":{},"了":{"docs":{},"说":{"docs":{},"明":{"docs":{},"这":{"docs":{},"个":{"docs":{},"事":{"docs":{},"实":{"docs":{},",":{"docs":{},"当":{"docs":{},"你":{"docs":{},"定":{"docs":{},"义":{"docs":{},"一":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"docs":{},"时":{"docs":{},",":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"写":{"docs":{},"一":{"docs":{},"个":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"也":{"docs":{},"就":{"docs":{},"意":{"docs":{},"味":{"docs":{},"着":{"docs":{},"“":{"docs":{},"任":{"docs":{},"何":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"都":{"docs":{},"遵":{"docs":{},"循":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.5165799113167534},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.004219409282700422},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.005141388174807198},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.01114955786236063}}}},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0038446751249519417}},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},".":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599},"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002691272587466359},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.004020100502512563}},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"n":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.005847953216374269}}}},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.008695652173913044},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.008458285274894272}},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.005875440658049354}}}}}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}}}},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},".":{"docs":{},"m":{"docs":{},"y":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}},"c":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}},"l":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"l":{"docs":{},"i":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}}},"-":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.003015075376884422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}},"r":{"docs":{},"t":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}},",":{"docs":{},"那":{"docs":{},"这":{"docs":{},"个":{"docs":{},"数":{"docs":{},"相":{"docs":{},"当":{"docs":{},"于":{"docs":{},"基":{"docs":{},"数":{"docs":{},"和":{"1":{"0":{"docs":{},"^":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}},"docs":{}},"2":{"docs":{},"^":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}},"docs":{}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.443209574987787},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0030757400999615533},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":2.049246231155779},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.004464285714285714},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.008438818565400843},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.019204389574759947},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.037037037037037035}},"i":{"docs":{},"o":{"docs":{},"n":{"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":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"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":{},"行":{"docs":{},"完":{"docs":{},"成":{"docs":{},"后":{"docs":{},",":{"docs":{},"重":{"docs":{},"复":{"docs":{},"执":{"docs":{},"行":{"docs":{},"第":{"2":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},")":{"docs":{},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.43478260869565216}}}}}},"前":{"docs":{},"缀":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.2857142857142857}}}}}}}}}}}}}},"字":{"docs":{},"符":{"docs":{},"型":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.2857142857142857}}}}}}}}}}}}}}}},")":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.2857142857142857}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.2857142857142857}}}}}}}}}}}}}},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"函":{"docs":{},"数":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.2857142857142857}}}}}}}}}}}}}}}},"可":{"docs":{},"选":{"docs":{},"链":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"-":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.2857142857142857}}}}}}}}}}}}}}}}}}}}}}},"后":{"docs":{},"缀":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.2857142857142857}}}}}}}}}}}}}}}}}}},"圆":{"docs":{},"括":{"docs":{},"号":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.2857142857142857}}}}}}}}}}}}}}}}}},"强":{"docs":{},"制":{"docs":{},"取":{"docs":{},"值":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},"-":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.2857142857142857}}}}}}}}}}}}}}}}}}}}},"显":{"docs":{},"式":{"docs":{},"成":{"docs":{},"员":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.2857142857142857}}}}}}}}}}}}}}}}}},"超":{"docs":{},"类":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"s":{"docs":{},"u":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.2857142857142857}}}}}}}}}}}}}}}}}},"闭":{"docs":{},"包":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.2857142857142857}}}}}}}}}}}}}},"隐":{"docs":{},"式":{"docs":{},"成":{"docs":{},"员":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"(":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.2857142857142857}}}}}}}}}}}}}}}}}},"。":{"docs":{},"起":{"docs":{},"保":{"docs":{},"护":{"docs":{},"作":{"docs":{},"用":{"docs":{},"的":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"是":{"docs":{},"这":{"docs":{},"样":{"docs":{},"构":{"docs":{},"成":{"docs":{},"的":{"docs":{},":":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"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":{},"仅":{"docs":{},"当":{"docs":{},"控":{"docs":{},"制":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"的":{"docs":{},"某":{"docs":{},"个":{"docs":{},"模":{"docs":{},"式":{"docs":{},"且":{"docs":{},"起":{"docs":{},"保":{"docs":{},"护":{"docs":{},"作":{"docs":{},"用":{"docs":{},"的":{"docs":{},"表":{"docs":{},"达":{"docs":{},"式":{"docs":{},"为":{"docs":{},"真":{"docs":{},"时":{"docs":{},",":{"docs":{},"对":{"docs":{},"应":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"块":{"docs":{},"中":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"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":{},"含":{"docs":{},"两":{"docs":{},"个":{"docs":{},"相":{"docs":{},"等":{"docs":{},"元":{"docs":{},"素":{"docs":{},"的":{"docs":{},"元":{"docs":{},"组":{"docs":{},",":{"docs":{},"如":{"docs":{},"(":{"1":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"会":{"docs":{},"首":{"docs":{},"先":{"docs":{},"被":{"docs":{},"计":{"docs":{},"算":{"docs":{},",":{"docs":{},"然":{"docs":{},"后":{"docs":{},"与":{"docs":{},"每":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"的":{"docs":{},"模":{"docs":{},"式":{"docs":{},"(":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"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":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"块":{"docs":{},"里":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"。":{"docs":{},"另":{"docs":{},"外":{"docs":{},",":{"docs":{},"每":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"块":{"docs":{},"都":{"docs":{},"不":{"docs":{},"能":{"docs":{},"为":{"docs":{},"空":{"docs":{},",":{"docs":{},"也":{"docs":{},"就":{"docs":{},"是":{"docs":{},"说":{"docs":{},"在":{"docs":{},"每":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"块":{"docs":{},"中":{"docs":{},"至":{"docs":{},"少":{"docs":{},"有":{"docs":{},"一":{"docs":{},"条":{"docs":{},"语":{"docs":{},"句":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"不":{"docs":{},"想":{"docs":{},"在":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"到":{"docs":{},"的":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"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":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}},"-":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}},"­":{"docs":{},",":{"docs":{},"­":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0027434842249657062},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.008438818565400843},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}},".":{"docs":{},"d":{"docs":{},"y":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}},"[":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}},"­":{"docs":{},",":{"docs":{},"­":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}},":":{"docs":{},"­":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":10.031609195402298},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.006265664160401002},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"]":{"docs":{},"[":{"6":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}},"7":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}},"docs":{}}},"-":{"docs":{},"b":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}}}}},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}},"r":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.23677754881758414},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.8747066055661116},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"r":{"docs":{},"a":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}},"e":{"docs":{},"c":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.014245014245014245}}}}}},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0030757400999615533}}}}},"c":{"docs":{},"e":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}},"w":{"docs":{},"w":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}},"a":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0056179775280898875}}}},"g":{"docs":{},"g":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0200445434298441}},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}},"f":{"docs":{},"f":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.005847953216374269}}}}}}},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.013651877133105802}},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.006825938566552901}}}}}}}},"l":{"docs":{},"i":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}}}}}},"s":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.010238907849829351},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.005076142131979695}}},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}},"c":{"docs":{},"h":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.008695652173913044},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.004484304932735426},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0019223375624759708}}}}},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.015228426395939087},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}},"-":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.005847953216374269},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}}},"v":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}}},"s":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.005698005698005698}}}}}}}},"语":{"docs":{},"句":{"docs":{},"也":{"docs":{},"可":{"docs":{},"包":{"docs":{},"含":{"docs":{},"i":{"docs":{},"f":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}},",":{"docs":{},"当":{"docs":{},"只":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"c":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{},"d":{"docs":{},"-":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.011160714285714286},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.003429355281207133}}}}}}}}}}}}}}}}},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.009398496240601503},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}},"e":{"docs":{},"t":{"docs":{},"g":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013}},"s":{"docs":{},"和":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}},"和":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.008298755186721992}}}}}}},"(":{"docs":{},"或":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_71":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_71","tf":0.16666666666666666},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_71":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_71","tf":0.125}},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_71":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_71","tf":0.125},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0027434842249657062}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"-":{"docs":{},"b":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00411522633744856}}}}}}}}}}}}}}}},"方":{"docs":{},"法":{"docs":{},"​":{"docs":{},"​":{"docs":{},"块":{"docs":{},"可":{"docs":{},"以":{"docs":{},"由":{"docs":{},"一":{"docs":{},"个":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"子":{"docs":{},"句":{"docs":{},"后":{"docs":{},"跟":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"子":{"docs":{},"句":{"docs":{},"构":{"docs":{},"成":{"docs":{},",":{"docs":{},"用":{"docs":{},"大":{"docs":{},"括":{"docs":{},"号":{"docs":{},"括":{"docs":{},"起":{"docs":{},"来":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"由":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"子":{"docs":{},"句":{"docs":{},"后":{"docs":{},"跟":{"docs":{},"一":{"docs":{},"个":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_71":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_71","tf":0.041666666666666664}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}}}}}}}}}}},"/":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}}}},"获":{"docs":{},"取":{"docs":{},"某":{"docs":{},"个":{"docs":{},"值":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"通":{"docs":{},"过":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},",":{"docs":{},"但":{"docs":{},"它":{"docs":{},"不":{"docs":{},"要":{"docs":{},"求":{"docs":{},"属":{"docs":{},"性":{"docs":{},"是":{"docs":{},"存":{"docs":{},"储":{"docs":{},"型":{"docs":{},"属":{"docs":{},"性":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}},"代":{"docs":{},"码":{"docs":{},"块":{"docs":{},"中":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"写":{"docs":{},"在":{"docs":{},"s":{"docs":{},"u":{"docs":{},"b":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"表":{"docs":{},"示":{"docs":{},"。":{"docs":{},"它":{"docs":{},"们":{"docs":{},"的":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"是":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"型":{"docs":{},",":{"docs":{},"而":{"docs":{},"且":{"docs":{},"可":{"docs":{},"以":{"docs":{},"用":{"docs":{},"于":{"docs":{},"所":{"docs":{},"有":{"docs":{},"接":{"docs":{},"受":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.02074688796680498}}}},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.007518796992481203},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.06201550387596899},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},".":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}}}}}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"-":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.015503875968992248},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.003429355281207133}},"e":{"docs":{},"[":{"docs":{},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}},"]":{"docs":{},".":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"-":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}}},"­":{"docs":{},",":{"docs":{},"­":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"-":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.031007751937984496},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.003429355281207133}},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428}}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.006172839506172839}}}}}}}},"­":{"docs":{},",":{"docs":{},"­":{"docs":{},"g":{"docs":{},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"-":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"-":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}},"b":{"docs":{},"y":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.008620689655172414}}}}}},"e":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.005076142131979695},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00404040404040404},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.005747126436781609},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}},"n":{"docs":{},"n":{"docs":{},"a":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.003015075376884422}},"(":{"docs":{},"\"":{"docs":{},"b":{"docs":{},"o":{"docs":{},"b":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"该":{"docs":{},"函":{"docs":{},"数":{"docs":{},"结":{"docs":{},"束":{"docs":{},"它":{"docs":{},"的":{"docs":{},"执":{"docs":{},"行":{"docs":{},"并":{"docs":{},"返":{"docs":{},"回":{"docs":{},"g":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}}}},"a":{"docs":{},"t":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}},"t":{"docs":{},"m":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"t":{"docs":{},"h":{"docs":{},"n":{"docs":{},"k":{"docs":{},"l":{"docs":{},"k":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}},"a":{"docs":{},"h":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}},"p":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}},"e":{"docs":{},"m":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/01_About_the_Language_Reference.html#gitbook_71":{"ref":"chapter3/01_About_the_Language_Reference.html#gitbook_71","tf":0.08333333333333333},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.015503875968992248},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.042735042735042736}}}}}}},"i":{"docs":{},"d":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.016483516483516484}},"[":{"docs":{},"(":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.01098901098901099}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"p":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}}}}},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.012658227848101266},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.02247191011235955},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0044742729306487695},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0030757400999615533},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.10989010989010989},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.02631578947368421},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.011160714285714286},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.004801097393689987}},";":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}},"g":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002306805074971165},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.023668639053254437},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.015037593984962405}},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.003683241252302026},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0037593984962406013}},"去":{"docs":{},"跳":{"docs":{},"转":{"docs":{},"到":{"docs":{},"下":{"docs":{},"一":{"docs":{},"次":{"docs":{},"循":{"docs":{},"环":{"docs":{},"迭":{"docs":{},"代":{"docs":{},"时":{"docs":{},",":{"docs":{},"这":{"docs":{},"里":{"docs":{},"使":{"docs":{},"用":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{},"标":{"docs":{},"签":{"docs":{},"并":{"docs":{},"不":{"docs":{},"是":{"docs":{},"严":{"docs":{},"格":{"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":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"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":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"使":{"docs":{},"用":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{},"标":{"docs":{},"签":{"docs":{},"也":{"docs":{},"是":{"docs":{},"没":{"docs":{},"有":{"docs":{},"危":{"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":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"语":{"docs":{},"句":{"docs":{},"结":{"docs":{},"束":{"docs":{},"本":{"docs":{},"次":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}},"跳":{"docs":{},"转":{"docs":{},"控":{"docs":{},"制":{"docs":{},"去":{"docs":{},"执":{"docs":{},"行":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}}}}}},",":{"docs":{},"d":{"1":{"2":{"docs":{},",":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"h":{"docs":{},"a":{"docs":{},"m":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}},".":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},")":{"docs":{},"-":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"(":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}}}}}},"方":{"docs":{},"法":{"docs":{},"从":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"参":{"docs":{},"数":{"docs":{},"获":{"docs":{},"取":{"docs":{},"游":{"docs":{},"戏":{"docs":{},"信":{"docs":{},"息":{"docs":{},"并":{"docs":{},"输":{"docs":{},"出":{"docs":{},".":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"在":{"docs":{},"方":{"docs":{},"法":{"docs":{},"中":{"docs":{},"被":{"docs":{},"当":{"docs":{},"做":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"s":{"docs":{},"n":{"docs":{},"a":{"docs":{},"k":{"docs":{},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"l":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"所":{"docs":{},"以":{"docs":{},"方":{"docs":{},"法":{"docs":{},"中":{"docs":{},"只":{"docs":{},"能":{"docs":{},"访":{"docs":{},"问":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"e":{"docs":{},"g":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}}}}}},"h":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"b":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848}}}}}}}}}},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0034602076124567475}},"n":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}},"u":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"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":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"类":{"docs":{},"型":{"docs":{},"都":{"docs":{},"是":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"集":{"docs":{},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"数":{"docs":{},"组":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"创":{"docs":{},"建":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"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":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}},"-":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00205761316872428},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.008547008547008548}}}}}}},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.005698005698005698}}}}}}}}}}}}}}},"j":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0044742729306487695},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.016260162601626018}}}}},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.04040404040404041},"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.006622516556291391},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0037593984962406013}},"!":{"docs":{},".":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00404040404040404}}}}}}},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}},"变":{"docs":{},"量":{"docs":{},"被":{"docs":{},"设":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},"后":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"实":{"docs":{},"例":{"docs":{},"和":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"和":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"7":{"3":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00404040404040404}},",":{"docs":{},"并":{"docs":{},"分":{"docs":{},"别":{"docs":{},"被":{"docs":{},"设":{"docs":{},"定":{"docs":{},"为":{"docs":{},"下":{"docs":{},"面":{"docs":{},"的":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"和":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"这":{"docs":{},"两":{"docs":{},"个":{"docs":{},"变":{"docs":{},"量":{"docs":{},"都":{"docs":{},"被":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"在":{"docs":{},"被":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},"后":{"docs":{},",":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"实":{"docs":{},"例":{"docs":{},"和":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}},"赋":{"docs":{},"值":{"docs":{},"为":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}},"docs":{}},"docs":{}}}}}}}},"现":{"docs":{},"在":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"指":{"docs":{},"向":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"而":{"docs":{},"变":{"docs":{},"量":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"7":{"3":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"指":{"docs":{},"向":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"可":{"docs":{},"选":{"docs":{},"类":{"docs":{},"型":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"变":{"docs":{},"量":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"保":{"docs":{},"存":{"docs":{},"某":{"docs":{},"个":{"docs":{},"特":{"docs":{},"定":{"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":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},"里":{"docs":{},"的":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{},"属":{"docs":{},"性":{"docs":{},"。":{"docs":{},"这":{"docs":{},"里":{"docs":{},"使":{"docs":{},"用":{"docs":{},"了":{"docs":{},"两":{"docs":{},"层":{"docs":{},"可":{"docs":{},"选":{"docs":{},"链":{"docs":{},"来":{"docs":{},"联":{"docs":{},"系":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"和":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.013245033112582781}}},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.013245033112582781}},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"!":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}},"?":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"?":{"docs":{},".":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}},"e":{"docs":{},"r":{"docs":{},"(":{"docs":{},")":{"docs":{},"?":{"docs":{},".":{"docs":{},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.006622516556291391}}}}}}}}}}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.009933774834437087}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}},"[":{"0":{"docs":{},"]":{"docs":{},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.006622516556291391}}}}}}}},"docs":{}}},"不":{"docs":{},"是":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},"时":{"docs":{},",":{"docs":{},"会":{"docs":{},"运":{"docs":{},"行":{"docs":{},"通":{"docs":{},"过":{"docs":{},",":{"docs":{},"且":{"docs":{},"会":{"docs":{},"将":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"值":{"docs":{},"现":{"docs":{},"在":{"docs":{},"包":{"docs":{},"含":{"docs":{},"一":{"docs":{},"个":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"然":{"docs":{},"而":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"现":{"docs":{},"在":{"docs":{},"是":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"?":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"?":{"docs":{},".":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"后":{"docs":{},"面":{"docs":{},",":{"docs":{},"在":{"docs":{},"子":{"docs":{},"脚":{"docs":{},"本":{"docs":{},"括":{"docs":{},"号":{"docs":{},"的":{"docs":{},"前":{"docs":{},"面":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"j":{"docs":{},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{},".":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}},"s":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.006622516556291391}},".":{"docs":{},"b":{"docs":{},"u":{"docs":{},"i":{"docs":{},"l":{"docs":{},"d":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"u":{"docs":{},"s":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.006622516556291391}},"e":{"docs":{},".":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.006622516556291391}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.013245033112582781}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813},"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.011834319526627219}},"(":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813}}}}}}}},"s":{"1":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813}}},"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.007032348804500703}}}}}},"e":{"docs":{},"r":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.014064697609001406}},"的":{"docs":{},"值":{"docs":{},"没":{"docs":{},"有":{"docs":{},"被":{"docs":{},"指":{"docs":{},"定":{"docs":{},",":{"docs":{},"函":{"docs":{},"数":{"docs":{},"会":{"docs":{},"使":{"docs":{},"用":{"docs":{},"默":{"docs":{},"认":{"docs":{},"值":{"docs":{},"(":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"一":{"docs":{},"样":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}},"中":{"docs":{},",":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"叫":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"的":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"和":{"docs":{},"s":{"1":{"docs":{},"的":{"docs":{},"局":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},",":{"docs":{},"第":{"docs":{},"二":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"叫":{"docs":{},"t":{"docs":{},"o":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"的":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"和":{"docs":{},"s":{"2":{"docs":{},"的":{"docs":{},"局":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},",":{"docs":{},"第":{"docs":{},"三":{"docs":{},"个":{"docs":{},"参":{"docs":{},"数":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"叫":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"和":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"另":{"docs":{},"一":{"docs":{},"个":{"docs":{},"版":{"docs":{},"本":{"docs":{},",":{"docs":{},"这":{"docs":{},"个":{"docs":{},"版":{"docs":{},"本":{"docs":{},"中":{"docs":{},"并":{"docs":{},"没":{"docs":{},"有":{"docs":{},"为":{"docs":{},"它":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"提":{"docs":{},"供":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},",":{"docs":{},"但":{"docs":{},"是":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"其":{"docs":{},"中":{"docs":{},"j":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848}}}}},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"m":{"docs":{},"i":{"docs":{},"l":{"docs":{},"l":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"u":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036}}}}}}}}}}}}}},"y":{"docs":{},"n":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}},"p":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.006825938566552901}}}}}}},"k":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"t":{"docs":{},"y":{"docs":{},"a":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}},"n":{"docs":{},"e":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}}}},"e":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.008908685968819599},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0056179775280898875},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}},"y":{"docs":{},"s":{"docs":{},"或":{"docs":{},"者":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.004454342984409799}}}}}}}},")":{"docs":{},"和":{"docs":{},"/":{"docs":{},"或":{"docs":{},"值":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"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":{},",":{"docs":{},"它":{"docs":{},"们":{"docs":{},"都":{"docs":{},"会":{"docs":{},"被":{"docs":{},"拷":{"docs":{},"贝":{"docs":{},"。":{"docs":{},"相":{"docs":{},"反":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"键":{"docs":{},"(":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"s":{"docs":{},")":{"docs":{},"和":{"docs":{},"/":{"docs":{},"或":{"docs":{},"值":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},")":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"值":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},")":{"docs":{},"是":{"docs":{},"整":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},")":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"这":{"docs":{},"两":{"docs":{},"种":{"docs":{},"类":{"docs":{},"型":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}},"和":{"docs":{},"一":{"docs":{},"个":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}},"-":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}},"的":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}},"e":{"docs":{},"p":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.014367816091954023}}},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.016260162601626018}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}},"o":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}},"s":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.011185682326621925}}}}}}}}}}}}}}}}}}},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002691272587466359},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.003015075376884422}}}}}},"u":{"docs":{},"b":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848}}}}}}}},"m":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.005875440658049354},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.005747126436781609},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0037593984962406013}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"k":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002691272587466359}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"o":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.008426966292134831}},"(":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.008426966292134831}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"整":{"docs":{},"型":{"docs":{},"变":{"docs":{},"量":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"n":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"(":{"docs":{},"初":{"docs":{},"始":{"docs":{},"为":{"0":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}},"将":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"其":{"docs":{},"包":{"docs":{},"含":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"叫":{"docs":{},"做":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.02074688796680498}}}}}}}}},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"u":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}},"s":{"docs":{},"或":{"docs":{},"者":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},")":{"docs":{},"和":{"docs":{},"一":{"docs":{},"个":{"docs":{},"指":{"docs":{},"定":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},"(":{"docs":{},"比":{"docs":{},"如":{"docs":{},"数":{"docs":{},"字":{"1":{"0":{"docs":{},"或":{"docs":{},"者":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"新":{"docs":{},"常":{"docs":{},"量":{"docs":{},",":{"docs":{},"并":{"docs":{},"给":{"docs":{},"它":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"1":{"0":{"docs":{},"。":{"docs":{},"然":{"docs":{},"后":{"docs":{},",":{"docs":{},"声":{"docs":{},"明":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"字":{"docs":{},"是":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"的":{"docs":{},"变":{"docs":{},"量":{"docs":{},"并":{"docs":{},"将":{"docs":{},"它":{"docs":{},"的":{"docs":{},"值":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"为":{"0":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}},"s":{"docs":{},",":{"docs":{},"它":{"docs":{},"用":{"docs":{},"来":{"docs":{},"表":{"docs":{},"示":{"docs":{},"所":{"docs":{},"有":{"docs":{},"a":{"docs":{},"u":{"docs":{},"d":{"docs":{},"i":{"docs":{},"o":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036}}}}}}},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.011278195488721804}}}}}},"a":{"docs":{},"g":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013}}}}}}}}}}},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}},"p":{"docs":{},"u":{"docs":{},"l":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}},"p":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.014044943820224719}},"l":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.004454342984409799}},"e":{"docs":{},"s":{"docs":{},"y":{"docs":{},"r":{"docs":{},"u":{"docs":{},"p":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.004454342984409799}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.004219409282700422}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"2":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813}}},"docs":{},"a":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}},"的":{"docs":{},"变":{"docs":{},"量":{"docs":{},",":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"‘":{"docs":{},"一":{"docs":{},"个":{"docs":{},"有":{"docs":{},"两":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"型":{"docs":{},"的":{"docs":{},"参":{"docs":{},"数":{"docs":{},"并":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"型":{"docs":{},"的":{"docs":{},"值":{"docs":{},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},"’":{"docs":{},",":{"docs":{},"并":{"docs":{},"让":{"docs":{},"这":{"docs":{},"个":{"docs":{},"新":{"docs":{},"变":{"docs":{},"量":{"docs":{},"指":{"docs":{},"向":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.016483516483516484}},"(":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}},"[":{"0":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}},"1":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}},"2":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}},"docs":{}},"下":{"docs":{},"标":{"docs":{},"的":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"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":{},"入":{"docs":{},"参":{"docs":{},"的":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"是":{"docs":{},"否":{"docs":{},"有":{"docs":{},"效":{"docs":{},"的":{"docs":{},"判":{"docs":{},"断":{"docs":{},"。":{"docs":{},"为":{"docs":{},"了":{"docs":{},"方":{"docs":{},"便":{"docs":{},"进":{"docs":{},"行":{"docs":{},"断":{"docs":{},"言":{"docs":{},",":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"x":{"docs":{},"包":{"docs":{},"含":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"名":{"docs":{},"为":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},"e":{"docs":{},"x":{"docs":{},"i":{"docs":{},"s":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"d":{"docs":{},"的":{"docs":{},"成":{"docs":{},"员":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"确":{"docs":{},"认":{"docs":{},"入":{"docs":{},"参":{"docs":{},"的":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"或":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"在":{"docs":{},"阅":{"docs":{},"读":{"docs":{},"顺":{"docs":{},"序":{"docs":{},"从":{"docs":{},"左":{"docs":{},"上":{"docs":{},"到":{"docs":{},"右":{"docs":{},"下":{"docs":{},"的":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"x":{"docs":{},"实":{"docs":{},"例":{"docs":{},"中":{"docs":{},"的":{"docs":{},"数":{"docs":{},"组":{"docs":{},"实":{"docs":{},"例":{"docs":{},"g":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"提":{"docs":{},"供":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"两":{"docs":{},"个":{"docs":{},"入":{"docs":{},"参":{"docs":{},"的":{"docs":{},"构":{"docs":{},"造":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"入":{"docs":{},"参":{"docs":{},"分":{"docs":{},"别":{"docs":{},"是":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{},"s":{"docs":{},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"s":{"docs":{},",":{"docs":{},"创":{"docs":{},"建":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"足":{"docs":{},"够":{"docs":{},"容":{"docs":{},"纳":{"docs":{},"r":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"右":{"docs":{},"上":{"docs":{},"值":{"docs":{},"为":{"1":{"docs":{},".":{"5":{"docs":{},",":{"docs":{},"坐":{"docs":{},"下":{"docs":{},"值":{"docs":{},"为":{"3":{"docs":{},".":{"2":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}},"docs":{}}},"docs":{}}}}}}},"docs":{}}},"docs":{}}}}}},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},",":{"docs":{},"将":{"docs":{},"呈":{"docs":{},"现":{"docs":{},"一":{"docs":{},"个":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"二":{"docs":{},"维":{"docs":{},"数":{"docs":{},"组":{"docs":{},"。":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.005979073243647235},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}},")":{"docs":{},"”":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"“":{"docs":{},"最":{"docs":{},"大":{"docs":{},"适":{"docs":{},"合":{"docs":{},"”":{"docs":{},"(":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.006825938566552901}},"a":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.005747126436781609}}}}}}},"k":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}},"d":{"docs":{},"e":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.005747126436781609},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}},"s":{"docs":{},"k":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.46048954956968813},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.004020100502512563}},")":{"docs":{},",":{"docs":{},"实":{"docs":{},"例":{"docs":{},"属":{"docs":{},"性":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}},"类":{"docs":{},"方":{"docs":{},"法":{"docs":{},"(":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}},"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":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"定":{"docs":{},"义":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"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":{},"扩":{"docs":{},"展":{"docs":{},"它":{"docs":{},"们":{"docs":{},"的":{"docs":{},"功":{"docs":{},"能":{"docs":{},";":{"docs":{},"可":{"docs":{},"以":{"docs":{},"遵":{"docs":{},"守":{"docs":{},"协":{"docs":{},"议":{"docs":{},"(":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},"方":{"docs":{},"法":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.43478260869565216}}}}}}}}}}}},")":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"属":{"docs":{},"性":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.43478260869565216}}}}}}}}}}},"。":{"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":{},"e":{"docs":{},"a":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"修":{"docs":{},"改":{"docs":{},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"称":{"docs":{},"(":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.43478260869565216}}}}}}}}}}}}}}}}}}}},"在":{"docs":{},"变":{"docs":{},"异":{"docs":{},"方":{"docs":{},"法":{"docs":{},"中":{"docs":{},"给":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"(":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.43478260869565216}}}}}}}}}}}}}}}}}}}}}},"方":{"docs":{},"法":{"docs":{},"的":{"docs":{},"局":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"称":{"docs":{},"和":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"称":{"docs":{},"(":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.43478260869565216}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"b":{"docs":{},"y":{"docs":{},"x":{"docs":{},",":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"b":{"docs":{},"y":{"docs":{},"x":{"docs":{},"用":{"docs":{},"来":{"docs":{},"移":{"docs":{},"动":{"docs":{},"一":{"docs":{},"个":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"。":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"b":{"docs":{},"y":{"docs":{},"x":{"docs":{},"方":{"docs":{},"法":{"docs":{},"在":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},"时":{"docs":{},"修":{"docs":{},"改":{"docs":{},"了":{"docs":{},"这":{"docs":{},"个":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"。":{"docs":{},"方":{"docs":{},"法":{"docs":{},"定":{"docs":{},"义":{"docs":{},"时":{"docs":{},"加":{"docs":{},"上":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"方":{"docs":{},"法":{"docs":{},"(":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.43478260869565216}}}}}}}}}}},"中":{"docs":{},",":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},"等":{"docs":{},"同":{"docs":{},"于":{"docs":{},"当":{"docs":{},"前":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.017241379310344827}}}},"a":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}},"e":{"docs":{},"-":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.005847953216374269},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00461361014994233}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"o":{"docs":{},"f":{"docs":{},"l":{"docs":{},"i":{"docs":{},"f":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036}}}}}}}}}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.010752688172043012},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.5804737975592247}},"w":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}}}},")":{"docs":{},"中":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"docs":{},"这":{"docs":{},"个":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{},"的":{"docs":{},"名":{"docs":{},"字":{"docs":{},",":{"docs":{},"在":{"docs":{},"某":{"docs":{},"个":{"docs":{},"文":{"docs":{},"件":{"docs":{},"的":{"docs":{},"顶":{"docs":{},"端":{"docs":{},"(":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.006825938566552901}}}}}}},"d":{"docs":{},"i":{"docs":{},"a":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848}},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.020553359683794466}},"。":{"docs":{},"为":{"docs":{},"了":{"docs":{},"能":{"docs":{},"够":{"docs":{},"使":{"docs":{},"用":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}}}},"因":{"docs":{},"为":{"docs":{},"不":{"docs":{},"确":{"docs":{},"定":{"docs":{},",":{"docs":{},"a":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.45020677322007374},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.016442451420029897},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}},"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":{},"变":{"docs":{},"它":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},";":{"docs":{},"并":{"docs":{},"且":{"docs":{},"它":{"docs":{},"做":{"docs":{},"的":{"docs":{},"任":{"docs":{},"何":{"docs":{},"改":{"docs":{},"变":{"docs":{},"在":{"docs":{},"方":{"docs":{},"法":{"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":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"方":{"docs":{},"法":{"docs":{},"时":{"docs":{},",":{"docs":{},"不":{"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":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"方":{"docs":{},"法":{"docs":{},"时":{"docs":{},",":{"docs":{},"必":{"docs":{},"须":{"docs":{},"写":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.2582899556583767},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.005376344086021506}},"g":{"docs":{},"u":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}},"p":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.235371079056684},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767}},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.007518796992481203},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.01098901098901099},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}},"e":{"docs":{},"r":{"docs":{},"作":{"docs":{},"为":{"docs":{},"\\":{"docs":{},"(":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}},"y":{"docs":{},"t":{"docs":{},"w":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}},"s":{"docs":{},"(":{"docs":{},"a":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}},"s":{"docs":{},"b":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}},"c":{"docs":{},"h":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}},"n":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"整":{"docs":{},"数":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{},"a":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"h":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.008040201005025126}}}}}}}},"i":{"docs":{},"n":{"docs":{},"(":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.005917159763313609}}}}}}}}}}}}}}}}}}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036}}}}}},"和":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}},"d":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}},"u":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0044742729306487695}}}}},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.006711409395973154}}}}}}}}},"l":{"docs":{},"k":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.008908685968819599}},"i":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013}}}},"l":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.003683241252302026}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}}}}}},"x":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}},"d":{"docs":{},"d":{"docs":{},"l":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}},"e":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}}}}}}}},"p":{"docs":{},"h":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.016597510373443983}}}},"o":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}},"r":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}},"e":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767}},"b":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0015378700499807767}}}}}}},"v":{"docs":{},"e":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.006445672191528545},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002691272587466359}},"n":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"o":{"docs":{},"z":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.005625879043600563}},"(":{"docs":{},"c":{"docs":{},"u":{"docs":{},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813}}}}}}}}}}}}}},"指":{"docs":{},"向":{"docs":{},"了":{"docs":{},"正":{"docs":{},"确":{"docs":{},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},",":{"docs":{},"它":{"docs":{},"可":{"docs":{},"以":{"docs":{},"被":{"docs":{},"用":{"docs":{},"来":{"docs":{},"数":{"docs":{},"到":{"0":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"y":{"docs":{},"x":{"docs":{},"(":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.005141388174807198},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}},"创":{"docs":{},"建":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"结":{"docs":{},"构":{"docs":{},"(":{"docs":{},"它":{"docs":{},"的":{"docs":{},"x":{"docs":{},"和":{"docs":{},"i":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.05928853754940711}},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.003952569169960474}}}}}},".":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0031620553359683794}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0031620553359683794}}}}}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0047430830039525695}}}}}}},"实":{"docs":{},"例":{"docs":{},"和":{"docs":{},"三":{"docs":{},"个":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"l":{"docs":{},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"在":{"docs":{},"它":{"docs":{},"被":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"时":{"docs":{},"根":{"docs":{},"据":{"docs":{},"它":{"docs":{},"的":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"标":{"docs":{},"记":{"docs":{},"符":{"docs":{},"和":{"docs":{},"里":{"docs":{},"面":{"docs":{},"的":{"docs":{},"内":{"docs":{},"容":{"docs":{},"(":{"docs":{},"p":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"将":{"docs":{},"用":{"docs":{},"于":{"docs":{},"打":{"docs":{},"印":{"docs":{},"一":{"docs":{},"个":{"docs":{},"m":{"docs":{},"o":{"docs":{},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"描":{"docs":{},"述":{"docs":{},",":{"docs":{},"包":{"docs":{},"括":{"docs":{},"它":{"docs":{},"的":{"docs":{},"导":{"docs":{},"演":{"docs":{},"的":{"docs":{},"名":{"docs":{},"字":{"docs":{},"d":{"docs":{},"i":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"。":{"docs":{},"当":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"真":{"docs":{},"的":{"docs":{},"包":{"docs":{},"含":{"docs":{},"一":{"docs":{},"个":{"docs":{},"值":{"docs":{},"(":{"docs":{},"这":{"docs":{},"个":{"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":{},"f":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}},"d":{"docs":{},"e":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}},")":{"docs":{},"被":{"docs":{},"赋":{"docs":{},"予":{"docs":{},"了":{"docs":{},"h":{"docs":{},"d":{"docs":{},"分":{"docs":{},"辨":{"docs":{},"率":{"docs":{},"(":{"1":{"9":{"2":{"0":{"docs":{},"*":{"1":{"0":{"8":{"0":{"docs":{},")":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"拷":{"docs":{},"贝":{"docs":{},"(":{"docs":{},"h":{"docs":{},"d":{"docs":{},")":{"docs":{},"。":{"docs":{},"同":{"docs":{},"时":{"docs":{},"设":{"docs":{},"置":{"docs":{},"为":{"docs":{},"交":{"docs":{},"错":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},")":{"docs":{},",":{"docs":{},"命":{"docs":{},"名":{"docs":{},"为":{"docs":{},"“":{"1":{"0":{"8":{"0":{"docs":{},"i":{"docs":{},"”":{"docs":{},"。":{"docs":{},"最":{"docs":{},"后":{"docs":{},",":{"docs":{},"其":{"docs":{},"帧":{"docs":{},"率":{"docs":{},"是":{"2":{"5":{"docs":{},".":{"0":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}},"docs":{}}},"docs":{}},"docs":{}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}}}}}}}}}},"l":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174}}}},"i":{"docs":{},"f":{"docs":{},"i":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.005141388174807198},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}},"y":{"docs":{},"t":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}},"u":{"docs":{},"l":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.003015075376884422}},"e":{"docs":{},"的":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"调":{"docs":{},"用":{"docs":{},",":{"docs":{},"只":{"docs":{},"能":{"docs":{},"调":{"docs":{},"用":{"docs":{},"在":{"docs":{},"t":{"docs":{},"o":{"docs":{},"p":{"docs":{},"-":{"docs":{},"l":{"docs":{},"e":{"docs":{},"v":{"docs":{},"e":{"docs":{},"l":{"docs":{},"声":{"docs":{},"明":{"docs":{},"中":{"docs":{},"的":{"docs":{},"m":{"docs":{},"e":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.005076142131979695}}}}}},"o":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848}}}}},"m":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}},"n":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.005875440658049354},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.022326674500587545},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.015590200445434299},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.004604051565377533},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.24099695810028457},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.44040058622374206},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.005076142131979695},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.8772772996535151},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.011185682326621925},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.03232323232323232},"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.03642384105960265},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.008695652173913044},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.015037593984962405},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.007035175879396985},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.011396011396011397}},"d":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}},"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"协":{"docs":{},"议":{"docs":{},"包":{"docs":{},"含":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},";":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"d":{"docs":{},"协":{"docs":{},"议":{"docs":{},"包":{"docs":{},"含":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"类":{"docs":{},"型":{"docs":{},"的":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"属":{"docs":{},"性":{"docs":{},".":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"=":{"docs":{},"\"":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"c":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"_":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"u":{"docs":{},"e":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"_":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"z":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"a":{"docs":{},"n":{"docs":{},"_":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"_":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"s":{"docs":{},"_":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"_":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{},"e":{"docs":{},"x":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"_":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},"s":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{},"_":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"y":{"docs":{},"_":{"docs":{},"o":{"docs":{},"b":{"docs":{},"s":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"t":{"docs":{},"y":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}},"s":{"docs":{},"_":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}},"_":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"_":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"_":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"_":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"_":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}},"_":{"docs":{},"r":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"_":{"docs":{},"o":{"docs":{},"f":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{},"y":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"_":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"f":{"docs":{},"-":{"1":{"6":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}},"docs":{}},"8":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}},"docs":{}}}}},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"_":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"_":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"_":{"docs":{},"s":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"_":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"c":{"docs":{},"l":{"docs":{},"o":{"docs":{},"s":{"docs":{},"u":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}},"y":{"docs":{},"_":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"s":{"docs":{},"y":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"e":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"_":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"h":{"docs":{},"_":{"docs":{},"a":{"docs":{},"_":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"_":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{},"o":{"docs":{},"n":{"docs":{},"l":{"docs":{},"y":{"docs":{},"_":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"p":{"docs":{},"u":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"l":{"docs":{},"o":{"docs":{},"b":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},"l":{"docs":{},"o":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"_":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{},"_":{"docs":{},"a":{"docs":{},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{},">":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"实":{"docs":{},"参":{"docs":{},"语":{"docs":{},"句":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":5.007751937984496}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"\"":{"docs":{},">":{"docs":{},"泛":{"docs":{},"型":{"docs":{},"形":{"docs":{},"参":{"docs":{},"语":{"docs":{},"句":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}},">":{"docs":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"语":{"docs":{},"句":{"docs":{},"<":{"docs":{},"a":{"docs":{"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":5}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"z":{"docs":{},"y":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"1":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}}},"2":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}}},"3":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}}},"4":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}}},"5":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}}},"6":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}}},"7":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}}},"8":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}}}},"docs":{}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"_":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"_":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"_":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{},"e":{"docs":{},"s":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"b":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{},"k":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"l":{"docs":{},"t":{"docs":{},"h":{"docs":{},"r":{"docs":{},"o":{"docs":{},"u":{"docs":{},"g":{"docs":{},"h":{"docs":{},"_":{"docs":{},"s":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"\"":{"docs":{},">":{"docs":{},"<":{"docs":{},"/":{"docs":{},"a":{"docs":{"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.011135857461024499}},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"[":{"1":{"6":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}},"docs":{}},"docs":{}}}}}}}}}}}},")":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.23255813953488372}}}}}}}}}}}}}},"简":{"docs":{},"写":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"(":{"docs":{},"s":{"docs":{},"h":{"docs":{},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.23255813953488372}}}}}}}}}}}}}}}}}}},"默":{"docs":{},"认":{"docs":{},"参":{"docs":{},"数":{"docs":{},"值":{"docs":{},"(":{"docs":{},"d":{"docs":{},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.23255813953488372}}}}}}}}}}}}}}}},".":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}}}}}}},"数":{"docs":{},"组":{"docs":{},"确":{"docs":{},"已":{"docs":{},"被":{"docs":{},"复":{"docs":{},"制":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"将":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{},"e":{"docs":{},"d":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"中":{"docs":{},"第":{"docs":{},"一":{"docs":{},"个":{"docs":{},"元":{"docs":{},"素":{"docs":{},"从":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"m":{"docs":{},"o":{"docs":{},"h":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"修":{"docs":{},"改":{"docs":{},"为":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"m":{"docs":{},"o":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},",":{"docs":{},"则":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"数":{"docs":{},"组":{"docs":{},"返":{"docs":{},"回":{"docs":{},"的":{"docs":{},"仍":{"docs":{},"是":{"docs":{},"拷":{"docs":{},"贝":{"docs":{},"发":{"docs":{},"生":{"docs":{},"前":{"docs":{},"的":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"m":{"docs":{},"o":{"docs":{},"h":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"其":{"docs":{},"包":{"docs":{},"含":{"docs":{},"了":{"docs":{},"七":{"docs":{},"个":{"docs":{},"人":{"docs":{},"名":{"docs":{},"。":{"docs":{},"还":{"docs":{},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{},"e":{"docs":{},"d":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"变":{"docs":{},"量":{"docs":{},",":{"docs":{},"用":{"docs":{},"以":{"docs":{},"储":{"docs":{},"存":{"docs":{},"在":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"上":{"docs":{},"调":{"docs":{},"用":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"[":{"docs":{},"i":{"docs":{"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.0022371364653243847}}}}},"(":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"b":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}}}}}},"r":{"docs":{},"g":{"docs":{},"u":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"a":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.008287292817679558}}}}}}}}}}},"i":{"docs":{},"v":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}},"v":{"docs":{},"i":{"docs":{},"g":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.004484304932735426}}}}}},"e":{"docs":{},"w":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013},"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.011834319526627219},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0034602076124567475},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}},"i":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}},"x":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"必":{"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":{},"e":{"docs":{},"t":{"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":{},"在":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"代":{"docs":{},"码":{"docs":{},"块":{"docs":{},"中":{"docs":{},"依":{"docs":{},"然":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"n":{"docs":{},"e":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}}}}}}},"c":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"i":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}},"x":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}},"t":{"docs":{},"o":{"docs":{},"t":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"p":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}},"p":{"docs":{},"t":{"docs":{},"u":{"docs":{},"n":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}},"r":{"docs":{},"n":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}},"x":{"docs":{},"t":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}},"方":{"docs":{},"法":{"docs":{},"时":{"docs":{},",":{"docs":{},"开":{"docs":{},"关":{"docs":{},"在":{"docs":{},"不":{"docs":{},"同":{"docs":{},"的":{"docs":{},"电":{"docs":{},"源":{"docs":{},"状":{"docs":{},"态":{"docs":{},"(":{"docs":{},"o":{"docs":{},"f":{"docs":{},"f":{"docs":{},",":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},",":{"docs":{},"h":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}}},"e":{"docs":{},"d":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0031620553359683794},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897}}}}},"g":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.005382545174932718}}},"a":{"docs":{},"r":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.016877637130801686}}}}},"i":{"docs":{},"l":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":5.021505376344086},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0066815144766146995},"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.005917159763313609},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.024242424242424242},"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.016260162601626018},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.004484304932735426},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.014619883040935672},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.007035175879396985}},",":{"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}},"条":{"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":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}},"但":{"docs":{},"是":{"docs":{},"后":{"docs":{},"面":{"docs":{},"的":{"docs":{},"代":{"docs":{},"码":{"docs":{},"运":{"docs":{},"行":{"docs":{},"需":{"docs":{},"要":{"docs":{},"一":{"docs":{},"个":{"docs":{},"非":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}},"不":{"docs":{},"是":{"docs":{},"指":{"docs":{},"针":{"docs":{},"—":{"docs":{},"—":{"docs":{},"它":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"确":{"docs":{},"定":{"docs":{},"的":{"docs":{},"值":{"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":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"话":{"docs":{},"请":{"docs":{},"不":{"docs":{},"要":{"docs":{},"使":{"docs":{},"用":{"docs":{},"隐":{"docs":{},"式":{"docs":{},"解":{"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":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},"使":{"docs":{},"用":{"docs":{},"弱":{"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":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"方":{"docs":{},"式":{"docs":{},"断":{"docs":{},"开":{"docs":{},"两":{"docs":{},"个":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"(":{"docs":{},"包":{"docs":{},"括":{"docs":{},"最":{"docs":{},"先":{"docs":{},"的":{"docs":{},"那":{"docs":{},"个":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},")":{"docs":{},",":{"docs":{},"只":{"docs":{},"留":{"docs":{},"下":{"docs":{},"一":{"docs":{},"个":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},",":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"选":{"docs":{},"项":{"docs":{},"会":{"docs":{},"导":{"docs":{},"致":{"docs":{},"运":{"docs":{},"行":{"docs":{},"错":{"docs":{},"误":{"docs":{},"(":{"docs":{},"r":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}},"时":{"docs":{},",":{"docs":{},"将":{"docs":{},"闭":{"docs":{},"包":{"docs":{},"内":{"docs":{},"的":{"docs":{},"占":{"docs":{},"有":{"docs":{},"定":{"docs":{},"义":{"docs":{},"为":{"docs":{},"弱":{"docs":{},"引":{"docs":{},"用":{"docs":{},"。":{"docs":{},"弱":{"docs":{},"引":{"docs":{},"用":{"docs":{},"总":{"docs":{},"是":{"docs":{},"可":{"docs":{},"选":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"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":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"没":{"docs":{},"有":{"docs":{},"任":{"docs":{},"何":{"docs":{},"一":{"docs":{},"个":{"docs":{},"析":{"docs":{},"构":{"docs":{},"函":{"docs":{},"数":{"docs":{},"被":{"docs":{},"调":{"docs":{},"用":{"docs":{},"。":{"docs":{},"强":{"docs":{},"引":{"docs":{},"用":{"docs":{},"循":{"docs":{},"环":{"docs":{},"阻":{"docs":{},"止":{"docs":{},"了":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"o":{"docs":{},"n":{"docs":{},"和":{"docs":{},"a":{"docs":{},"p":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"了":{"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":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"s":{"docs":{},",":{"docs":{},"它":{"docs":{},"将":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"包":{"docs":{},"含":{"docs":{},"默":{"docs":{},"认":{"docs":{},"值":{"1":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},",":{"docs":{},"不":{"docs":{},"论":{"docs":{},"你":{"docs":{},"调":{"docs":{},"用":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"、":{"docs":{},"方":{"docs":{},"法":{"docs":{},"、":{"docs":{},"子":{"docs":{},"脚":{"docs":{},"本":{"docs":{},"等":{"docs":{},"返":{"docs":{},"回":{"docs":{},"的":{"docs":{},"值":{"docs":{},"是":{"docs":{},"不":{"docs":{},"是":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"值":{"docs":{},",":{"docs":{},"它":{"docs":{},"的":{"docs":{},"返":{"docs":{},"回":{"docs":{},"结":{"docs":{},"果":{"docs":{},"都":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"值":{"docs":{},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"利":{"docs":{},"用":{"docs":{},"这":{"docs":{},"个":{"docs":{},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"来":{"docs":{},"检":{"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":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.008130081300813009}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}},"-":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"v":{"docs":{},"i":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}},"o":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"c":{"docs":{},"i":{"docs":{},"f":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949}}}}}}}},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"o":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}}}},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}}}}}},"w":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.008438818565400843},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.02030456852791878},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.007518796992481203},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.028277634961439587},"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.047337278106508875},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.013452914798206279},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.002691272587466359},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}},".":{"docs":{},"l":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}},"u":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.010238907849829351},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}},"”":{"docs":{},"。":{"docs":{},"当":{"docs":{},"它":{"docs":{},"等":{"docs":{},"于":{"docs":{},".":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},",":{"docs":{},"打":{"docs":{},"印":{"docs":{},"“":{"docs":{},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"s":{"docs":{},"o":{"docs":{},"u":{"docs":{},"t":{"docs":{},"h":{"docs":{},",":{"docs":{},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{},"和":{"docs":{},"w":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},")":{"docs":{},"是":{"docs":{},"枚":{"docs":{},"举":{"docs":{},"的":{"docs":{},"成":{"docs":{},"员":{"docs":{},"值":{"docs":{},"(":{"docs":{},"或":{"docs":{},"者":{"docs":{},"成":{"docs":{},"员":{"docs":{},")":{"docs":{},"。":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.04395604395604396}},"特":{"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":{},"e":{"docs":{},")":{"docs":{},"为":{"docs":{},"用":{"docs":{},"该":{"docs":{},"特":{"docs":{},"性":{"docs":{},"标":{"docs":{},"记":{"docs":{},"的":{"docs":{},"。":{"docs":{},"相":{"docs":{},"反":{"docs":{},",":{"docs":{},"对":{"docs":{},"于":{"docs":{},"一":{"docs":{},"个":{"docs":{},"已":{"docs":{},"经":{"docs":{},"用":{"docs":{},"n":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{},"特":{"docs":{},"性":{"docs":{},"标":{"docs":{},"记":{"docs":{},"的":{"docs":{},"函":{"docs":{},"数":{"docs":{},"或":{"docs":{},"方":{"docs":{},"法":{"docs":{},",":{"docs":{},"你":{"docs":{},"则":{"docs":{},"不":{"docs":{},"可":{"docs":{},"以":{"docs":{},"将":{"docs":{},"它":{"docs":{},"重":{"docs":{},"写":{"docs":{},"为":{"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":{},"m":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"m":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.003683241252302026},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.005979073243647235},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}},"a":{"docs":{},"t":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"7":{"3":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.01616161616161616}},"!":{"docs":{},".":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00404040404040404}}}}}}}},"docs":{}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.01645123384253819},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.004604051565377533},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.007032348804500703},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.028089887640449437},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.01818181818181818},"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.033112582781456956},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0007905138339920949},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.018069973087274125},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.005847953216374269},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.007050528789659225}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.015424164524421594}}}},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.005012531328320802}},"s":{"docs":{},"属":{"docs":{},"性":{"docs":{},"被":{"docs":{},"赋":{"docs":{},"值":{"docs":{},"为":{"0":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}},"docs":{}}}}}}}}}}}},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.02074688796680498}}}}}}},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}},"s":{"docs":{},"[":{"docs":{},"\"":{"docs":{},"b":{"docs":{},"i":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}},"的":{"docs":{},"变":{"docs":{},"量":{"docs":{},"并":{"docs":{},"用":{"docs":{},"一":{"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":{},"l":{"docs":{},"e":{"docs":{},"g":{"docs":{},"s":{"docs":{},"的":{"docs":{},"字":{"docs":{},"典":{"docs":{},"存":{"docs":{},"放":{"docs":{},"值":{"docs":{},"类":{"docs":{},"型":{"docs":{},"推":{"docs":{},"断":{"docs":{},"为":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.005494505494505495}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.023668639053254437}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.019867549668874173}},"s":{"docs":{},"是":{"docs":{},"非":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"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":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{},"s":{"docs":{},"总":{"docs":{},"是":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"?":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"操":{"docs":{},"作":{"docs":{},"有":{"docs":{},"可":{"docs":{},"能":{"docs":{},"失":{"docs":{},"败":{"docs":{},",":{"docs":{},"可":{"docs":{},"选":{"docs":{},"链":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"?":{"docs":{},"类":{"docs":{},"型":{"docs":{},"值":{"docs":{},",":{"docs":{},"或":{"docs":{},"者":{"docs":{},"称":{"docs":{},"作":{"docs":{},"“":{"docs":{},"自":{"docs":{},"判":{"docs":{},"断":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"”":{"docs":{},"。":{"docs":{},"当":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"是":{"docs":{},"空":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},"(":{"docs":{},"上":{"docs":{},"例":{"docs":{},")":{"docs":{},",":{"docs":{},"选":{"docs":{},"择":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"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":{},"r":{"docs":{},"o":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"在":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}}}}}}}},"y":{"docs":{},"m":{"docs":{},"b":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.003683241252302026}},"是":{"docs":{},"否":{"docs":{},"是":{"docs":{},"拉":{"docs":{},"丁":{"docs":{},",":{"docs":{},"阿":{"docs":{},"拉":{"docs":{},"伯":{"docs":{},",":{"docs":{},"中":{"docs":{},"文":{"docs":{},"或":{"docs":{},"者":{"docs":{},"泰":{"docs":{},"语":{"docs":{},"中":{"docs":{},"的":{"1":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"4":{"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":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"?":{"docs":{},"类":{"docs":{},"型":{"docs":{},"变":{"docs":{},"量":{"docs":{},"p":{"docs":{},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.010238907849829351}}}}}}},"的":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"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":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"的":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}}}}}},"变":{"docs":{},"量":{"docs":{},"之":{"docs":{},"后":{"docs":{},"除":{"docs":{},"以":{"1":{"0":{"docs":{"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437}}},"docs":{}},"docs":{}}}}}}},"值":{"docs":{},"和":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"实":{"docs":{},"例":{"docs":{},"传":{"docs":{},"递":{"docs":{},"给":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"构":{"docs":{},"造":{"docs":{},"函":{"docs":{},"数":{"docs":{},"的":{"docs":{},"方":{"docs":{},"式":{"docs":{},"来":{"docs":{},"创":{"docs":{},"建":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"实":{"docs":{},"例":{"docs":{},"。":{"docs":{},"这":{"docs":{},"样":{"docs":{},"可":{"docs":{},"以":{"docs":{},"确":{"docs":{},"保":{"docs":{},"当":{"docs":{},"创":{"docs":{},"建":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{},"实":{"docs":{},"例":{"docs":{},"时":{"docs":{},"总":{"docs":{},"是":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"docs":{},"c":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"l":{"docs":{},"l":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}},"s":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"d":{"docs":{},")":{"docs":{},"来":{"docs":{},"暗":{"docs":{},"示":{"docs":{},"值":{"docs":{},"缺":{"docs":{},"失":{"docs":{},"。":{"docs":{},"这":{"docs":{},"种":{"docs":{},"方":{"docs":{},"法":{"docs":{},"假":{"docs":{},"设":{"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":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.007518796992481203}},"和":{"docs":{},"n":{"docs":{},"s":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"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":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"并":{"docs":{},"将":{"docs":{},"其":{"docs":{},"传":{"docs":{},"递":{"docs":{},"给":{"docs":{},"一":{"docs":{},"个":{"docs":{},"函":{"docs":{},"数":{"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":{},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"和":{"docs":{},"n":{"docs":{},"s":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"n":{"docs":{},"s":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"的":{"docs":{},"行":{"docs":{},"为":{"docs":{},"描":{"docs":{},"述":{"docs":{},"在":{"docs":{},"本":{"docs":{},"质":{"docs":{},"上":{"docs":{},"不":{"docs":{},"同":{"docs":{},",":{"docs":{},"后":{"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":{},"s":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"y":{"docs":{},"和":{"docs":{},"n":{"docs":{},"s":{"docs":{},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}},"y":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"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":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"a":{"docs":{},"n":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}},"e":{"docs":{},"d":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"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":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"c":{"1":{"7":{"0":{"1":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}},".":{"docs":{},"f":{"docs":{},"u":{"docs":{},"l":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}}}},"v":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.004219409282700422},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}},"a":{"docs":{},"r":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.04935370152761457},"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.029045643153526972},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.014336917562724014},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.011278195488721804},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.022271714922048998},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.01565377532228361},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.011251758087201125},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.011235955056179775},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.006825938566552901},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.03807106598984772},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.05075187969924812},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.028277634961439587},"chapter2/12_Subscripts.html#gitbook_45":{"ref":"chapter2/12_Subscripts.html#gitbook_45","tf":0.016483516483516484},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.011185682326621925},"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.01775147928994083},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.04040404040404041},"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.029801324503311258},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0047430830039525695},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.024390243902439025},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.034482758620689655},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.041353383458646614},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.02391629297458894},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0030757400999615533},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099},"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.02046783625730994},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.010050251256281407},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0027434842249657062}},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.23396460929578386},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0037593984962406013},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0029895366218236174},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0011534025374855825}},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.005639097744360902}}}}},"-":{"docs":{},"d":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.004801097393689987},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.002849002849002849}},"a":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.004801097393689987}}}}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.00411522633744856}}}}}}}}},"d":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}},"或":{"docs":{},"者":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.0034129692832764505}}}}}}},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"定":{"docs":{},"义":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"包":{"docs":{},"括":{"docs":{},"只":{"docs":{},"读":{"docs":{},"计":{"docs":{},"算":{"docs":{},"属":{"docs":{},"性":{"docs":{},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"他":{"docs":{},"们":{"docs":{},"的":{"docs":{},"值":{"docs":{},"不":{"docs":{},"是":{"docs":{},"固":{"docs":{},"定":{"docs":{},"的":{"docs":{},"。":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},")":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"docs":{},"以":{"docs":{},"是":{"docs":{},"常":{"docs":{},"量":{"docs":{},"存":{"docs":{},"储":{"docs":{},"属":{"docs":{},"性":{"docs":{},"(":{"docs":{},"用":{"docs":{},"关":{"docs":{},"键":{"docs":{},"字":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"u":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.010752688172043012},"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.2620493541546173},"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.026726057906458798},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":1.6823204419889501},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.012658227848101266},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.44040058622374206},"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":3.370875995449374},"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.005076142131979695},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.020676691729323307},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.45020677322007374},"chapter2/16_Automatic_Reference_Counting.html#gitbook_52":{"ref":"chapter2/16_Automatic_Reference_Counting.html#gitbook_52","tf":0.00202020202020202},"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.006622516556291391},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.020553359683794466},"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.04878048780487805},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401},"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.017937219730941704},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.030757400999615533},"chapter3/06_Attributes.html#gitbook_69":{"ref":"chapter3/06_Attributes.html#gitbook_69","tf":0.01098901098901099},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.01507537688442211},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.012658227848101266}},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.007751937984496124}},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{},";":{"docs":{},"定":{"docs":{},"义":{"docs":{},",":{"docs":{},"其":{"docs":{},"中":{"docs":{},"k":{"docs":{},"e":{"docs":{},"y":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{},"是":{"docs":{},"字":{"docs":{},"典":{"docs":{},"中":{"docs":{},"键":{"docs":{},"的":{"docs":{},"数":{"docs":{},"据":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.008968609865470852}},"”":{"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":{},"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":{},"t":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.0014947683109118087}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},")":{"docs":{},"都":{"docs":{},"关":{"docs":{},"联":{"docs":{},"独":{"docs":{},"特":{"docs":{},"的":{"docs":{},"键":{"docs":{},"(":{"docs":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/04_Collection_Types.html#gitbook_26":{"ref":"chapter2/04_Collection_Types.html#gitbook_26","tf":0.0022271714922048997}}}}}}}}}}}}},"元":{"docs":{},"组":{"docs":{},"。":{"docs":{},"下":{"docs":{},"面":{"docs":{},"的":{"docs":{},"例":{"docs":{},"子":{"docs":{},"中":{"docs":{},",":{"docs":{},"字":{"docs":{},"典":{"docs":{},"的":{"docs":{},"键":{"docs":{},"(":{"docs":{},"k":{"docs":{},"e":{"docs":{},"i":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}},",":{"docs":{},"因":{"docs":{},"为":{"docs":{},"这":{"docs":{},"些":{"docs":{},"量":{"docs":{},"是":{"docs":{},"不":{"docs":{},"能":{"docs":{},"被":{"docs":{},"修":{"docs":{},"改":{"docs":{},"的":{"docs":{},"。":{"docs":{},"当":{"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":{},"m":{"docs":{},"p":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},")":{"docs":{},"函":{"docs":{},"数":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.23255813953488372}}}}}}}}}}}}},"可":{"docs":{},"变":{"docs":{},"参":{"docs":{},"数":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.23255813953488372}}}}}}}}}}}}},"多":{"docs":{},"重":{"docs":{},"输":{"docs":{},"入":{"docs":{},"参":{"docs":{},"数":{"docs":{},"(":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.23255813953488372}}}}}}}}}}}}}},"返":{"docs":{},"回":{"docs":{},"值":{"docs":{},"函":{"docs":{},"数":{"docs":{},"(":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.23255813953488372}}}}}}}}}}}}}}},"默":{"docs":{},"认":{"docs":{},"值":{"docs":{},"参":{"docs":{},"数":{"docs":{},"的":{"docs":{},"外":{"docs":{},"部":{"docs":{},"参":{"docs":{},"数":{"docs":{},"名":{"docs":{},"(":{"docs":{},"e":{"docs":{},"x":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.23255813953488372}}}}}}}}}}}}}}}}}}}},"原":{"docs":{},"始":{"docs":{},"值":{"docs":{},"(":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":3.333333333333333}}}}}}}}}},"(":{"docs":{},"f":{"docs":{},"i":{"docs":{},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter2/19_Nested_Types.html#gitbook_58":{"ref":"chapter2/19_Nested_Types.html#gitbook_58","tf":0.024390243902439025}}}}}}}}},")":{"docs":{},",":{"docs":{},"检":{"docs":{},"查":{"docs":{},"另":{"docs":{},"一":{"docs":{},"个":{"docs":{},"字":{"docs":{},"典":{"docs":{},"中":{"docs":{},"所":{"docs":{},"对":{"docs":{},"应":{"docs":{},"的":{"docs":{},"值":{"docs":{},",":{"docs":{},"来":{"docs":{},"证":{"docs":{},"明":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"字":{"docs":{},"典":{"docs":{},"确":{"docs":{},"实":{"docs":{},"是":{"docs":{},"被":{"docs":{},"拷":{"docs":{},"贝":{"docs":{},"了":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"在":{"docs":{},"c":{"docs":{},"o":{"docs":{},"p":{"docs":{},"i":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"字":{"docs":{},"典":{"docs":{},"中":{"docs":{},"将":{"docs":{},"p":{"docs":{},"e":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"的":{"docs":{},"值":{"docs":{},"设":{"docs":{},"为":{"2":{"4":{"docs":{},",":{"docs":{},"那":{"docs":{},"么":{"docs":{},"a":{"docs":{},"g":{"docs":{},"e":{"docs":{},"s":{"docs":{},"字":{"docs":{},"典":{"docs":{},"仍":{"docs":{},"然":{"docs":{},"会":{"docs":{},"返":{"docs":{},"回":{"docs":{},"修":{"docs":{},"改":{"docs":{},"前":{"docs":{},"的":{"docs":{},"值":{"2":{"3":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}},"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":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0012531328320802004}}}}}}}}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}}}}},"-":{"docs":{},"b":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.008438818565400843}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"-":{"docs":{},"p":{"docs":{},"a":{"docs":{},"t":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.008438818565400843},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0013717421124828531}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}}}}}},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.004700352526439483}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.004604051565377533},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0037593984962406013}}}}},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0023715415019762848},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"a":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.024896265560165973}},"e":{"docs":{},"的":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"子":{"docs":{},"类":{"docs":{},",":{"docs":{},"叫":{"docs":{},"c":{"docs":{},"a":{"docs":{},"r":{"docs":{},",":{"docs":{},"它":{"docs":{},"重":{"docs":{},"写":{"docs":{},"了":{"docs":{},"从":{"docs":{},"v":{"docs":{},"e":{"docs":{},"h":{"docs":{},"i":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"docs":{},"类":{"docs":{},"继":{"docs":{},"承":{"docs":{},"来":{"docs":{},"的":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{},";":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"&":{"docs":{},"#":{"3":{"9":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"基":{"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":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{},"s":{"docs":{},"和":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},")":{"docs":{},"。":{"docs":{},"这":{"docs":{},"些":{"docs":{},"属":{"docs":{},"性":{"docs":{},"在":{"docs":{},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"方":{"docs":{},"法":{"docs":{},"中":{"docs":{},"使":{"docs":{},"用":{"docs":{},",":{"docs":{},"这":{"docs":{},"个":{"docs":{},"方":{"docs":{},"法":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"类":{"docs":{},"中":{"docs":{},"m":{"docs":{},"a":{"docs":{},"x":{"docs":{},"p":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{},"s":{"docs":{},"的":{"docs":{},"默":{"docs":{},"认":{"docs":{},"值":{"docs":{},"对":{"docs":{},"自":{"docs":{},"行":{"docs":{},"车":{"docs":{},"来":{"docs":{},"说":{"docs":{},"已":{"docs":{},"经":{"docs":{},"是":{"docs":{},"正":{"docs":{},"确":{"docs":{},"的":{"docs":{},",":{"docs":{},"因":{"docs":{},"此":{"docs":{},"在":{"docs":{},"b":{"docs":{},"i":{"docs":{},"c":{"docs":{},"y":{"docs":{},"c":{"docs":{},"l":{"docs":{},"e":{"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":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"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":{},"中":{"docs":{},"将":{"docs":{},"它":{"docs":{},"更":{"docs":{},"改":{"docs":{},"为":{"2":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"定":{"docs":{},"义":{"docs":{},"了":{"docs":{},"初":{"docs":{},"始":{"docs":{},"化":{"docs":{},"器":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}},"的":{"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":{},"w":{"docs":{},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/13_Inheritance.html#gitbook_10":{"ref":"chapter2/13_Inheritance.html#gitbook_10","tf":0.004149377593360996}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"u":{"docs":{"chapter2/08_Enumerations.html#gitbook_38":{"ref":"chapter2/08_Enumerations.html#gitbook_38","tf":0.006825938566552901}}},"d":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"(":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.005917159763313609}}}}}},"方":{"docs":{},"法":{"docs":{},"在":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"分":{"docs":{},"发":{"docs":{},"硬":{"docs":{},"币":{"docs":{},"之":{"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":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"返":{"docs":{},"回":{"docs":{},"一":{"docs":{},"个":{"docs":{},"比":{"docs":{},"请":{"docs":{},"求":{"docs":{},"时":{"docs":{},"小":{"docs":{},"的":{"docs":{},"数":{"docs":{},"字":{"docs":{},"(":{"docs":{},"如":{"docs":{},"果":{"docs":{},"没":{"docs":{},"有":{"docs":{},"硬":{"docs":{},"币":{"docs":{},"留":{"docs":{},"在":{"docs":{},"b":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{},"中":{"docs":{},"就":{"docs":{},"返":{"docs":{},"回":{"0":{"docs":{},")":{"docs":{},"。":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"方":{"docs":{},"法":{"docs":{},"声":{"docs":{},"明":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{},"f":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"o":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"为":{"docs":{},"一":{"docs":{},"个":{"docs":{},"变":{"docs":{},"量":{"docs":{},"参":{"docs":{},"数":{"docs":{},",":{"docs":{},"这":{"docs":{},"样":{"docs":{},"就":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"方":{"docs":{},"法":{"docs":{},"体":{"docs":{},"的":{"docs":{},"内":{"docs":{},"部":{"docs":{},"修":{"docs":{},"改":{"docs":{},"数":{"docs":{},"字":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"需":{"docs":{},"要":{"docs":{},"定":{"docs":{},"义":{"docs":{},"一":{"docs":{},"个":{"docs":{},"新":{"docs":{},"的":{"docs":{},"变":{"docs":{},"量":{"docs":{},"。":{"docs":{},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{},"d":{"docs":{},"c":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/15_Deinitialization.html#gitbook_50":{"ref":"chapter2/15_Deinitialization.html#gitbook_50","tf":0.005917159763313609}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"2":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.016916570549788543}},"(":{"1":{"docs":{},".":{"0":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}},"docs":{}}},"docs":{},"x":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0057670126874279125}}}}}},"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.007304882737408689}},".":{"docs":{},"i":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}},"x":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}},"t":{"docs":{},"o":{"docs":{},"a":{"docs":{},"d":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}}}}}}}},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0027624309392265192},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.008438818565400843},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.014367816091954023}},"代":{"docs":{},"替":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"k":{"docs":{},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{},".":{"docs":{},"v":{"docs":{},"o":{"docs":{},"w":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}},"。":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"中":{"docs":{},",":{"docs":{},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407}}}}}}}}}}}}}}},"(":{"docs":{},"参":{"docs":{},"见":{"docs":{},"f":{"docs":{},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}},"?":{"docs":{},",":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"v":{"docs":{},"o":{"docs":{},"i":{"docs":{},"d":{"docs":{},",":{"docs":{},"因":{"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":{},"p":{"docs":{},"t":{"docs":{"chapter2/17_Optional_Chaining.html#gitbook_54":{"ref":"chapter2/17_Optional_Chaining.html#gitbook_54","tf":0.0033112582781456954}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"空":{"docs":{},"元":{"docs":{},"组":{"docs":{},"类":{"docs":{},"型":{"docs":{},"(":{"docs":{},")":{"docs":{},"的":{"docs":{},"别":{"docs":{},"名":{"docs":{},"。":{"docs":{},"如":{"docs":{},"果":{"docs":{},"括":{"docs":{},"号":{"docs":{},"内":{"docs":{},"只":{"docs":{},"有":{"docs":{},"一":{"docs":{},"个":{"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":{},"t":{"docs":{},")":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"而":{"docs":{},"不":{"docs":{},"是":{"docs":{},"(":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter3/03_Types.html#gitbook_73":{"ref":"chapter3/03_Types.html#gitbook_73","tf":0.0029239766081871343}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.005639097744360902}}}}}},"g":{"docs":{},"a":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}},"i":{"docs":{},"c":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}},"e":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}},"d":{"docs":{},"e":{"docs":{},"o":{"docs":{},"m":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.01015228426395939}},"e":{"docs":{},"中":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"属":{"docs":{},"性":{"docs":{},"的":{"docs":{},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"类":{"docs":{},",":{"docs":{},"用":{"docs":{},"来":{"docs":{},"描":{"docs":{},"述":{"docs":{},"一":{"docs":{},"个":{"docs":{},"视":{"docs":{},"频":{"docs":{},"显":{"docs":{},"示":{"docs":{},"器":{"docs":{},"的":{"docs":{},"特":{"docs":{},"定":{"docs":{},"模":{"docs":{},"式":{"docs":{},"。":{"docs":{},"这":{"docs":{},"个":{"docs":{},"类":{"docs":{},"包":{"docs":{},"含":{"docs":{},"了":{"docs":{},"四":{"docs":{},"个":{"docs":{},"储":{"docs":{},"存":{"docs":{},"属":{"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":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"结":{"docs":{},"构":{"docs":{},"体":{"docs":{},"的":{"docs":{},"实":{"docs":{},"例":{"docs":{},",":{"docs":{},"具":{"docs":{},"有":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"的":{"docs":{},"属":{"docs":{},"性":{"docs":{},"类":{"docs":{},"型":{"docs":{},"。":{"docs":{},"新":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"o":{"docs":{},"m":{"docs":{},"o":{"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":{},"值":{"docs":{},"为":{"docs":{},"f":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"(":{"docs":{},"意":{"docs":{},"为":{"docs":{},"“":{"docs":{},"n":{"docs":{},"o":{"docs":{},"n":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"”":{"docs":{},")":{"docs":{},"的":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"f":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{},",":{"docs":{},"回":{"docs":{},"放":{"docs":{},"帧":{"docs":{},"率":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{},"为":{"0":{"docs":{},".":{"0":{"docs":{},"的":{"docs":{},"f":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"r":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"和":{"docs":{},"值":{"docs":{},"为":{"docs":{},"可":{"docs":{},"选":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"的":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{},"。":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{},"e":{"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":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/09_Classes_and_Structures.html#gitbook_40":{"ref":"chapter2/09_Classes_and_Structures.html#gitbook_40","tf":0.0025380710659898475}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"w":{"docs":{"chapter2/22_Generics.html#gitbook_64":{"ref":"chapter2/22_Generics.html#gitbook_64","tf":0.004484304932735426}}}}},"u":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.0018796992481203006}}}}}}},"y":{"1":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}},"2":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408}}},"docs":{"chapter1/02_a_swift_tour.html#gitbook_7":{"ref":"chapter1/02_a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.019337016574585635},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/10_Properties.html#gitbook_41":{"ref":"chapter2/10_Properties.html#gitbook_41","tf":0.011278195488721804},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.033419023136246784},"chapter2/02_Basic_Operators.html#gitbook_47":{"ref":"chapter2/02_Basic_Operators.html#gitbook_47","tf":0.011185682326621925},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0031620553359683794},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.014367816091954023},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.010380622837370242},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.011055276381909548},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.02531645569620253},"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82":{"ref":"chapter3/08_Generic_Parameters_and_Arguments.html#gitbook_82","tf":0.023255813953488372},"chapter3/10_Statements.html#gitbook_86":{"ref":"chapter3/10_Statements.html#gitbook_86","tf":0.005698005698005698}},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter2/03_Strings_and_Characters.html#gitbook_14":{"ref":"chapter2/03_Strings_and_Characters.html#gitbook_14","tf":0.0018796992481203006}}}}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"o":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013}}}}}}}}}}}}}}}},")":{"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":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"将":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"一":{"docs":{},"个":{"docs":{},"横":{"docs":{},"坐":{"docs":{},"标":{"docs":{},"为":{"0":{"docs":{},"的":{"docs":{},"点":{"docs":{},",":{"docs":{},"并":{"docs":{},"把":{"docs":{},"这":{"docs":{},"个":{"docs":{},"点":{"docs":{},"的":{"docs":{},"纵":{"docs":{},"坐":{"docs":{},"标":{"docs":{},"赋":{"docs":{},"给":{"docs":{},"临":{"docs":{},"时":{"docs":{},"的":{"docs":{},"常":{"docs":{},"量":{"docs":{},"y":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}}}}}}}}}}},"docs":{}}}}}}}}}},":":{"docs":{},"和":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}}}}}}}},"中":{"docs":{},"的":{"docs":{},"元":{"docs":{},"组":{"docs":{},"模":{"docs":{},"式":{"docs":{},",":{"docs":{},"只":{"docs":{},"要":{"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":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"分":{"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":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"可":{"docs":{},"以":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"元":{"docs":{},"组":{"docs":{},"(":{"1":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}}},"docs":{}}}}}}}}},"-":{"docs":{},"a":{"docs":{},"x":{"docs":{},"i":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.001841620626151013}}}}}},"上":{"docs":{},",":{"docs":{},"是":{"docs":{},"否":{"docs":{},"在":{"docs":{},"紫":{"docs":{},"色":{"docs":{},"的":{"docs":{},"对":{"docs":{},"角":{"docs":{},"线":{"docs":{},"x":{"docs":{"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"'":{"docs":{},"r":{"docs":{"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.002506265664160401}}}},"’":{"docs":{},"r":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.0007689350249903883}}}}}},"i":{"docs":{},"e":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.00038446751249519417}}}}}}},"_":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0035842293906810036},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.004604051565377533},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0028129395218002813},"chapter2/11_Methods.html#gitbook_43":{"ref":"chapter2/11_Methods.html#gitbook_43","tf":0.002570694087403599},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter2/21_Protocols.html#gitbook_62":{"ref":"chapter2/21_Protocols.html#gitbook_62","tf":0.0037593984962406013},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.003015075376884422},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.013392857142857142},"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.008438818565400843},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0054869684499314125}},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"u":{"docs":{},"m":{"docs":{},"n":{"docs":{},"_":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}}}}}},"f":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"_":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"_":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}}}}}}}},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"e":{"docs":{},"_":{"docs":{"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0020100502512562816}}}}}}},"、":{"docs":{},"基":{"docs":{},"本":{"docs":{},"多":{"docs":{},"语":{"docs":{},"言":{"docs":{},"面":{"docs":{},"(":{"docs":{},"b":{"docs":{},"a":{"docs":{},"s":{"docs":{},"i":{"docs":{},"c":{"docs":{"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.002232142857142857}}}}}}}}}}}}}}},")":{"docs":{},"。":{"docs":{},"当":{"docs":{},"你":{"docs":{},"不":{"docs":{},"关":{"docs":{},"心":{"docs":{},"被":{"docs":{},"匹":{"docs":{},"配":{"docs":{},"的":{"docs":{},"值":{"docs":{},"时":{"docs":{},",":{"docs":{},"可":{"docs":{},"以":{"docs":{},"使":{"docs":{},"用":{"docs":{},"此":{"docs":{},"模":{"docs":{},"式":{"docs":{},"。":{"docs":{},"例":{"docs":{},"如":{"docs":{},",":{"docs":{},"下":{"docs":{},"面":{"docs":{},"这":{"docs":{},"段":{"docs":{},"代":{"docs":{},"码":{"docs":{},"进":{"docs":{},"行":{"docs":{},"了":{"1":{"docs":{},".":{"docs":{},".":{"docs":{},".":{"3":{"docs":{"chapter3/07_Patterns.html#gitbook_80":{"ref":"chapter3/07_Patterns.html#gitbook_80","tf":0.004219409282700422}}},"docs":{}}}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"z":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/05_Control_Flow.html#gitbook_28":{"ref":"chapter2/05_Control_Flow.html#gitbook_28","tf":0.0009208103130755065},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.0014064697609001407},"chapter2/20_Extensions.html#gitbook_60":{"ref":"chapter2/20_Extensions.html#gitbook_60","tf":0.0028735632183908046},"chapter3/04_Expressions.html#gitbook_75":{"ref":"chapter3/04_Expressions.html#gitbook_75","tf":0.0010050251256281408},"chapter3/02_Lexical_Structure.html#gitbook_78":{"ref":"chapter3/02_Lexical_Structure.html#gitbook_78","tf":0.004464285714285714},"chapter3/09_Summary_of_the_Grammar.html#gitbook_84":{"ref":"chapter3/09_Summary_of_the_Grammar.html#gitbook_84","tf":0.0006858710562414266}},"e":{"docs":{},"r":{"docs":{},"o":{"docs":{"chapter2/01_The_Basics.html#gitbook_12":{"ref":"chapter2/01_The_Basics.html#gitbook_12","tf":0.0017921146953405018},"chapter2/06_Functions.html#gitbook_30":{"ref":"chapter2/06_Functions.html#gitbook_30","tf":0.005625879043600563},"chapter2/07_Closures.html#gitbook_32":{"ref":"chapter2/07_Closures.html#gitbook_32","tf":0.0028089887640449437},"chapter2/18_Type_Casting.html#gitbook_56":{"ref":"chapter2/18_Type_Casting.html#gitbook_56","tf":0.0015810276679841897},"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.005382545174932718}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"c":{"docs":{},"e":{"docs":{},"d":{"docs":{"chapter2/23_Advanced_Operators.html#gitbook_68":{"ref":"chapter2/23_Advanced_Operators.html#gitbook_68","tf":0.47619047619047616}}}}}}}}}}}}},"length":6689},"corpusTokens":["0","0(空字符)、\\\\(反斜线)、\\t(水平制表符)、\\n(换行符)、\\r(回车符)、\\"(双引号)、\\'","0)中的元素0","0)会首先匹配case","0)可以匹配所有四个case。但是,如果存在多个匹配,那么只会执行第一个被匹配到的case块。考虑点(0","0)将匹配一个纵坐标为0的点,并把这个点的横坐标赋给临时的常量x。类似的,第二个case——cas","0)的case","0),因此剩下的能够匹配(0","0),宽度高度都是10","0),是否在红色的x轴上,是否在黄色y轴上,是否在一个以原点为中心的4x4","0,$1,$2","0,1","0..3","0..count","0..self","0..somecontainer.count","0..time","0.0","0.0125","0.0254","0.1","0.14159","0.25","0.37464991998171","0.5","0.729023776863283","0.914399970739201","00000000","00000001","00000100","00001000","00001111","00001111(前4","00010000","00010001","000123.456","00111100","005","005000.76","01111111","02","0746381295[9","08","09","0b","0b00000101","0b00001111","0b00010100","0b00111111","0b01011110","0b10001","0b10110010","0b11110000","0b11111100","0o","0o21","0x","0x000099","0x0000cc","0x0000ff","0x006600","0x00ff00","0x11","0x66","0x99","0xc.3p0","0xcc","0xcc0000","0xcc6699","0xff0000","0xfp-2","0xfp2","0x)。小数点两边必须有至少一个十进制数字(或者是十六进制的数字)。浮点原始值还有一个可选的指数,在十进制浮点数中通过大写或者小写的e来指定,在十六进制浮点数中通过大写或者小写的p","0~255","0——编译器会正确的推断出x的类型int。类似的,当完整的类型可以从上下文推断出来时,你也可以忽略类型的一部分。比如,如果你写了let","0中x的类型首先根据0的类型进行推断,然后将该类型信息传递到根节点(变量x","0为fals","0为true的时候代码运行才会继续,也就是说,当age的值非负的时候。如果age的值是负数,就像代码中那样,ag","0到9.每一个条形码都有一个代表“数字系统”的数字,该数字后接10","0和$1","0和maxpasseng","0是真的(true),这将使得choosestepfunction返回stepbackward函数。一个指向返回的函数的引用保存在了movenearertozero","0的数据项的值再次等于"six","0而不是1","0,你可以完全忽略类型而简写成var","1","1)都被锁定。每次有玩家完成一个等级,这个等级就对这个设备上的所有玩家解锁。leveltrack","1...3","1...4","1...5","1...amounttopad","1...digitindex","1...finalsquar","1...power","1.0","1.21875e1","1.25","1.25e-2","1.25e2","1.5","10","10...99","10.0","100","100...999","100.0","1000...999_999","10000","10000.56","1000000","10000000","1000_000","102","103","105","107","1080","1080i","10^-2","10^2","10^-2","10_000","10_000.56","10中,如果number为16,则返回6,58返回8,510返回0","10为0,这时闭包会将字符串输出,而map","10可以总是作为一个digitnam","10被传递给x","10,同时maxinputlevelforallchannel","11","110","111","11110000","11111110","11111111","11,则会将右声道的currentlevel","12","12,gener","12-side","12.1875","12.5663708","120","123","1234567890123456","123456789[0]返回9","123456789[1]返回8","1234_5678_9012_3456","124","125.0","125.0;同样,1.25e-2","127","128","1280","128054","128054,是一个十六进制1f436","12880","13","130","132","135","139968.0","140","144","15","15),表示向右上方移动正方形到如图所示橙色正方形的位置。设置属性center的值会调用setter来修改属性origin的x和i","15.0","150","153","159","16","16,58,510","160","16变成了1,58变成了5,510变成了51","17","182","19","1920","195.m","1],编译提也能推断出dict的类型是dictionary<str","1_000.0","1_000_000","1_000_000.000_000_1","1到5的闭区间数字。index","1千米等于1,000米,所以km计算属性要把值乘以1_000.00来转化成单位米下的数值。类似地,1米有3.28024英尺,所以ft计算属性要把对应的double值除以3.28024","1后变成2","1的时候才为1","1的条件是两个输入数的同一位都不为0(即任意一个为1","1的比较结果是bool类型,所以第二个例子可以通过类型检查。类似i","2","2)中的元组模式(x","2)的结构是逗号分隔的,包含两个元素的列表。因为模式代表一种值的结构,而不是特定的某个值,你可以把模式和各种同类型的值匹配起来。比如,(x","2,953","2...2","2.0","2.5","2.71828","20","200","2000","2001","2014","204","2048","2048像素宽,1080像素高),cinema的width","21","2100","21位数字(和名称),例如u+0061表示小写的拉丁字母a","22","23","24","240","243610.0","243_610","25","25.0","25.4.mm","254","255","25,你必须重新掷骰子,直到你掷出的骰子数刚好使你能落在方格25","26","29573.0","2^-2","2^2","2_000","2:返回对应的type。我们可以用它来动态的获取某个instance的typ","3","3.0","3.1","3.14159","3.1415927","3.14159,0.1和-273.15","3.2","3.28084","3.59","3.69","3.75","3.79","3.ft","3.repetit","30","30.0","32","32767","32768","32位平台上,int和int32","32位平台上,uint和uint32","32华氏度(水的冰点)。如果是,则打印一条消息;否则,不打印任何消息,继续执行if","33","35","35.0","360","3877.0","39","39;&'","39;*'","39;,'","39;,'分隔。一旦使用了参数列表,就必须使用'in'关键字(在任何情况下都得这样做,包括忽略参数的名字,typ","39;.dynamictype'","39;.self'","39;?'","39;as'","39;in'","39;is'","39;type","39;unowned'","39;weak'","3_000_000_000_000","3可以直接和原始值0.14159","3没有显式声明类型,而表达式中出现了一个浮点原始值,所以表达式会被推测为doubl","3的6倍是18","4","4...9","4.0","4.75会变成4,-3.9会变成-3","40","40.0","404","40华氏度,不算太冷,没必要再围围巾——因此,els","42","42.0","42.km","42495.0","42和-23","42和3.14159","42并且没有标明类型,swift","42被绑定(赋值)给常量somevalu","43","480","4]],array3d[0][1]是指[3","4],array3d[0][1][1]则是指值4","4个string","4个位都为1","5","5.0","5.2","50","5000.76","510","536","55357","55357),第二个值为u+dc36","56374","58","59049","597","5乘法表结果。该语句执行后,index","6","6,gener","6-side","6.0","60","60.0","60;同样,0xfp-2","64位平台上,int和int64","64位平台上,uint和uint64","65","66","6699","68","69105","6项,而且不包括mapl","7","7.5","7.simpledescript","70","70.0","72","73","746381295[0","746381295[1","746381295[2","746381295[8","746381295[9","75","77","777","7900","7,类属性maxinputlevelforallchannel","8","8-bit","8.0","8590951226","85909_51226","86","87","896","8:09","8、16、32和64","8位无符号整数类型是uint8,32位有符号整数类型是int32","8除于2.5等于3余0.5","9","9.3","9.45","9.9","90","94","95;_column__","95;_file__","95;_function__","95;_line__","99","9900","9的行星,通过fromraw返回的可选planet值将是nil","_","_column_","_file_","_function_","_line_","_、基本多语言面(basic","_)。当你不关心被匹配的值时,可以使用此模式。例如,下面这段代码进行了1...3","a++.b","a+b","a,b,c","a...b","a..b","a.adjust","a.append(4","a.simpledescript","a[0","aardvark","abcdefghijklmnop","abov","absolut","ac","access","accord","ace.toraw","acerawvalu","achiev","act","act1scenecount","action","actual","actual)拷贝才会被执行。swift","actualnumb","actualnumber常量可以在if语句的第一个分支中使用。它已经被可选包含的值初始化过,所以不需要再使用!后缀来获取它的值。在这个例子中,actualnumb","ad","add","addit","addon","addone(numb","address","address。它有三个自判断属性他们额类型是string?。前面两个自判断属性buildingnam","address实例时的使用(john.residence.address)。john.residence属性是一个自判断类型,因此你需要在它获取address","address类中的buildingidentifi","address类还提供了一个buildingidentifier的方法,它的返回值类型为string?。这个方法检查buildingname和buildingnumber的属性,如果buildingname有值则将其返回,或者如果buildingnumb","address设定一个实例来作为john.residence.address的值,并为address的street","addthesecondnumb","addthesecondnumber(b","addtwoint","addtwoints(a","addtwoints和mathfunction有同样的类型,所以这个赋值过程在swift","addtwoints和multiplytwoints。这两个函数都传入两个int","addtwonumbers(4)(5","addtwonumbers(a","adescript","adjust","adopt","advanc","advancetolevel(level","advantag","affect","afterdoubl","afterincr","ag","again","ages的字典,其中储存了四个人的名字和年龄。ages字典被赋予了一个名为copiedages的新变量,同时ages在赋值的过程中被拷贝。赋值结束后,ages和copiedag","airport","airport'","airportcod","airportnam","airports.count","airports.kei","airports.removevalueforkey(\"dub","airports.updatevalue(\"dublin","airports.valu","airports[\"apl","airports[\"dub","airports[\"lhr","airports字典使用字典字面语句初始化,包含两个键值对。第一对的键是tyo,值是tokyo。第二对的键是dub,值是dublin","airports字典被声明为变量(用var关键字)而不是常量(let","airports字典被定义为一种dictionary<str","alex","alia","alias","alien","alignright(originalstr","alignright(var","alignright函数将参数string定义为变量参数。这意味着str","alignright的函数,用来右对齐输入的字符串到一个长的输出字符串中。左侧空余的地方用指定的填充字符填充。这个例子中,字符串"hello"被转换成了"-----hello"","alik","allitemsmatch","allitemsmatch(stackofstr","allitemsmatch的泛型函数,用来检查是否两个container单例包含具有相同顺序的相同items。如果匹配到所有的items,那么返回一个为true的boolean","allitemsmatch首先检查两个容器是否拥有同样数目的items,如果他们的items数目不同,没有办法进行匹配,函数就会fals","allow","allowedentri","allowentri","alow","alreadi","alsoincrementbyten","alsominussix","alsoposit","alsoteneighti","alsoteneighty.framer","alsoteneighty的新常量,同时对alsoteneighti","alsotentighti","alt","alt=\"comput","alt=\"stat","alternativerect","alwai","amarathon","ami","amount","amounttopad","amount变量,incrementor实际上捕获并存储了该变量的一个副本,而该副本随着incrementor","amount和numberoftimes。默认地,swift只把amount当作一个局部名称,但是把numberoftim","amount或者runningtotal来声明在嵌入的incrementor","amount,表示每次incrementor被调用时runningtot","amp","amp;&","amp;)和按位右移就可以从这个颜色值中解析出红(cc","amp;­identifi","ampersand","and/or","andrea","anim","animal(leg","animalnam","anish","anna","annot","anonym","anoth","anothercharact","anothercontain","anothercontainer.count","anothercontainer[i","anothercontainer中的item","anothercontainer是一个c2","anotheremptystr","anotherint","anothermathfunct","anotherpi","anotherpoint","anotherproctocol","anotherproperti","anotherprotocol","anotherprotocol>这样的格式进行组合,称为协议合成(protocol","anotherstr","anotherthreedoubl","anothertwothre","anothervalu","anothervector","answer","answer1","answer2","ant","anycommonel","anycommonelements([1","anyobject","anyobjectanyobject类型ani","anyobject可以代表任何class","anyth","any可以表示任何类型,除了方法类型(funct","any和anyobject","apart","apartment(numb","apartment实例有一个叫number,类型为int的属性,并有一个可选的初始化为nil的tenant属性。ten","apartment实例的强引用来自于变量number73。如果你断开这个强引用,再也没有指向apart","api","apis,它一般接收一个anyobject[]类型的数组,或者说“一个任何对象类型的数组”。这是因为oc没有明确的类型化数组。但是,你常常可以确定包含在仅从你知道的api","apl","app","appear","append","append(item","appending),插入(inserting),删除(removing)或者使用范围下标(rang","append方法添加一个新item","appl","applese","applesummari","appli","approach","appropri","arbitrari","arc","arc为了能帮助你管理内存,需要更多的关于你的代码之间关系的信息。本章描述了这些情况,并且为你示范怎样启用arc","arc会分配一大块内存用来储存实例的信息。内存中会包含实例的类型信息,以及这个实例所有相关属性的值。此外,当实例不再被使用时,arc","arc会在引用的实例被销毁后自动将其赋值为nil","arc会在第三个,也即最后一个强引用被断开的时候,销毁person实例,这也意味着你不再使用这个person","arc会跟踪你所新创建的person实例的引用数量,并且会在person","arc会跟踪和计算每一个实例正在被多少属性,常量和变量所引用。哪怕实例的引用数为一,arc","arc无法在实例被销毁后将无主引用设为nil,因为非可选类型的变量不允许被赋值为nil","arc销毁被引用的实例。这种行为阻止了引用变为循环强引用。声明属性或者变量时,在前面加上weak","area","argument","argyrio","arithmet","arithmeticmean(1","arithmeticmean(3","arithmeticmean(numb","around","arrai","array<int>>","array<int>替代泛型类型array<t>的类型形参t","array<sometype>这样的形式,其中sometyp","array(airports.kei","array(airports.valu","array(count","array)和字典(dictionari","array),字典(dictionary),范围(range),字符串(str","array-liter","array-literal-item","array-literal-items­opt","array-literal-item­,­(opt","array-literal-item­,­array-literal-item","array-typ","array3d","array3d[0]是指[[1","array提示check","class_protocol","class、deinit、enum、extension、func、import、init、let、protocol、static、struct、subscript、typealias、var","class关键字来表示该属性为类成员;用结构体或枚举实现协议时,则使用stat","class关键字表示协议中的成员为类成员;当协议用于被枚举或结构体遵循时,则使用stat","class前添加@final特性(@fin","class和struct","class类型。它创建了一个可以存储ani","class)来将整个类标记为fin","claus","close","closer","closest","clossur","closur","closure)包含了可执行的代码(跟方法主体(stat","closure-express","closure-signatur","closure-signature­opt­stat","closures(需要arc","club","cluster","cm","cocoa","cocoa的基础上构建框架栈并将其标准化。objective-c","cocoa里的nslog函数一样,println","code","code-block","code>$0$1$2`。例如,class`class`。反引号不属于标识符的一部分,`x`4(x","comparable等同于t","comparable表示任何用于替代类型形参t的类型实参必须满足compar","comparable,等等),但是依然可以用来对类型形参及其关联约束提供更复杂的约束。如,<t","compasspoint","compasspoint.west","compasspoints例子中,north,south,east和west不是隐式得等于0,1,2和3。相反的,这些不同的枚举成员在compasspoint","compasspoint和planet","compil","compile-tim","complement","complet","completedlevel(level","complex","compon","composit","compound","comput","computedtypeproperti","concaten","concept","condit","condition(item","conditional-oper","conditional-operator­prefix-express","condition的值在statements执行前就已计算出,因此while语句中的stat","condition表达式的值是在statements表达式执行后才计算出,因此do-while语句中的stat","condition表达式的值的类型必须遵循logicvalue协议。同时,condit","confid","conform","conformance-requir","conformance(arrai","equatable类型都可以安全的使用在findindex函数中,因为其保证支持等式操作。为了说明这个事实,当你定义一个函数时,你可以写一个equat","equatable,也就意味着“任何t类型都遵循equat","equilater","equilateraltriangl","equilateraltriangle(sidelength","equival","equivalent."","error","error(error","error(str","escaped-charact","essenc","evalu","even","everyth","ewa","eww","exact","exactli","exampl","exampleclass","examplemodule.mytyp","exampleprotocol","except","exclus","execut","exist","expect","explan","explicit","explicit-member-express","explicitdoubl","explicitli","exponentdoubl","export","express","expression)dynamic表达式(dynam","expression)self表达式(self","expression)。起保护作用的表达式是这样构成的:关键字where后面跟着一个作为额外测试条件的表达式。因此,当且仅当控制表达式匹配一个case的某个模式且起保护作用的表达式为真时,对应case块中的statements才会被执行。在下面的例子中,控制表达式只会匹配含两个相等元素的元组,如(1","expression)会首先被计算,然后与每一个case的模式(pattern)进行匹配。如果匹配成功,程序将会执行对应的case块里的statements。另外,每一个case块都不能为空,也就是说在每一个case块中至少有一条语句。如果你不想在匹配到的case块中执行代码,只需在块里写一条break","expression)初始化函数表达式(initi","expression)可选链表达式(optional-chain","expression)后缀self表达式(postfix","expression)圆括号表达式(parenthes","expression)强制取值表达式(forced-valu","expression)显式成员表达式(explicit","expression)超类表达式(superclass","expression)闭包表达式(closur","expression)隐式成员表达式(implicit","expression),switch","expression-el","expression-element-list","expression-element­,­expression-element-list","expression-list","expression-pattern","expression.dynamictyp","expression.init(initi","expression.memb","expression.self","expression[index","expressions)sort","expressions)前缀表达式(prefix","expressions)字符型表达式(liter","expression­,­expression-list","expression­:­express","expression)。通常会增加或减少计数器的值,或者根据语句(statements)输出来修改某一个初始化的变量。当递增表达式运行完成后,重复执行第2","exp,那这个数相当于基数和10^exp","exp,那这个数相当于基数和2^exp","extend","extens","extension-bodi","extension-declar","extension][6","extension][7","extern","extra","f","face字符的utf-16","face的4","face的unicod","face,unicod","factor","fail","failur","fall","fallthrough","fallthrough-stat","fallthrough关键字不会检查它下一个将会落入执行的case中的匹配条件。fallthrough简单地使代码执行继续连接到下一个case中的执行代码,这和c语言标准中的switch","fallthrough语句可出现在switch语句中的任意case里,但不能出现在最后一个case块中。同时,fallthrough语句也不能把控制权传递给使用了可选绑定的cas","fallthrough语句用于在switch语句中传递控制权。fallthrough语句会把控制权从switch语句中的一个case传递给下一个case。这种传递是无条件的,即使下一个case的值与switch","fals","false。同样的,item","false。这类循环适合使用在第一次迭代前迭代次数未知的情况下。swift","familiar","feed","feed)\\n","feed)(u+000a)、回车符(carriag","feed)(u+000c)以及空(null)(u+0000","feet","few","fibonacci","file","file),它返回的是当前modul","filenam","fill","film","final","finalsquar","finalsquare,board,square和dicerol","finalsquare,这表明你必须刚好落在方格25","finalsquare,board,squar","final方法,属性或下标,在编译时会报错。在扩展中,你添加到类里的方法,属性或下标也可以在扩展的定义里标记为fin","final来防止它们被重写,只需要在声明关键字前加上@final特性即可。(例如:@fin","find","findindex([\"mik","findindex([3.14159","findindex(arrai","findindex中这个单个类型参数写做:t","findindex函数现在则可以成功的编译过,并且作用于任何遵循equatable的类型,如double或str","findindex,用某个类型t","findstringindex","findstringindex(arrai","findstringindex(str","findstringindex的泛型版本findindex。请注意这个函数仍然返回int","findstringindex的非泛型函数,该函数功能是去查找包含一给定string值的数组。若查找到匹配的字符串,findstringindex函数返回该字符串在数组中的索引值(int),反之则返回nil","first","first-class)类型。它们采用了很多传统上只被类所支持的特征,例如计算型属性(comput","firstbit","firstforloop","firstitem","firstprotocol","firstroomnam","firstsixbit","firstvalu","firstvector","fit","five","fiveeight","fiveonezero","fixedincr","fixedlengthrang","fixedlengthrange(firstvalu","fixedlengthrange的实例包含一个名为firstvalue的变量存储属性和一个名为length的常量存储属性。在上面的例子中,length","fixedpoint","fixedpoint.movebyx(2.0","flat","flexibl","float","floating-point","floating-point-","floating-point-liter","floating-point-p","float并指定初始值为4","float表示32","flour","flow章节有该游戏的详细介绍)游戏的新版本.新版本使用dice作为骰子,并且实现了dicegame和dicegamedeleg","follow","for-condition-incr","for-condition-increment循环体中,在调用continu","for-in","for-in-stat","for-infor条件递增(for-condition-increment)whil","for-init","for-in循环和半闭区间操作(..)来迭代somecontainer中的所有items。对于每个item,函数检查是否somecontainer中的item不等于对应的anothercontainer中的item,如果这两个items不等,则这两个容器不匹配,返回fals","for-in循环来遍历某个字典中的键值对。每一个字典中的数据项都由(kei","for-in循环的介绍请参见for","for-in循环请参见for","for-in语句允许在重复执行代码块的同时,迭代集合(或遵循sequ","for-in语句在循环开始前会调用collection表达式的generate方法来获取一个生成器类型(这是一个遵循generator协议的类型)的值。接下来循环开始,调用collection表达式的next方法。如果其返回值不是none,它将会被赋给item,然后执行statements,执行完毕后回到循环开始处;否则,将不会赋值给item也不会执行statements,for-in","for-in语句或者变量或常量申明时,它可以包含通配符模式,标识符模式或者其他包含这两种模式的模式。例如,下面这段代码是不正确的,因为(x","for-stat","forc","force-unwrap","forced-valu","forced-value-express","forget","forincr","forkei","form","for—that","for条件递增(for-condition-incr","for语句、for-in语句、while语句和do-whil","for语句中,continue语句执行后,increment表达式还是会被计算,这是因为每次循环体执行完毕后incr","found","found"","found")元组把一个int值和一个str","foundat","foundindex","four","fourbyfivebytwo","fourbyfivebytwo.volum","framer","freedom","friar","friendlywelcom","friendlywelcome的值从"hello!"改为了"bonjour!"","fromraw方法来试图找到具有特定原始值的枚举成员。这个例子通过原始值7识别uranu","fromthetop","fruit","fruitsummari","ft","fullnam","fullynam","fullynamed协议含有fullname属性.因此其遵循者必须含有一个名为fullname,类型为str","func","function","function)中,__function__","function-bodi","function-call-express","function-declar","function-head","function-nam","function-result","function-signatur","function-typ","functionality)。这包括在没有权限获取原始源代码的情况下扩展类型的能力(即逆向建模)。扩展和objective-c中的分类(categories)类似。(不过与objective-c不同的是,swift","functions)函数参数与返回值(funct","functions)函数的定义与调用(defin","functions),它们定义在全局域中。你也可以把函数定义在别的函数体中,称作嵌套函数(nest","function)的类型相当于一个嵌套函数类型。例如,下面的柯里化函数addtwonumber()()的类型是int","func作为前缀。指定函数返回类型时,用返回箭头->","func关键字之前加上关键字class;声明结构体和枚举的类型方法,在方法的func关键字之前加上关键字stat","func来声明一个函数,使用名字和参数来调用函数。使用->","g","game","game(gam","game,d12,simothehamst","game.deleg","game.dice.sides)-sid","game.plai","gamedidend(gam","gamedidstart(gam","gamedidstart方法从game参数获取游戏信息并输出.game在方法中被当做dicegame类型而不是snakeandladders类型,所以方法中只能访问dicegam","gameloop","gameloop去跳转到下一次循环迭代时,这里使用gameloop标签并不是严格必须的。因为在这个游戏中,只有一个循环体,所以continue语句会影响到哪个循环体是没有歧义的。然而,continue语句使用gameloop标签也是没有危害的。这样做符合标签的使用规则,同时参照旁边的break","gameloop语句结束本次whil","gameloop语句跳转控制去执行whil","gear","gener","generator.random","generic-argu","generic-argument-claus","generic-argument-clause[opt","generic-argument-clause[opt].type-identifi","generic-argument-list","generic-argument­,­generic-argument-list","generic-paramet","generic-parameter-claus","generic-parameter-list","generic-parameter­,­generic-parameter-list","getgaspric","gettable,但它不要求属性是存储型属性(stor","getter","getter-claus","getter-keyword-claus","getter-sett","getter-setter-block","getter-setter-keyword-block","getter-setter方法​​块可以由一个getter子句后跟一个可选的setter子句构成,用大括号括起来,或者由一个setter子句后跟一个gett","getter/sett","getters和sett","getter和sett","getter获取某个值,或者通过sett","getter(或sett","get代码块中的代码写在subscript","get关键字表示。它们的返回值是double型,而且可以用于所有接受doubl","ghostbust","give","given","global","goe","gonna","good","goodby","graham","grai","grammar","graphem","graphic","great","green","greencompon","greet","greet(\"bob","greet(nam","greeting被调用,该函数结束它的执行并返回greet","grid","grid[(row","group","grtmndsthnklk","gt","gt;>","gt;"","guard","guard-claus","guard-express","guess","guide,即便你没有实现它。例如:swift的array和dictionary类型都是泛型集。你可以创建一个int数组,也可创建一个string数组,或者甚至于可以是任何其他swift的类型数据数组。同样的,你也可以创建存储任何指定类型的字典(dictionari","h","half-clos","halfopenrangelength(start","hall","halv","hamster","hamster(nam","hamster的实例可以作为textrepresent","handl","happen","happi","harmless","hasanymatches(list","hasanymatches(numb","hasarea","hasarea协议时,通过as?操作符将其可选绑定(opt","hasdoorkei","hash","hashabl","hashable和valuetype产生的。每一个类型实参必须满足它所替代的泛型形参的所有约束,包括任何where语句所指定的额外的要求。上面的例子中,类型形参keytype要求满足hashable协议,因此string也必须满足hash","hashead","hashtabl","hasprefix","hasprefix/hassuffix","hawk","hd","hd.width","hd实例中width属性还是1920","hd的常量,其值为一个初始化为全高清视频分辨率(1920像素宽,1080像素高)的resolut","hd赋予给cinema的时候,实际上是将hd中所储存的值(values)进行拷贝,然后将拷贝的数据储存到新的cinema实例中。结果就是两个完全独立的实例碰巧包含有相同的数值。由于两者相互独立,因此将cinema的width修改为2048并不会影响hd中的宽(width","heart","hearts.simpledescript","heartsdescript","heartssymbol","hearts成员:给hearts常量赋值时,枚举成员suit.hearts需要用全名来引用,因为常量没有显式指定类型。在switch里,枚举成员使用缩写.hearts来引用,因为self的值已经知道是一个suit","heathrow","height","height=\"120","height=\"169","height=\"288","height=\"290","height=\"357","height=\"387","heigth","hello","hello-world","help","here","here'","here’","hexadecim","hexadecimal-digit","hexadecimal-expon","hexadecimal-fract","hexadecimal-liter","hexadecimal-literal-charact","hexadecimaldoubl","hexadecimalinteg","hierarchi","high","higher","higher-preced","highest","highestunlockedlevel","highland","hilari","hold","horizont","horribl","hors","htmlelement","htmlelement(nam","htmlelementdeinitializer中的消息并没有别打印,证明了htmlel","htmlelement例子中,无主引用是正确的解决循环强引用的方法。这样这样编写htmlel","htmlelement实现和之前的实现一致,只是在ashtml闭包中多了一个占有列表。这里,占有列表是[unown","htmlelement类产生了类实例和ashtml","htmlelement类只提供一个构造函数,通过name和text(如果有的话)参数来初始化一个元素。该类也定义了一个析构函数,当htmlel","htmlelement类定义了一个name属性来表示这个元素的名称,例如代表段落的"p",或者代表换行的"br"。htmlelement还定义了一个可选属性text,用来设置和展现html","htmlelement还定义了一个lazy属性ashtml。这个属性引用了一个闭包,将name和text组合成html","http","http200statu","http200status.descript","http200status.statuscod","http404error","http404error.0","http404error.1","human","hundr","iboutlet和ibinspectable用于修饰一个类的属性声明;ibaction特性用于修饰一个类的方法声明;ibdesign","ident","identifi","identifier-charact","identifier-head","identifier-list","identifier-list­function-result­(opt)­in","identifier-pattern","identifier-patterntype-annotationopt","identifier­:­express","identifier­generic-argument-clause­(opt","if-condit","if-stat","if和let来处理值缺失的情况。有些变量的值是可选的。一个可选的值可能是一个具体的值或者是nil","if和switch来进行条件操作,使用for-in、for、while和do-whil","if和while语句中来对可选的值进行判断并把值赋给一个常量或者变量。if和whil","if或els","if语句中条件的值的类型必须遵循logicvalu","if语句中,条件必须是一个布尔表达式——这意味着像if","if语句允许二选一,也就是当条件为假时,执行els","if语句和switch","if语句和switch语句。通常,当条件较为简单且可能的情况很少时,使用if语句。而switch语句更适用于复杂的条件、可能的情况很多且需要用到模式匹配(pattern-match","if语句来判断一个可选是否包含值。如果可选有值,结果是true;如果没有值,结果是fals","if语句用于判断是不是特别热。而最后的els","if语句的第一个分支中操作actualnumber的值,你可以改成if","ignor","illustr","imag","img","immedi","implement","implicit","implicit-member-express","implicit-parameter-nam","implicitdoubl","implicitinteg","implicitli","implicitly-unwrapped-optional-typ","implicitlyunwrappedoptional泛型实参语句泛型形参语句泛型形参语句where语句hello","pad","paddeddoubl","paddedstr","paint","pair","paragraph","paragraph变量为nil,打破它持有的htmlelement实例的强引用,htmlel","paragraph变量定义为可选htmlelement,因此我们可以赋值nil","parakeet","paramet","parameter),不支持默认参数(default","parameter-claus","parameter-clause­function-result­(opt)­in","parameter-list","parameter-nam","parameternam","parameters"","parameters(这里需要closur","parameters类型参数命名类型参数泛型类型类型约束类型约束语法类型约束行为关联类型关联类型行为扩展一个存在的类型为一指定关联类型wher","parameters)函数类型(funct","parameters)常量参数和变量参数(const","parameters)无参函数(funct","parameters)无返回值函数(funct","parameters)输入输出参数(in-out","parameter’","parent","parenthes","parenthesized-express","part","particular","pass","passedretinascan","passeng","pattern","pattern-initi","pattern-initializer-list","patternastyp","patterns)表达式模式(express","patterns)通配符模式(wildcard","pattern)代表了单个值或者复合值的结构。例如,元组(1","pattern)值绑定模式(value-bind","pattern)元组模式(tupl","pattern)和元组模式(tupl","pattern)枚举案例模式(enumer","pattern)标识符模式(identifi","pattern)类型转换模式(type-cast","pattern),标识符模式(identifi","penguin","pepper","perform","performact","perimet","person","person'","person(fullnam","person(nam","person?的变量,用来按照代码片段中的顺序,为新的person实例建立多个引用。由于这些变量是被定义为可选类型(person?,而不是person),它们的值会被自动初始化为nil,目前还不会引用到person","personnam","person和apart","person和apartment实例并将类实例赋值给john和number73","person和apartment的例子一致,但是有一个重要的区别。这一次,apartment的ten","person和apartment的例子展示了两个属性的值都允许为nil","person和resid","person和residence模型通过添加一个room和一个address","person实例依然保持对apartment实例的强引用,但是apartment实例只是对person实例的弱引用。这意味着当你断开john变量所保持的强引用时,再也没有指向person","person实例有一个类型为string,名字为name的属性,并有一个可选的初始化为nil的apartment属性。apart","person实例现在有了一个指向apartment实例的强引用,而apartment实例也有了一个指向person实例的强引用。因此,当你断开john和number73变量所持有的强引用时,引用计数并不会降为0,实例也不会被arc","person实例,它的resid","person类开始,并定义了一个叫nam","person类有一个构造函数,此构造函数为实例的name属性赋值并打印出信息,以表明初始化过程生效。person","person类的新实例被赋值给了reference1变量,所以reference1到person类的新实例之间建立了一个强引用。正是因为这个强引用,arc会保证person","person类的构造函数的时候,"john","person结构体含有一个名为fullnam","peter","pi","piec","pink","pixel","place","placehold","plai","plane","planet","planet.earth","planet.earth.toraw","planet.fromraw(7","planet.fromraw(9)语句获得一个可选planet,如果可选planet可以被获得,把someplanet设置成该可选planet的内容。在这个范例中,无法检索到位置为9的行星,所以els","planet.fromraw(positiontofind","planet.uranu","planet.venus的原始值是2","player","player(coin","player(nam","player.completedlevel(1","player.tracker.advancetolevel(6","playernam","playeron","playerone!.coinsinpurs","playerone!.wincoins(2_000","playerone是可选的,所以由一个感叹号(!)来修饰,每当其wincoins方法被调用时,coinsinpurs","player实例都由一个指定数目硬币组成的启动额度初始化,这些硬币在bank初始化的过程中得到。如果没有足够的硬币可用,play","player实例随着一个100个硬币(如果有)的请求而被创建。这个player实例存储在一个名为playerone的可选player变量中。这里使用一个可选变量,是因为players可以随时离开游戏。设置为可选使得你可以跟踪当前是否有play","player已经赢得了2,000硬币。player的钱包现在有2,100硬币,bank只剩余7,900","player现在已经离开了游戏。这表明是要将可选的playerone变量设置为nil,意思是"没有player实例"。当这种情况发生的时候,playerone变量对player实例的引用被破坏了。没有其它属性或者变量引用player实例,因此为了清空它占用的内存从而释放它。在这发生前一步,其析构函数被自动调用,其硬币被返回到bank","player类使用leveltrack","player类创建一个新的leveltracker实例来检测这个用户的发展进度。他提供了completedlevel方法:一旦玩家完成某个指定等级就调用它。这个方法为所有玩家解锁下一等级,并且将当前玩家的进度更新为下一等级。(我们忽略了advancetolevel返回的布尔值,因为之前调用leveltracker.unlocklevel","player类定义了一个wincoins方法,该方法从bank获取一定数量的硬币,并把它们添加到player的钱包。player类还实现了一个析构函数,这个析构函数在player实例释放前一步被调用。这里析构函数只是将player的所有硬币都返回给bank","player类描述了游戏中的一个玩家。每一个player在任何时刻都有一定数量的硬币存储在他们的钱包中。这通过player的coinsinpurs","pleas","plu","plusminusvector","plusthre","pm","point","point(x","point.0","point.1","pointonefouronefivenin","point封装了一个(x","point来引用元组(int","point结构体定义了一个变异方法(mut","pop","popul","popviewcontrolleranim","pop并移除值"cuatro"","pop方法的返回值,该返回值将是一个t","port","posit","positiontofind","possibl","possibleinteg","possibleintegervalu","possiblenumb","possiblenumber.toint","possiblenumber.toint返回的可选int包含一个值,创建一个叫做actualnumb","possibleplanet","possiblestr","postfix","postfix-express","postfix-expression­.­decimal-digit","postfix-expression­.­dynamictyp","postfix-expression­.­identifier­generic-argument-clause(opt","postfix-expression­.­init","postfix-expression­.­self","postfix-expression­[­expression-list","postfix-expression­parenthesized-express","postfix-expression­parenthesized-expression­(opt)­trailing-closur","postfix-expression­postfix-oper","postfix-oper","postfix-operator-declar","postfix-self-express","potentialoverflow","powder","power","preced","precedence-claus","precedence-level","predefin","predict","prefix","prefix)表达式,二元(binary)表达式,主要(primary)表达式和后缀(postfix)表达式。表达式可以返回一个值,以及运行某些逻辑(caus","prefix-express","prefix-expression­binary-expressions(opt","prefix-oper","prefix-operator-declar","prefix存在时,将prefix插入到name之前来为starship构建fullnam","preslei","prettytextrepresent","prettytextrepresentable协议的同时,也需要遵循textrepresent","prettytextrepresentable协议继承了textrepresent","primari","primary-express","prime","principl","print","print(\"\\(codeunit","print(\"\\(scalar.valu","print(\"\\n","print(\"conson","print(\"oth","print(\"vowel","print(parent!.titl","print(self!.titl","print(self.titl","printandcount(\"hello","printandcount(stringtoprint","printandcount,输出一个字符串并返回int类型的字符数。第二个函数printwithoutcount","printclassnam","printhelloworld","printletterkinds(\"hello","printletterkinds(word","printletterkinds的输入是一个string值并对其字符进行迭代。在每次迭代过程中,考虑当前字符的kind计算属性,并打印出合适的类别描述。所以printletterkinds就可以用来打印一个完整单词中所有字母的类型,正如上述单词"hello"","println","println(\"'\\\\(word","println(\"(0","println(\"(\\(point.0","println(\"(\\(somepoint.0","println(\"(\\(x","println(\"3的6倍是\\(threetimestable[6","println(\"\\(airportcod","println(\"\\(animalname)","println(\"\\(bas","println(\"\\(country.name)'","println(\"\\(currentvalu","println(\"\\(index","println(\"\\(nam","println(\"\\(possiblenumb","println(\"\\(scalar","println(\"\\(somecharact","println(\"\\(total.vowel","println(\"a","println(\"about","println(\"access","println(\"ad","println(\"airport","println(\"al","println(\"an","println(\"and","println(\"apart","println(\"area","println(\"automaticcar","println(\"b","println(\"bicycl","println(\"car","println(\"card","println(\"cinema","println(\"count","println(\"eww","println(\"gam","println(\"goodby","println(\"happi","println(\"hd","println(\"hello","println(\"here'","println(\"highest","println(\"index","println(\"it","println(\"it'","println(\"item","println(\"john'","println(\"level","println(\"lot","println(\"media","println(\"mmm","println(\"mostli","println(\"movi","println(\"not","println(\"on","println(\"play","println(\"playeron","println(\"qr","println(\"random","println(\"result","println(\"rol","println(\"som","println(\"somebaseclass","println(\"someint","println(\"somesubclass","println(\"someth","println(\"somewher","println(\"song","println(\"speedlimitedcar","println(\"square.origin","println(\"start","println(\"tandem","println(\"tentighti","println(\"th","println(\"that","println(\"theaceofspad","println(\"ther","println(\"thes","println(\"thi","println(\"thre","println(\"un","println(\"unusualmenageri","println(\"upc-a","println(\"watch","println(\"welcom","println(\"wher","println(\"zero","println("thes","println(a[0","println(ages[\"pet","println(assumedstr","println(audiochannel.maxinputlevelforallchannel","println(b[0","println(c[0","println(cat","println(charact","println(counter.count","println(d12.astext","println(definitestr","println(descript","println(friendlywelcom","println(game.asprettytext","println(game.astext","println(halfopenrangelength(1","println(item","println(leftchannel.currentlevel","println(manager.importer.filenam","println(messag","println(name[0","println(paragraph!.ashtml","println(possiblestr","println(puzzleoutput","println(rightchannel.currentlevel","println(sayhello(\"anna","println(sayhello(\"brian","println(sayhelloagain(\"anna","println(sayhelloworld","println(someclass.computedtypeproperti","println(somestructure.storedtypeproperti","println(somethingtextrepresentable.astext","println(stringtoprint","println(thing.astext","println(“th","println函数输出传入的str","println是一个用来输出的全局函数,输出的内容会在最后带换行。如果你用xcode,println将会输出内容到“console”面板上。(另一种函数叫print","printmathresult(addtwoint","printmathresult(mathfunct","printmathresult函数的作用就是输出另一个合适类型的数学函数的调用结果。它不关心传入函数是如何实现的,它只关心这个传入的函数类型是正确的。这使得printmathresult可以以一种类型安全(type-saf","printmathresult函数,它有三个参数:第一个参数叫mathfunction,类型是(int","printmathresult被调用时,它被传入addtwoints函数和整数3和5。它用传入3和5调用addtwoints,并输出结果:8","printnumberofroom","prints\"hello","printwithoutcounting(\"hello","printwithoutcounting(stringtoprint","prioriti","privat","process","procotol","productbarcod","productbarcode的新变量,并且赋给它一个barcode.upca的关联元组值(8","productcod","program","properti","properties),用于提供关于枚举当前值的附加信息,实例方法(inst","property),也能够要求属性的(设置权限)sett","property)在实例方法中修改值类型(modifi","property)还是计算型属性(calcul","property)还是计算型属性(comput","property),或下标(subscript)提供自己定制的实现(implementation)。我们把这种行为叫重写(overrid","protoc","protocol","protocol<protocol","protocol<someprotocol","protocol-associated-type-declar","protocol-bodi","protocol-composition-typ","protocol-declar","protocol-identifi","protocol-identifier-list","protocol-initializer-declar","protocol-member-declar","protocol-method-declar","protocol-nam","protocol-property-declar","protocol-subscript-declar","protocol(item","repeatedvalu","repeatedvalue:0.0","repetit","repetitions(task","report","repres","represent","request","requir","requirement-claus","requirement-list","requirement­,­requirement-list","reserv","reset","reset将计数器重置为0","resid","residence中也提供了一个printnumberofroom","residence具有一个int类型的numberofrooms,其值为1。person具有一个自判断residence属性,它的类型是resid","residence存储了一个room实例的数组,它的numberofrooms属性值不是一个固定的存储值,而是通过计算而来的。numberofrooms属性值是由返回rooms数组的count","residence定义了一个自判断属性叫address(address?)。address","residence实例给john.resid","residence实例给john.residence,且在他的rooms数组中有一个或多个room实例,那么你可以使用可选链通过residence子脚本来获取在room","residence属性numberofrooms属性值,将会引发运行时错误,因为这时没有可以供解析的resid","residence的printnumberofrooms方法会打印numberofroom","residence类中定义的子脚本来获取john.residence数组中第一个房间的名字。因为john.residence现在是nil","resolut","resolution()或videomode()。通过这种方式所创建的类或者结构体实例,其属均会被初始化为默认值。initi","resolution(width","resolution的结构体,用来描述一个显示器的像素分辨率。这个结构体包含了两个名为width和height的储存属性。储存属性是捆绑和储存在类或结构体中的常量或变量。当这两个属性被初始化为整数0的时候,它们会被推断为int","resolution结构体和videomode类的定义仅描述了什么是resolution和videomode。它们并没有描述一个特定的分辨率(resolution)或者视频模式(video","resolution(width:640","respond","result","result(str","result(sunris","retriev","return","return-stat","returnfifteen","returntyp","return时,仅仅是将控制权从该函数或方法传递给调用者,而不返回一个值。(这就是说,该函数或方法的返回类型为void","return语句后面带表达式时,表达式的值将会返回给调用者。如果表达式值的类型与调用者期望的类型不匹配,swift","return语句时,可以只写return这个关键词,也可以在return","return)\\r","return)或换行符(lin","return)(u+000d","revers","rh","rhsitem","rich","rick","ridlei","right","right-associ","right-hand","right.i","right.x","rightchannel","rightchannel.currentlevel","rise","role","roll","roll方法用来模拟骰子的面值.它先使用generator的random方法来创建一个[0-1","romeoandjuliet","room","room(","room(nam","roomcount","rooms.count","rooms[i","rooms数组的room类是一个很简单的类,它只有一个name属性和一个设定room","rooms数组,resid","rooms,它被初始化为一个room","round","row","row0","row1","rowheight","row和column下标的matrix","row和column的数量来构造一个新的matrix","rule","runingtotal变量的内存管理操作,如果不再被incrementor","runningtot","runningtotal增加amount","runningtotal的值,incrementor捕获了当前runningtotal变量的引用,而不是仅仅复制该变量的初始值。捕获一个引用保证了当makeincrementor结束时候并不会消失,也保证了当下一次执行incrementor函数时,runningtot","runtim","s","s1","s2","s2),backwards函数返回true,表示在新的数组中s1应该出现在s2","safe","safeti","same","same-type-requir","samequot","sampl","sandwich","sankesandladders的实例都可以使用asprettytext","saturn","saygoodbye(\"dav","saygoodbye(personnam","saygoodbye函数依然返回了值。没有定义返回类型的函数会返回特殊的值,叫void。它其实是一个空的元组(tupl","sayhello(personnam","sayhelloagain(personnam","sayhelloworld","sayhello。上面的例子展示的是用"anna"和"brian"","sayhello函数时,在圆括号中传给它一个string类型的实参。因为这个函数返回一个string类型的值,sayhello可以被包含在println","sayhello函数的另一个版本,叫wavegoodbye,这个函数直接输出str","sayhello的函数体中,先定义了一个新的名为greeting的string常量,同时赋值了给personname的一个简单问候消息。然后用return关键字把这个问候返回出去。一旦return","scalar","scarf","scene","scene.hasprefix(\"act","scope","score","scott","second","secondforloop","secondvector","see","seem","self","self(initi","self-express","self.anm","self.area","self.artist","self.capitalc","self.column","self.count","self.countri","self.custom","self.director","self.gener","self.greet","self.init(initi","self.init(origin","self.leg","self.memb","self.nam","self.name)>\\(text)(somet","someresolut","someresolution.width","someresolution.width引用someresolution的width属性,返回width的初始值0","somestr","somestring变量通过字符串字面量进行初始化,swift","somestructur","somestructure.storedtypeproperti","somestructure等),以便符合标准swift","somesubclass","somesuperclass","somesupertyp","someth","somethingtextrepresent","sometuple的类型被指定为(doubl","sometuple:(doubl","sometyp","sometype(ofinitialvalu","sometypemethod","sometypeproperti","someu","somevalu","somevalue是一个标识符模式,匹配了类型是int的42","somevehicl","somevideomod","somevideomode.resolution.width","somevideomode中resolution属性的width这个子属性,以上操作并不需要从新设置resolut","somewher","song","song(nam","song.artist","song.nam","songcount","songcount,用来计算数组librari","song检查item是否为song类型的实例。在循环末尾,moviecount","sort","sort([1","sort(nam","sort函数当排序结束后传入的第一个参数排在第二个参数前面还是后面。如果第一个参数值出现在第二个参数值前面,排序闭包函数需要返回true,反之返回fals","sort函数的参数进行传入的,swift","sort期望第二个参数是类型为(str","soup","sourc","south","space","space)(u+0020)、换行符(lin","spade","span","sparklingheart","special","specif","specifi","speed","speedlimitedcar","speedlimitedcar实例的speed属性时,属性setter的实现会去检查新值与限制值40mph的大小,它会将超类的speed设置为newvalue和40.0中较小的那个。这两个值哪个较小由min函数决定,它是swift标准库中的一个全局函数。min","speedlimitedcar实例的speed属性设置为一个大于40mph的数,然后打印description函数的输出,你会发现速度被限制在40mph","speedlimitedcar,它是car的子类。类speedlimitedcar表示安装了限速装置的车,它的最高速度只能达到40mph。你可以通过重写继承来的spe","spici","spider","spread","spread","cheese",和"butter"替换为"bananas"","squar","square(sidelength","square.cent","square.origin","square.origin.i","square.origin.x","square.sidelength","square的center属性可以通过点运算符(square.center)来访问,这会调用getter来获取属性的值。跟直接返回已经存在的值不同,getter实际上通过计算然后返回一个新的point实例表示square的中心点。如代码所示,它正确返回了中心点(5","square的rect实例,初始值原点是(0","src=\"https://developer.apple.com/library/prerelease/ios/documentation/swift/conceptual/swift_programming_language/art/barcode_qr_2x.png","src=\"https://developer.apple.com/library/prerelease/ios/documentation/swift/conceptual/swift_programming_language/art/barcode_upc_2x.png","src=\"https://developer.apple.com/library/prerelease/ios/documentation/swift/conceptual/swift_programming_language/art/computedproperties_2x.png","src=\"https://developer.apple.com/library/prerelease/ios/documentation/swift/conceptual/swift_programming_language/art/coordinategraphcomplex_2x.png","src=\"https://developer.apple.com/library/prerelease/ios/documentation/swift/conceptual/swift_programming_language/art/coordinategraphmedium_2x.png","src=\"https://developer.apple.com/library/prerelease/ios/documentation/swift/conceptual/swift_programming_language/art/coordinategraphsimple_2x.png","src=\"https://developer.apple.com/library/prerelease/ios/documentation/swift/conceptual/swift_programming_language/art/staticpropertiesvumeter_2x.png","stack","stack(栈)。一个栈是一系列值域的集合,和array(数组)相似,但其是一个比swift的array类型更多限制的集合。一个数组可以允许其里面任何位置的插入/删除操作,而栈,只允许,只允许在集合的末端添加新的项(如同push一个新值进栈)。同样的一个栈也只能从末端移除项(如同pop","stack(inout","swaptwovalues例子中,节点类型t是一种类型参数的示例。类型参数指定并命名为一个节点类型,并且紧随在函数名后面,并用一对尖括号括起来(如)。这个尖括号告诉swift那个t是swaptwovalues函数所定义的一个节点类型。因为t是一个节点,swift不会去查找每一个命名为t","t-shirt","t.0","t.1","t.element","t.generatortype.el","tab","tabl","tab(horizont","tab(vert","tab)\\t","tab)(u+0009","tab)(u+000b)、换页符(form","tailor","take","taken","tandem","tandem.descript","tandem类也继承了descript","target","task","tast","tasti","td","td>1","td>1*2","td>3","td>4","td>5","td>6","td>7","td>8","td>9","tea","teamscor","temperatureinfahrenheit","temporari","temporarya","ten","tenant","teneighti","teneighty.framer","teneighty.interlac","teneighty.nam","teneighty.resolut","teneighty和alsoteneighty被声明为常量(constants)而不是变量。然而你依然可以改变teneighty.framerate和alsoteneighty.framerate,因为这两个常量本身不会改变。它们并不储存这个videomode实例,在后台仅仅是对videomode实例的引用。所以,改变的是被引用的基础videomode的framer","teneighty的framerate属性,我们会发现它正确的显示了基本videomode实例的新帧率,其值为30.0","teneighty的常量,其引用了一个videomode类的新实例。在之前的示例中,这个视频模式(video","teneight和alsoteneight实际上引用的是相同的videomod","terminolog","ternari","terrapin","test","test.area","test.simpledescript","testnumb","text","text</p>"或者"<p","text"还是nil,闭包会返回"<p>som","textrepresent","textrepresentabl","textrepresentable协议含有一个astext","theaceofspad","theaceofspades.descript","theeighti","there’","thing","things.append(\"hello","things.append((3.0","things.append(0","things.append(0.0","things.append(3.14159","things.append(42","things.append(movie(nam","things数组中的每一项的并用switch语句查找每一项的类型。这几种switch","things数组可以被直接遍历,并调用其中元素的astext","thing被当做是textrepresentable类型而不是dice,dicegame,hamster等类型.因此能且仅能调用astext","think","third","those","thought","thousand","three","threedescript","threedoubl","threefeet","threeofspad","threeofspades.simpledescript","threeofspadesdescript","threesourc","threesource作为数据源开实例化一个count","threesource实现了counterdatasourc","threetimest","threetimestable[6]。这句话访问了threetimestable的第六个元素,返回18或者6的3","three的值被用来创建一个doubl","threshold","thresholdlevel","through","through)带标签的语句控制传递语句break","time","timest","timestable(multipli","timestable例子是基于一个固定的数学公式。它并不适合开放写权限来对threetimestable[someindex","timestable结构体中使用只读下标的用法,该结构体用来展示传入整数的n","timestable结构体创建了一个用来表示索引值三倍的实例。数值3作为结构体构造函数入参表示这个值将成为实例成员multipli","tobedoubl","todai","togeth","toggl","togglabl","togglable协议含有toggle函数.根据函数名称推测,toggle可能用于切换或恢复某个属性的状态.mut","togglabl协议时,必须在toggle方法前加上mut","toincrement","toint方法可能会失败,所以它返回一个可选的int,而不是一个int。一个可选的int被写作int?而不是int。问号暗示包含的值是可选,也就是说可能包含int值也可能不包含值。(不能包含其他任何值比如bool值或者string值。只能是int","toint方法来尝试将一个string转换成int","tokyo","toobig","top","top-level","top-level-declar","toraw","toraw和fromraw","tostr","tostring:\"world","total","total.conson","totalstep","totalsteps设置新值的时候,它的willset和didset","totwo","touch","towardszerosourc","towardszerosource实现了counterdatasource协议中的incrementforcount","to那些包含可选成员需求的协议。更多关于如何使用optional特性以及如何访问可选协议成员的指导,例如,当你不确定一个conform","tr","tracker","tracker.advancetolevel(level","trail","trailing-closur","transer","trap","travel","tre","treat","tree","tree)的叶子节点传向根节点。也就是说,var","triagl","triangl","triangle.perimet","triangle.sidelength","triangleandsquar","triangleandsquare(s","triangleandsquare.squar","triangleandsquare.square.sidelength","triangleandsquare.triangle.sidelength","trigger","tristateswitch","tristateswitch.low","true","true),statements将会被执行,然后转到第3步。如果为假(false),statements和increment都不会被执行,for","true),转到第1步。如果为假(false),do-whil","true),转到第2步。如果为假(false),whil","true。从字面意思来说,断言“断言”一个条件是否为真。你可以使用断言来保证在运行其他代码之前,某些重要的条件已经被满足。如果条件判断为true,代码运行会继续进行;如果条件判断为fals","true和fals","true,会重复运行一系列语句,直到条件变为fals","true,则会执行大括号内部的代码(stat","truncat","try","tuesdai","tulip","tupl","tuple-pattern","tuple-pattern-el","tuple-pattern-element-list","tuple-patterntype-annotationopt","tuple-typ","tuple-type-bodi","tuple-type-body[opt","tuple-type-el","tuple-type-element-list","turn","turnip","turnipsaredelici","two","two-dimension","twothousand","twothousandandon","twothousand类型是uint16,然而常量one类型是uint8。它们不能直接相加,因为它们类型不同。所以要调用uint16(one)来创建一个新的uint16数字并用on","twothre","two’","tyo","type","type(in","type)(译者注:特指结构体和枚举)中的的函数前缀加上mut","type),修改变量的值就相当于修改变量的类型,而swift默认不允许修改类型,因此需要前置mut","type),可以方便的修改实例及其属性的值而无需改变类型;而结构体和枚举中的成员均为值类型(valu","type)。你可以在声明属性或者变量时,在前面加上关键字unown","type)的上下文(context)中,隐式成员表达式是访问某个type的memb","type-annot","type-cast","type-casting-oper","type-casting-pattern","type-identifi","type-identifier­:­protocol-composition-typ","type-identifier­:­type-identifi","type-identifier­==­type-identifi","type-inheritance-claus","type-inheritance-list","type-nam","type-name­:­protocol-composition-typ","type-name­:­type-identifi","type-saf","type.protocol","type.self","type.typ","typealia","typealias-assign","typealias-declar","typealias-head","typealias-nam","types(章节信息url","types中知道结构体有默认的成员构造函数,所以你可以用默认的initializer去初始化新的常量theaceofspad","types)——比如表示数字、字符和字符串——实际上就是命名型类型,swift","types)使用函数类型(us","types)函数类型作为参数类型(funct","types)函数类型作为返回类型(funct","types)嵌套函数(nest","types,如int、character)外,你可以使用任何类型的值,包括浮点数、字符串、元组、自定义类的实例和可选(optional)类型,甚至是枚举类型中的成员值和指定的范围(range)等。关于在switch语句中使用这些类型,请参考控制流一章的switch","type’","type。协议类型的元类型——并不是运行时适配该协议的具体类型——是该协议名字紧跟.protocol。比如,类someclass的元类型就是someclass.type,协议someprotocol的元类型就是someprotocal.protocol","type在声明时候所定义(declar","type是int","type的名字(当然了,如果我都知道它的名字了还需要动态来获取它吗)。动态类型表达式会返回"运行时"某个instance的typ","type)。,即使是这个方法本是没有定义返回值,你也可以使用if语句来检查是否能成功调用printnumberofrooms方法:如果方法通过可选链调用成功,printnumberofrooms的隐式返回值将会是void,如果没有成功,将返回nil","t分别代表tnt和string","t则是跟这些type的公共supertype最接近的type.(closest","t和u遵守generator协议,同时要求它们的关联类型等同,可以这样来表达:<t","t定义了一个名为“某种类型t”的节点提供给后来用。这种将来类型可以在结构体的定义里任何地方表示为“t”。在这种情况下,t","t就是数组中元素的type","t来表示)来代替实际类型名(如int、string或double)。节点类型名并不是表示t必须是任何类型,但是其规定a和b必须是同一类型的t,而不管t表示任何类型。只有swaptwovalues函数在每次调用时所传入的实际类型决定了t","t被用作append方法的item参数和下标的返回类型。swift因此可以推断出被用作这个特定容器的itemtype的t","t,u,v,keytype,valuetyp","t,是@noreturn","t,有一个需要t必须是someclass子类的类型约束;第二个类型参数u,有一个需要u必须遵循someprotocol","u","u+000a","u+000d","u+0024","u+00a8","u+00aa","u+00ad","u+00af","u+00b2–u+00b5","u+00b7–u+00ba","u+00bc–u+00b","u+00c0–u+00d6","u+00d8–u+00f6","u+00f8–u+00ff","u+0100–u+02ff","u+0300–u+036f","u+0370–u+167f","u+10000–u+1fffd","u+1681–u+180d","u+180f–u+1dbf","u+1dc0–u+1dff","u+1e00–u+1fff","u+1f436","u+1f496","u+20000–u+2fffd","u+200b–u+200d","u+202a–u+202","u+203f–u+2040","u+2054","u+2060–u+206f","u+2070–u+20cf","u+20d0–u+20ff","u+2100–u+218f","u+2460–u+24ff","u+2665","u+2776–u+2793","u+2c00–u+2dff","u+2e80–u+2fff","u+30000–u+3fffd","u+3004–u+3007","u+3021–u+302f","u+3031–u+303f","u+3040–u+d7ff","u+40000–u+4fffd","u+50000–u+5fffd","u+60000–u+6fffd","u+70000–u+7fffd","u+80000–u+8fffd","u+90000–u+9fffd","u+a0000–u+afffd","u+b0000–u+bfffd","u+c0000–u+cfffd","u+d0000–u+dfffd","u+d83d","u+e0000–u+efffd","u+f900–u+fd3d","u+fd40–u+fdcf","u+fdf0–u+fe1f","u+fe20–u+fe2f","u+fe30–u+fe44","u+fe47–u+fffd","u.element>","u.generatortype.el","u0001f496","u2665","uinavigationcontrol","uint","uint16","uint16(on","uint16有一个构造器,可以接受一个uint8类型的值,所以这个构造器可以用现有的uint8来创建一个新的uint16。注意,你并不能传入任意类型的值,只能传入uint16","uint16,可以进行相加。目标常量twothousandandone的类型被推测为uint16,因为它是两个uint16","uint32","uint8","uint8.max","uint8.min","uint,除非你真的需要存储一个和当前平台原生字长相同的无符号整数。除了这种情况,最好使用int,即使你要存储的值已知是非负的。统一使用int","uitableviewdeleg","unabl","unari","uncertainti","uncom","undefinedundefin","underflow","underli","unicod","unicodescalar","unicodescalarview","unicodescalar拥有一个值属性,可以返回对应的21位数值,用uint32","unicodescalar是21","union-style-enum","union-style-enum-cas","union-style-enum-case-claus","union-style-enum-case-list","union-style-enum-memb","unions)和变体(vari","unions),或者变体(vari","unions),标签联合(tag","unlik","unlock","unlocklevel(level","unnnnnnnn,其中nnnnnnnn","unnnn,其中nnnn","uno","unown","unowned(saf","unowned(unsaf","unshar","unshare方法来确定数组引用的唯一性。(当数组赋给常量时,不能调用unshar","unshare方法调用后再修改b中第一个元素的值,这三个数组(a,b,c","unshare方法,而不是copy方法。unshare方法仅会在确有必要时才会创建数组拷贝。copi","unsign","unusu","unusualmenageri","unwrap","unwrappedc","unwrappedc.property.performact","up","upc-a","upca(int","upca(let","upca(numbersystem","updatevalue(forkey:)函数会返回包含一个字典值类型的可选值。举例来说:对于存储string值的字典,这个函数会返回一个str","updatevalue(forkey:)方法可以设置或者更新特定键对应的值。就像上面所示的示例,updatevalue(forkei","upper","uppercamelcas","uppercas","uppercasestring和lowercasestr","upward","uranu","us","uss","utf-16","utf-16(以16","utf-8","utf-8(以8","utf16","utf16count","utf16view","utf16属性来访问它的utf-16","utf8","utf8view","utf8属性来访问它的utf-8","v","valid","valu","value),当其不可访问时,?之后语句不会执行,并返回nil","value),检查另一个字典中所对应的值,来证明ages字典确实是被拷贝了。如果在copiedages字典中将peter的值设为24,那么ages字典仍然会返回修改前的值23","value-bind","value-binding-pattern","values(first","values)函数参数名(funct","values)原始值(raw","values)可变参数(variad","values)多重输入参数(multipl","values)多重返回值函数(funct","values)默认值参数的外部参数名(extern","valuetofind","valuetofind”。不是所有的swift中的类型都可以用等式符(==)进行比较。例如,如果你创建一个你自己的类或结构体来表示一个复杂的数据模型,那么swift没法猜到对于这个类或结构体而言“等于”的意思。正因如此,这部分代码不能可能保证工作于每个可能的类型t","valuetyp","valuetype>定义,其中keytype是字典中键的数据类型,valuetyp","value的typ","value)元组。下面的例子中,字典的键(kei","value)都关联独特的键(kei","value),因为这些量是不能被修改的。当传入的参数作为输入输出参数时,需要在参数前加&","var","variabl","variable-declar","variable-declaration-head","variable-nam","variablestr","variad","var关键字定义计算属性,包括只读计算属性,因为他们的值不是固定的。let","var定义),也可以是常量存储属性(用关键字let","var或者let","vector","vector.i","vector.x","vector2d","vector2d(1.0","vector2d(x","vectortoadd","veget","vegetablecom","vehicl","vehicle的一个新的子类,叫car,它重写了从vehicle类继承来的'description'","vehicle的基类。这个基类声明了两个对所有车辆都通用的属性(numberofwheels和maxpassengers)。这些属性在description方法中使用,这个方法返回一个str","vehicle类中maxpassengers的默认值对自行车来说已经是正确的,因此在bicycle的初始化器中并没有改变它。而numberofwheels原来的值对自行车来说是不正确的,因此在初始化器中将它更改为2","vehicle类定义了初始化器(initi","vehicle类的初始化器为任意的一辆车设置一些初始化属性值(numberofwheel","vendcoins(var","vendcoins方法在bank分发硬币之前检查是否有足够的硬币。如果没有足够多的硬币,bank返回一个比请求时小的数字(如果没有硬币留在bank中就返回0)。vendcoins方法声明numberofcoinstovend为一个变量参数,这样就可以在方法体的内部修改数字,而不需要定义一个新的变量。vendcoin","venu","veri","verona","versa","version","vga","vic","vice","videomod","videomode中resolution属性的width","videomode的类,用来描述一个视频显示器的特定模式。这个类包含了四个储存属性变量。第一个是分辨率,它被初始化为一个新的resolution结构体的实例,具有resolution的属性类型。新videomode实例同时还会初始化其它三个属性,它们分别是,初始值为false(意为“non-interlac","video”)的inteflaced,回放帧率初始值为0.0的framerate和值为可选string的name。name属性会被自动赋予一个默认值nil,意为“没有nam","view","void","void。在swift中,void","void是空元组类型()的别名。如果括号内只有一个元素,那么该类型就是括号内元素的类型。比如,(int)的类型是int而不是(int","void(参见funct","void?,而不是void,因为当通过可选链调用方法时返回值总是自判断类型(opt","volum","vowel","vowel代替character.kind.vowel","vumet","w","wai","want","warm","watch","water","watercress","we'r","weak","weak或者unowned关键字和实例的引用(如self或someinst","wear","web","wei","welcom","welcomemessag","welcomemessage变量添加了类型标注,表示这个变量可以存储str","well","west","wheel","whenev","wherea","where­requirement-list","where语句。where语句由关键字wher","where语句中的要求用于指明该类型形参继承自某个类或遵守某个协议或协议的一部分。尽管where语句有助于表达类型形参上的简单约束(如t","where语句作为一个类型参数队列的一部分。一个where语句使你能够要求一个关联类型遵循一个特定的协议,以及(或)那个特定的类型参数和关联类型可以是相同的。你可写一个where语句,通过紧随放置wher","where语句的一部分,写在关键字wher","where,只在冒号后面写接口或者类名。<t","whether","while-condit","while-stat","whiledo-while条件语句ifswitch不存在隐式的贯穿(fallthrough","while循环体中调用break和continu","while循环体和switch方法块来实现游戏的逻辑。while循环体有一个标签名gameloop","while循环体的条件判断语句是whil","while循环体的语法,同样的规则适用于所有的循环体和switch","whisper","white","whitespac","whose","wide","width","width=\"169","width=\"243","width=\"252","width=\"288","width=\"289","width=\"388","widthlabel","width属性和height属性,两者均为doubl","wildcard","wildcard-express","wildcard-pattern","wildcard-patterntype-annotationopt","willoverflow","willset","willset(newtotalstep","willset-claus","willset-didset-block","willset和didset","willset和didset的实际例子,其中定义了一个名为stepcount","willset或didset实现是不恰当。此外还要注意,你不可以同时提供重写的setter和重写的属性观察器。如果你想观察属性值的变化,并且你已经为那个属性提供了定制的setter,那么你在sett","willset监视器会将新的属性值作为固定参数传入,在willset的实现代码中可以为这个参数指定一个名称,如果不指定则参数仍然可用,这时使用默认名称newvalu","willset监视器将表示新值的参数自定义为newtotalstep","willunderflow","win","wincoins(coin","wiseword","wishhappybirthday(birthdayperson","wishhappybirthday(celebr","wishhappybirthday函数的形参celebrator的类型为protocol<named,aged>","within","withjoin","without","won","word","work","world","world"","world +## 术语 -一目运算符分前置符和后置运算符, 前置运算符需紧排操作对象之前, 如 `!b`, 后置运算符需紧跟操作对象之后,如 `i++`, +运算符有一目,双目和三目运算符。 -双目运算符操作两个操作对象, 如 `2 + 3`. 是中置的, 因为它们出现在两个操作对象之间. +- 一目运算符对单一操作对象操作,如`-a`。一目运算符分前置符和后置运算符,前置运算符需紧排操作对象之前,如`!b`,后置运算符需紧跟操作对象之后,如`i++`, +- 双目运算符操作两个操作对象,如 `2 + 3`。是中置的,因为它们出现在两个操作对象之间。 +- 三目运算符操作三个操作对象,和C语言一样,Swift只有一个三目运算符,就是三目条件运算符 `a?b:c`。 -三目运算符操作三个操作对象, 和C语言一样, Swift只有一个三目运算符, 就是三目条件运算符 `a ? b : c`. +受运算符影响的值叫操作数,在表达式`1 + 2`中,加号`+`是双目运算符,它的两个操作数是值`1`和`2`。 -受运算符影响的值叫操作数, 在表达式 `1 + 2` 中, 加号 `+` 是双目运算符, 它的两个操作数是值 `1` 和 `2`. + +## 赋值运算符 -# 赋值运算符 - -赋值运算 `a = b`, 表示用 `b` 的值来初始化或更新 `a` 的值. +赋值运算 `a = b`,表示用`b`的值来初始化或更新`a`的值。 ```swift let b = 10 @@ -34,12 +43,12 @@ a = b // a 现在等于 10 ``` -如果赋值的右边是一个多元组, 它的元素可以马上被分解多个变量或变量 +如果赋值的右边是一个多元组,它的元素可以马上被分解多个变量或变量 ``` let (x, y) = (1, 2) // 现在 x 等于 1, y 等于 2 ``` -与C语言和Objective-C不同, Swift的赋值操作并不返回任何值. 所以以下代码是错误的: +与C语言和Objective-C不同,Swift的赋值操作并不返回任何值。所以以下代码是错误的: ```swift if x = y { @@ -47,16 +56,17 @@ if x = y { } ``` -这个特性使得你不无法把`==`错写成`=`了, 由于`if x = y`是错误代码, Swift从底层帮你避免了这些代码错误. +这个特性使得你不无法把`==`错写成`=`了,由于`if x = y`是错误代码,Swift从底层帮你避免了这些代码错误。 -# 数值运算 + +## 数值运算 -Swift让所有数值类型都支持了基本的四则运算: +Swift让所有数值类型都支持了基本的四则运算: -- 加法 `+` -- 减法 `-` -- 乘法 `*` -- 除法 `/` +- 加法`+` +- 减法`-` +- 乘法`*` +- 除法`/` ```swift 1 + 2 // 等于 3 @@ -65,15 +75,15 @@ Swift让所有数值类型都支持了基本的四则运算: 10.0 / 2.5 // 等于 4.0 ``` -与C语言和Objective-C不同的是, Swift默认不允许在数值运算中出现溢出情况. 但你可以使用Swift的溢出运算符来达到你有目的的溢出, (如 `a &+ b` ). 详情请移步: [溢出运算符](Overflow Operators). +与C语言和Objective-C不同的是,Swift默认不允许在数值运算中出现溢出情况。但你可以使用Swift的溢出运算符来达到你有目的的溢出,(如 `a &+ b`)。详情请移步:[溢出运算符](23_Advanced_Operators.html#overflow_operators)。 -加法操作 `+` 也用于字符串的拼接: +加法操作`+`也用于字符串的拼接: ```swift "hello, " + "world" // 等于 "hello, world" ``` -两个字符类型或一个字符类型和一个字符串类型, 相加会生成一个新的字符串类型: +两个字符类型或一个字符类型和一个字符串类型,相加会生成一个新的字符串类型: ```swift let dog: Character = "d" @@ -82,38 +92,21 @@ let dogCow = dog + cow // 译者注: 原来的引号内是很可爱的小狗和小牛, 但win os下不支持表情字符, 所以改成了普通字符 // dogCow 现在是 "dc" ``` -详细请点击 [字符,字符串的拼接](http://#). +详细请点击[字符,字符串的拼接](03_Strings_and_Characters.html#concatenating_strings_and_characters)。 -# 求余运算 +### 求余运算 -求余运算 `a % b` 是计算 `b` 的多少倍刚刚好可以容入 `a` , 多出来的那部分叫余数. +求余运算 `a % b` 是计算`b`的多少倍刚刚好可以容入`a`,多出来的那部分叫余数。 -> 注意 +>注意: +求余运算(%)在其他语言也叫取模运算。然而严格说来,我们看该运算符对负数的操作结果,"求余"比"取模"更合适些。 -> 求余运算(%)在其他语言也叫取模运算. 然而严格说来, 我们看该运算符对负数的操作结果, `求余` 比 `取模` 更合适些. +我们来谈谈取余是怎么回事,计算`9 % 4`,你先计算出4的多少倍会刚好可以容入`9`中。 -我们来谈谈取余是怎么回事, 计算 `9 % 4`, 你先计算出4的多少倍会刚好可以容入 `9` 中. +2倍,非常好,那余数是1(用橙色标出) -2倍, 非常好, 那余数是1 (用'*'标出) - - - - - - - - - - - - - - - - - -
    1 2 3 4 5 6 7 8 9
    441*
    +![Art/remainderInteger_2x.png](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/Art/remainderInteger_2x.png "Art/remainderInteger_2x.png") 在Swift中这么来表达 @@ -121,64 +114,66 @@ let dogCow = dog + cow 9 % 4 // 等于 1 ``` -为了得到 `a % b` 的结果, `%`计算了以下等式, 并输出`余数`作为结果: -``` -a = (b × 倍数) + 余数 -``` -当`倍数`取最大值的时候, 就会刚好可以容入 `a` 中. +为了得到 `a % b` 的结果,`%`计算了以下等式,并输出`余数`作为结果: -把 `9` 和 `4` 代入等式中, 我们得 `1`: +*a = (b × 倍数) + 余数* + +当`倍数`取最大值的时候,就会刚好可以容入`a`中。 + +把`9`和`4`代入等式中,我们得`1`: ```swift 9 = (4 × 2) + 1 ``` -同样的方法, 我来们计算 `-9 % 4` : +同样的方法,我来们计算 `-9 % 4`: ``` -9 % 4 // 等于 -1 ``` -把 `-9` 和 `4` 代入等式, `-2` 是取到的最大整数: +把`-9`和`4`代入等式,`-2`是取到的最大整数: ```swift -9 = (4 × -2) + -1 ``` -余数是 `-1`. +余数是`-1`。 -在对负数 `-b` 求余时, `-b`的符号会被忽略. 这意味着 `a % b` 和 `a % -b`的结果是相同的. +在对负数`-b`求余时,`-b`的符号会被忽略。这意味着 `a % b` 和 `a % -b`的结果是相同的。 -## 浮点数求余计算 +### 浮点数求余计算 -不同于C和Objective-C, Swift中是可以对浮点数进行求余的. +不同于C和Objective-C,Swift中是可以对浮点数进行求余的。 ```swift 8 % 2.5 // 等于 0.5 ``` -这个例子中, 8除于2.5等于3余0.5, 所以结果是0.5. +这个例子中,8除于2.5等于3余0.5,所以结果是0.5。 -# 自增和自增运算 +![Art/remainderFloat_2x.png](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/Art/remainderFloat_2x.png "Art/remainderFloat_2x.png") -和C一样, Swift也提供了方便对变量本身加1或减1的自增 `++` 和自减 `--` 的运算符. 其操作对象可以是整形和浮点型。 +### 自增和自增运算 + +和C一样,Swift也提供了方便对变量本身加1或减1的自增`++`和自减`--`的运算符。其操作对象可以是整形和浮点型。 ‌ ``` var i = 0 ++i // 现在 i = 1 ``` -每调用一次 `++i`, `i` 的值就会加1. -实际上, `++i` 是 `i = i + 1` 的简写, 而 `--i` 是 `i = i - 1`的简写. +每调用一次`++i`,`i`的值就会加1。 +实际上,`++i`是 `i = i + 1` 的简写,而`--i`是 `i = i - 1`的简写。 -`++` 和 `--`既是前置又是后置运算. `++i`, `i++`, `--i` 和 `i--` 都是有效的写法. +`++`和`--`既是前置又是后置运算。`++i`,`i++`,`--i`和`i--`都是有效的写法。 -我们需要注意的是这些运算符修改了 `i` 后有一个返回值. 如果你只想修改 `i` 的值, 那你就可以忽略这个返回值. 但如果你想使用返回值, 你就需要留意前置和后置操作的返回值是不同的. +我们需要注意的是这些运算符修改了`i`后有一个返回值。如果你只想修改`i`的值,那你就可以忽略这个返回值。但如果你想使用返回值,你就需要留意前置和后置操作的返回值是不同的。 -当 `++` 前置的时候, 先自増再返回. +当`++`前置的时候,先自増再返回。 -当 `++` 后置的时候, 先返回再自增. +当`++`后置的时候,先返回再自增。 -不懂? 我们看例子: +不懂?我们看例子: ```swift var a = 0 @@ -186,16 +181,16 @@ let b = ++a // a 和 b 现在都是 1 let c = a++ // a 现在 2, 但 c 是 a 自增前的值 1 ``` -上述例子, `let b = ++a`, 先把 `a` 加1了再返回 `a` 的值. 所以 `a` 和 `b` 都是新值 `1`. +上述例子,`let b = ++a`,先把`a`加1了再返回`a`的值。所以`a`和`b`都是新值`1`。 -而 `let c = a++`, 是先返回了 `a` 的值, 然后 `a` 才加1. 所以 `c` 得到了 `a` 的旧值1, 而 `a` 加1后变成2. +而 `let c = a++`,是先返回了`a`的值,然后`a`才加1。所以`c`得到了`a`的旧值1,而`a`加1后变成2。 -除非你需要使用 `i++` 的特性, 不然推荐你使用 `++i` 和 `--i`, 因为先修改后返回这样的行为更符合我们的逻辑. +除非你需要使用`i++`的特性,不然推荐你使用`++i`和`--i`,因为先修改后返回这样的行为更符合我们的逻辑。 -# 单目负号 +### 单目负号 -数值的正负号可以使用前缀 `-` (即单目负号) 来切换: +数值的正负号可以使用前缀`-`(即单目负号)来切换: ```swift let three = 3 @@ -203,52 +198,52 @@ let minusThree = -three // minusThree 等于 -3 let plusThree = -minusThree // plusThree 等于 3, 或 "负负3" ``` -单目负号写在操作数之前, 中间没有空格. +单目负号写在操作数之前,中间没有空格。 -# 单目正号 +### 单目正号 -单目正号 `+` 不做任何改变地返回操作数的值. +单目正号`+`不做任何改变地返回操作数的值。 ```swift let minusSix = -6 let alsoMinusSix = +minusSix // alsoMinusSix 等于 -6 ``` -虽然单目 `+` 做无用功, 但当你在使用单目负号来表达负数时, 你可以使用单目正号来表达正数, 如此你的代码会具有对称美. +虽然单目`+`做无用功,但当你在使用单目负号来表达负数时,你可以使用单目正号来表达正数,如此你的代码会具有对称美。 -# 复合赋值 + +## 复合赋值 -如同强大的C语言, Swift也提供把其他运算符和赋值运算 `=` 组合的复合赋值运算符, 加赋运算 `+=` 是其中一个例子: +如同强大的C语言,Swift也提供把其他运算符和赋值运算`=`组合的复合赋值运算符,加赋运算`+=`是其中一个例子: ```swift var a = 1 a += 2 // a 现在是 3 ``` -表达式 `a += 2` 是 `a = a + 2` 的简写, 一个加赋运算就把加法和赋值两件事完成了. +表达式 `a += 2` 是 `a = a + 2` 的简写,一个加赋运算就把加法和赋值两件事完成了。 -> 注意: +>注意: +复合赋值运算没有返回值,`let b = a += 2` 这类代码是错误。这不同于上面提到的自增和自减运算符。 -> 复合赋值运算没有返回值, `let b = a += 2` 这类代码是错误. 这不同于上面提到的自增和自减运算符. - -[表达式](http://#)里有复合运算符的完整列表. +在[表达式](../chapter3/04_Expressions.html)章节里有复合运算符的完整列表。 ‌ -# 比较运算 + +## 比较运算 -所有标准C中的比较运算都可以在Swift中使用. +所有标准C中的比较运算都可以在Swift中使用。 - 等于 `a == b` -- 不等于 `a != b` +- 不等于 `a!= b` - 大于 `a > b` - 小于 `a < b` - 大于等于 `a >= b` - 小于等于 `a <= b` -> 注意: +> 注意: +Swift也提供恒等`===`和不恒等`!==`这两个比较符来判断两个对象是否引用同一个对象实例。更多细节在[类与结构](09_Classes_and_Structures.html)。 -> Swift也提供恒等 `===` 和不恒等 `!==` 这两个比较符来判断两个对象是否引用同一个对象实例. 更多细节在 [类与结构](Classes and Structures). - -每个比较运算都返回了一个标识表达式是否成立的布尔值: +每个比较运算都返回了一个标识表达式是否成立的布尔值: ```swift 1 == 1 // true, 因为 1 等于 1 @@ -259,7 +254,7 @@ a += 2 // a 现在是 3 2 <= 1 // false, 因为 2 并不小于等于 1 ``` -比较运算多用于条件语句, 如 `if` 条件: +比较运算多用于条件语句,如`if`条件: ```swift let name = "world" @@ -271,13 +266,14 @@ if name == "world" { // 输出 "hello, world", 因为 `name` 就是等于 "world" ``` -关于 `if` 语句, 请看 [控制流](Control Flow). +关于`if`语句,请看[控制流](05_Control_Flow.html)。 -# 三目条件运算 + +## 三目条件运算 -三目条件运算的特殊在于它是有三个操作数的运算符, 它的原型是 `问题 ? 答案1 : 答案2`. 它简洁地表达根据 `问题` 成立与否作出二选一的操作. 如果 `问题` 成立, 返回 `答案1` 的结果; 如果不成立, 返回 `答案2` 的结果. +三目条件运算的特殊在于它是有三个操作数的运算符,它的原型是 `问题?答案1:答案2`。它简洁地表达根据 `问题` 成立与否作出二选一的操作。如果 `问题` 成立,返回 `答案1` 的结果; 如果不成立,返回 `答案2` 的结果。 -使用三目条件运算简化了以下代码: +使用三目条件运算简化了以下代码: ```swift if question: { @@ -288,7 +284,7 @@ else { } ``` -这里有个计算表格行高的例子. 如果有表头, 那行高应比内容高度要高出50像素; 如果没有表头, 只需高出20像素. +这里有个计算表格行高的例子。如果有表头,那行高应比内容高度要高出50像素; 如果没有表头,只需高出20像素。 ```swift let contentHeight = 40 @@ -297,7 +293,7 @@ let rowHeight = contentHeight + (hasHeader ? 50 : 20) // rowHeight 现在是 90 ``` -这样写会比下面的代码简洁: +这样写会比下面的代码简洁: ```swift let contentHeight = 40 @@ -311,18 +307,19 @@ if hasHeader { // rowHeight 现在是 90 ``` -第一段代码例子使用了三目条件运算, 所以一行代码就能让我们得到正确答案. 这比第二段代码简洁得多, 无需将 `rowHeight` 定义成变量, 因为它的值无需在 `if` 语句中改变. +第一段代码例子使用了三目条件运算,所以一行代码就能让我们得到正确答案。这比第二段代码简洁得多,无需将`rowHeight`定义成变量,因为它的值无需在`if`语句中改变。 -三目条件运算提供有效率且便捷的方式来表达二选一的选择. 需要注意的事, 过度使用三目条件运算就会由简洁的代码变成难懂的代码. 我们应避免在一个组合语句使用多个三目条件运算符. +三目条件运算提供有效率且便捷的方式来表达二选一的选择。需要注意的事,过度使用三目条件运算就会由简洁的代码变成难懂的代码。我们应避免在一个组合语句使用多个三目条件运算符。 -# 区间运算符 + +## 区间运算符 -Swift提供了两个方便表达一个区间的值的运算符. +Swift提供了两个方便表达一个区间的值的运算符。 -## 闭区间运算符 -闭区间运算符 `a...b` 定义一个包含从 `a` 到 `b` (包括 `a` 和 `b`)的所有值的区间. +### 闭区间运算符 +闭区间运算符`a...b`定义一个包含从`a`到`b`(包括`a`和`b`)的所有值的区间。 ‌ -闭区间运算符在迭代一个区间的所有值时是非常有用的, 如在 `for-in` 循环中: +闭区间运算符在迭代一个区间的所有值时是非常有用的,如在`for-in`循环中: ```swift for index in 1...5 { @@ -335,14 +332,14 @@ for index in 1...5 { // 5 * 5 = 25 ``` -关于 `for-in`, 请看 [控制流](Control Flow). +关于`for-in`,请看[控制流](05_Control_Flow.html)。 -## 半闭区间 +### 半闭区间 -半闭区间 `a..b` 定义一个从 `a` 到 `b` 但不包括 `b` 的区间. -之所以称为半闭区间, 是因为该区间包含第一个值而不包括最后的值. +半闭区间`a..b`定义一个从`a`到`b`但不包括`b`的区间。 +之所以称为半闭区间,是因为该区间包含第一个值而不包括最后的值。 -半闭区间的实用性在于当你使用一个0始的列表(如数组)时, 非常方便地从0数到列表的长度. +半闭区间的实用性在于当你使用一个0始的列表(如数组)时,非常方便地从0数到列表的长度。 ```swift let names = ["Anna", "Alex", "Brian", "Jack"] @@ -356,21 +353,23 @@ for i in 0..count { // 第 4 个人叫 Jack ``` -> 注意: 数组有4个元素, 但 `0..count` 只数到 3 (最后一个元素的下标), 因为它是半闭区间. 关于数组, 请查阅 [数组](Arrays). +> 注意: +数组有4个元素,但`0..count`只数到 3(最后一个元素的下标),因为它是半闭区间。关于数组,请查阅[数组](04_Collection_Types.html#arrays)。 -# 逻辑运算 + +## 逻辑运算 -逻辑运算的操作对象是逻辑布尔值. Swift支持基于C语言的三个标准逻辑运算. +逻辑运算的操作对象是逻辑布尔值。Swift支持基于C语言的三个标准逻辑运算。 -- 逻辑非 `!a` +- 逻辑非`!a` - 逻辑与 `a && b` - 逻辑或 `a || b` -## 逻辑非 +### 逻辑非 -逻辑非运算 `!a` 对一个布尔值取反, 使得 `true` 变 `false`, `false` 变 `true`. +逻辑非运算`!a`对一个布尔值取反,使得`true`变`false`,`false`变`true`。 -它是一个前置运算符, 需出现在操作数之前, 且不加空格. 读作 `非 a`, 然后我们看以下例子: +它是一个前置运算符,需出现在操作数之前,且不加空格。读作 `非 a`,然后我们看以下例子: ```swift let allowedEntry = false @@ -380,16 +379,16 @@ if !allowedEntry { // prints "ACCESS DENIED" ``` -`if !allowedEntry`语句可以读作 "如果 非 alowed entry.", 接下一行代码只有在如果 "非 allow entry" 为 `true`, 即 `allowEntry` 为 `false` 时被执行. +`if!allowedEntry`语句可以读作 "如果 非 alowed entry。",接下一行代码只有在如果 "非 allow entry" 为`true`,即`allowEntry`为`false`时被执行。 -在示例代码中, 小心地选择布尔常量或变量有助于代码的可读性, 并且避免使用双重逻辑非运算, 或混乱的逻辑语句. +在示例代码中,小心地选择布尔常量或变量有助于代码的可读性,并且避免使用双重逻辑非运算,或混乱的逻辑语句。 -## 逻辑与 -逻辑与 `a && b` 表达了只有 `a` 和 `b` 的值都为 `true` 时, 整个表达式的值才会是 `true` . +### 逻辑与 +逻辑与 `a && b` 表达了只有`a`和`b`的值都为`true`时,整个表达式的值才会是`true`。 -只要任意一个值为 `false`, 整个表达式的值就为 `false`. 事实上, 如果第一个值为 `false`, 那么是不去计算第二个值的, 因为它已经不可能影响整个表达式的结果了. 这被称做 "短路计算". +只要任意一个值为`false`,整个表达式的值就为`false`。事实上,如果第一个值为`false`,那么是不去计算第二个值的,因为它已经不可能影响整个表达式的结果了。这被称做 "短路计算"。 -以下例子, 只有两个值都为值的时候才允许进入: +以下例子,只有两个值都为值的时候才允许进入: ```swift let enteredDoorCode = true @@ -402,12 +401,12 @@ if enteredDoorCode && passedRetinaScan { // 输出 "ACCESS DENIED ``` -## 逻辑或 -逻辑或 `a || b` 是一个由两个连续的 `|` 组成的中置运算符. 它表示了两个逻辑表达式的其中一个为 `true`, 整个表达式就为 `true`. +### 逻辑或 +逻辑或 `a || b` 是一个由两个连续的`|`组成的中置运算符。它表示了两个逻辑表达式的其中一个为`true`,整个表达式就为`true`。 -同逻辑与运算类似, 逻辑或也是"短路计算"的, 当左端的表达式为 `true` 时, 将不计算右边的表达式了, 因为它不可能改变整个表达式的值了. +同逻辑与运算类似,逻辑或也是"短路计算"的,当左端的表达式为`true`时,将不计算右边的表达式了,因为它不可能改变整个表达式的值了。 -以下示例代码中, 第一个布尔值 `hasDoorKey` 为 `false`, 但第二个值 `knowsOverridePassword` 为 `true`, 所以整个表达是 `true`, 于是允许进入: +以下示例代码中,第一个布尔值`hasDoorKey`为`false`,但第二个值`knowsOverridePassword`为`true`,所以整个表达是`true`,于是允许进入: ```swift let hasDoorKey = false @@ -420,9 +419,9 @@ if hasDoorKey || knowsOverridePassword { // 输出 "Welcome!" ``` -## 组合逻辑 +### 组合逻辑 -我们可以组合多个逻辑运算来表达一个复合逻辑: +我们可以组合多个逻辑运算来表达一个复合逻辑: ```swift if enteredDoorCode && passedRetinaScan || hasDoorKey || knowsOverridePassword { @@ -433,15 +432,15 @@ if enteredDoorCode && passedRetinaScan || hasDoorKey || knowsOverridePassword { // 输出 "Welcome!" ``` -这个例子使用了含多个 `&&` 和 `||` 的复合逻辑. 但无论怎样, `&&` 和 `||` 始终只能操作两个值. 所以这实际是三个简单逻辑连续操作的结果. 我们来解读一下: +这个例子使用了含多个`&&`和`||`的复合逻辑。但无论怎样,`&&`和`||`始终只能操作两个值。所以这实际是三个简单逻辑连续操作的结果。我们来解读一下: -如果我们输入了正确的密码并通过了视网膜扫描; 或者我们有一把有效的钥匙; 又或者我们知道紧急情况下重置的密码, 我们就能把门打开进入. +如果我们输入了正确的密码并通过了视网膜扫描; 或者我们有一把有效的钥匙; 又或者我们知道紧急情况下重置的密码,我们就能把门打开进入。 -前两种情况, 我们都不满足, 所以前两个简单逻辑的结果是 `false`, 但是我们是知道紧急情况下重置的密码的, 所以整个复杂表达式的值还是 `true`. +前两种情况,我们都不满足,所以前两个简单逻辑的结果是`false`,但是我们是知道紧急情况下重置的密码的,所以整个复杂表达式的值还是`true`。 -## 使用括号来明确优先级 +### 使用括号来明确优先级 -为了一个复杂表达式更容易读懂, 在合适的地方使用括号来明确优先级是很有效的, 虽然它并非必要的. 在上个关于门的权限的例子中, 我们给第一个部分加个括号, 使用它看起来逻辑更明确. +为了一个复杂表达式更容易读懂,在合适的地方使用括号来明确优先级是很有效的,虽然它并非必要的。在上个关于门的权限的例子中,我们给第一个部分加个括号,使用它看起来逻辑更明确。 ```swift if (enteredDoorCode && passedRetinaScan) || hasDoorKey || knowsOverridePassword { @@ -452,6 +451,6 @@ if (enteredDoorCode && passedRetinaScan) || hasDoorKey || knowsOverridePassword // prints "Welcome!" ``` -这括号使得前两个值被看成整个逻辑表达中独立的一个部分. 虽然有括号和没括号的输出结果是一样的, 但对于读代码的人来说有括号的代码更清晰. +这括号使得前两个值被看成整个逻辑表达中独立的一个部分。虽然有括号和没括号的输出结果是一样的,但对于读代码的人来说有括号的代码更清晰。 -可读性比简洁性更重要, 请在可以让你代码变清晰地地方加个括号吧! +可读性比简洁性更重要,请在可以让你代码变清晰地地方加个括号吧! diff --git a/source/chapter2/23_Advanced_Operators.md b/source/chapter2/23_Advanced_Operators.md index 79712724..4fa43477 100644 --- a/source/chapter2/23_Advanced_Operators.md +++ b/source/chapter2/23_Advanced_Operators.md @@ -1,44 +1,56 @@ +# 高级运算符 +----------------- + +本页内容包括: + +- [位运算符](#bitwise_operators) +- [溢出运算符](#overflow_operators) +- [优先级和结合性(Precedence and Associativity)](#precedence_and_associativity) +- [运算符函数(Operator Functions)](#operator_functions) +- [自定义运算符](#custom_operators) + In addition to the operators described in [Basic Operators](Basic Operators), Swift provides several advanced operators that perform more complex value manipulation. These include all of the bitwise and bit shifting operators you will be familiar with from C and Objective-C. -除于[基本操作符](Basic Operators)中所讲的运算符, Swift还有许多复杂的高级运算符, 包括了C语和Objective-C中的位运算符和位移运算. +除了[基本操作符](02_Basic_Operators.html)中所讲的运算符,Swift还有许多复杂的高级运算符,包括了C语和Objective-C中的位运算符和移位运算。 Unlike arithmetic operators in C, arithmetic operators in Swift do not overflow by default. Overflow behavior is trapped and reported as an error. To opt in to overflow behavior, use Swift’s second set of arithmetic operators that overflow by default, such as the overflow addition operator (&+). All of these overflow operators begin with an ampersand (&). -不同于C语言中的数值计算, Swift的数值计算默认是不可溢出的. 溢出行为会被捕获并报告为错误. 你是故意的? 好吧, 你可以使用Swift为你准备的另一套默认允许溢出的数值运算符, 如可溢出加 `&+`. 所有允许溢出的运算符都是以 `&` 开始的. +不同于C语言中的数值计算,Swift的数值计算默认是不可溢出的。溢出行为会被捕获并报告为错误。你是故意的?好吧,你可以使用Swift为你准备的另一套默认允许溢出的数值运算符,如可溢出加`&+`。所有允许溢出的运算符都是以`&`开始的。 When you define your own structures, classes, and enumerations, it can be useful to provide your own implementations of the standard Swift operators for these custom types. Swift makes it easy to provide tailored implementations of these operators and to determine exactly what their behavior should be for each type you create. -自定义的结构, 类和枚举, 是否可以使用标准的运算符来定义操作? 当然可以, 在Swift中, 你可以对你创建的类型定制运算符的行为. +自定义的结构,类和枚举,是否可以使用标准的运算符来定义操作?当然可以!在Swift中,你可以为你创建的所有类型定制运算符的操作。 You’re not just limited to the predefined operators. Swift gives you the freedom to define your own custom infix, prefix, postfix, and assignment operators, with custom precedence and associativity values. These operators can be used and adopted in your code just like any of the predefined operators, and you can even extend existing types to support the custom operators you define. -可定制的运算符并不限于那些预设的运算符, 也创建个性的中置, 前置,后置,还有赋值运算符, 当然优先级和结合性也是可以自定义的. 这些运算符的实现可以使用预设的运算符, 也可以使用已定制好的运算符. +可定制的运算符并不限于那些预设的运算符,自定义有个性的中置,前置,后置及赋值运算符,当然还有优先级和结合性。这些运算符的实现可以运用预设的运算符,也可以运用之前定制的运算符。 -# Bitwise Operators +## Bitwise Operators -# 位运算符 + +## 位运算符 Bitwise operators enable you to manipulate the individual raw data bits within a data structure. They are often used in low-level programming, such as graphics programming and device driver creation. Bitwise operators can also be useful when you work with raw data from external sources, such as encoding and decoding data for communication over a custom protocol. -位操作符通常在诸如图像处理和创建设备驱动等底层开发中使用, 使用它可以操作数据结构中原始数据中的个别比特. 当然, 使用一个自定的协议进行通信的时候, 使用位运算符来对原始数据进行编码和解码也是非常有效的. +位操作符通常在诸如图像处理和创建设备驱动等底层开发中使用,使用它可以单独操作数据结构中原始数据的比特位。在使用一个自定义的协议进行通信的时候,运用位运算符来对原始数据进行编码和解码也是非常有效的。 Swift supports all of the bitwise operators found in C, as described below. -Swift支持所有C语言的位运算符, 如下描述: +Swift支持如下所有C语言的位运算符: -## Bitwise NOT Operator +### Bitwise NOT Operator -## 按位取反运算符 +### 按位取反运算符 The bitwise NOT operator (~) inverts all bits in a number: -按位取反运算符 `~` 对一个操作数的每一位都取反. +按位取反运算符`~`对一个操作数的每一位都取反。 ![Art/bitwiseNOT_2x.png](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/Art/bitwiseNOT_2x.png "Art/bitwiseNOT_2x.png") The bitwise NOT operator is a prefix operator, and appears immediately before the value it operates on, without any white space: -这个运算符是前置, 所以请不加任何空格地写着操作数之前. +这个运算符是前置的,所以请不加任何空格地写着操作数之前。 ``` let initialBits: UInt8 = 0b00001111 @@ -47,25 +59,25 @@ let invertedBits = ~initialBits // 等于 0b11110000 UInt8 integers have eight bits and can store any value between 0 and 255. This example initializes a UInt8 integer with the binary value 00001111, which has its first four bits set to 0, and its second four bits set to 1. This is equivalent to a decimal value of 15. -`UInt8` 整型是8位的, 可以储存0~255之间的任意数. 这个例子初始化一个整型为二进制值 `00001111`(前4位为 `0`, 后4位为 `1`), 它的十进制值为 `15`. +`UInt8`是8位无符整型,可以存储0~255之间的任意数。这个例子初始化一个整型为二进制值`00001111`(前4位为`0`,后4位为`1`),它的十进制值为`15`。 The bitwise NOT operator is then used to create a new constant called invertedBits, which is equal to initialBits, but with all of the bits inverted. Zeroes become ones, and ones become zeroes. The value of invertedBits is 11110000, which is equal to an unsigned decimal value of 240. -使用按位取反运算 `~` 对 `initialBits` 操作, 然后赋值给 `invertedBits` 这个新常量. 这个新常量的值等于所有位都取反的`initialBits`, 即 `1` 变成 `0`, `0` 变成 `1`, 变成了 `11110000`, 十进制值为 `240`. +使用按位取反运算`~`对`initialBits`操作,然后赋值给`invertedBits`这个新常量。这个新常量的值等于所有位都取反的`initialBits`,即`1`变成`0`,`0`变成`1`,变成了`11110000`,十进制值为`240`。 -## Bitwise AND Operator +### Bitwise AND Operator -## 按位与运算符 +### 按位与运算符 The bitwise AND operator (&) combines the bits of two numbers. It returns a new number whose bits are set to 1 only if the bits were equal to 1 in both input numbers: -按位与运算符对两个数进行操作, 然后返回一个新的数, 这个数的每个位都需两个输入数的同一位都为1的时候才为1. +按位与运算符对两个数进行操作,然后返回一个新的数,这个数的每个位都需要两个输入数的同一位都为1时才为1。 ![Art/bitwiseAND_2x.png](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/Art/bitwiseAND_2x.png "Art/bitwiseAND_2x.png") In the example below, the values of firstSixBits and lastSixBits both have four middle bits equal to 1. The bitwise AND operator combines them to make the number 00111100, which is equal to an unsigned decimal value of 60: -如下代码, `firstSixBits` 和 `lastSixBits` 中间4个位都为1. 对它俩进行按位与运算后, 就得到了 `00111100`, 即十进制的 `60`. +以下代码,`firstSixBits`和`lastSixBits`中间4个位都为1。对它俩进行按位与运算后,就得到了`00111100`,即十进制的`60`。 ``` let firstSixBits: UInt8 = 0b11111100 @@ -73,19 +85,19 @@ let lastSixBits: UInt8 = 0b00111111 let middleFourBits = firstSixBits & lastSixBits // 等于 00111100 ``` -## Bitwise OR Operator +### Bitwise OR Operator -## 按位或运算 +### 按位或运算 The bitwise OR operator (|) compares the bits of two numbers. The operator returns a new number whose bits are set to 1 if the bits are equal to 1 in either input number: -按位或运算符 `|` 比较两个数, 然后返回一个新的数, 这个数的每一位设置1的条件是两个输入数的同一位都不为0(即任意一个为1, 或都为1). +按位或运算符`|`比较两个数,然后返回一个新的数,这个数的每一位设置1的条件是两个输入数的同一位都不为0(即任意一个为1,或都为1)。 ![Art/bitwiseOR_2x.png](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/Art/bitwiseOR_2x.png "Art/bitwiseOR_2x.png") In the example below, the values of someBits and moreBits have different bits set to 1. The bitwise OR operator combines them to make the number 11111110, which equals an unsigned decimal of 254: -如下代码, `someBits` 和 `moreBits` 在不同位上有 `1`. 按位或运行的结果是 `11111110`, 即十进制的 `254`. +如下代码,`someBits`和`moreBits`在不同位上有`1`。按位或运行的结果是`11111110`,即十进制的`254`。 ``` let someBits: UInt8 = 0b10110010 @@ -93,19 +105,19 @@ let moreBits: UInt8 = 0b01011110 let combinedbits = someBits | moreBits // 等于 11111110 ``` -## Bitwise XOR Operator +### Bitwise XOR Operator -## 按位异或运算符 +### 按位异或运算符 The bitwise XOR operator, or “exclusive OR operator” (^), compares the bits of two numbers. The operator returns a new number whose bits are set to 1 where the input bits are different and are set to 0 where the input bits are the same: -按位异或运算符 `^` 比较两个数, 然后返回一个数, 这个数的每个位设为 `1`的条件是两个输入数的同一位不同, 如果相同就设为 `0`. +按位异或运算符`^`比较两个数,然后返回一个数,这个数的每个位设为`1`的条件是两个输入数的同一位不同,如果相同就设为`0`。 ![Art/bitwiseXOR_2x.png](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/Art/bitwiseXOR_2x.png "Art/bitwiseXOR_2x.png") In the example below, the values of firstBits and otherBits each have a bit set to 1 in a location that the other does not. The bitwise XOR operator sets both of these bits to 1 in its output value. All of the other bits in firstBits and otherBits match and are set to 0 in the output value: -以下代码, `firstBits` 和 `otherBits` 都有一个 `1` 跟另一个数不同的. 所以按位异或的结果是把它这些位置为 `1`, 其他都置为 `0`. +以下代码,`firstBits`和`otherBits`都有一个`1`跟另一个数不同的。所以按位异或的结果是把它这些位置为`1`,其他都置为`0`。 ``` let firstBits: UInt8 = 0b00010100 @@ -113,33 +125,33 @@ let otherBits: UInt8 = 0b00000101 let outputBits = firstBits ^ otherBits // 等于 00010001 ``` -## Bitwise Left and Right Shift Operators -## 按位左移/右移运算符 +### Bitwise Left and Right Shift Operators +### 按位左移/右移运算符 The bitwise left shift operator (<<) and bitwise right shift operator (>>) move all bits in a number to the left or the right by a certain number of places, according to the rules defined below. -左移运算符 `<<` 和右移运算符 `>>` 会把一个数的所有比特位按以下定义的规则向左或向右移动指定位数. +左移运算符`<<`和右移运算符`>>`会把一个数的所有比特位按以下定义的规则向左或向右移动指定位数。 Bitwise left and right shifts have the effect of multiplying or dividing an integer number by a factor of two. Shifting an integer’s bits to the left by one position doubles its value, whereas shifting it to the right by one position halves its value. -按位左移和按位右移的效果相当把一个整数乘于或除于一个因子为 `2` 的整数. 向左移动一个整型的比特位相当于把这个数乘于 `2`, 向右移一位就是除于 `2`. +按位左移和按位右移的效果相当把一个整数乘于或除于一个因子为`2`的整数。向左移动一个整型的比特位相当于把这个数乘于`2`,向右移一位就是除于`2`。 -### Shifting Behavior for Unsigned Integers -### 对无符整型进行移位 +#### Shifting Behavior for Unsigned Integers +#### 无符整型的移位操作 The bit-shifting behavior for unsigned integers is as follows: -对无符整型的移位的效果如下: +对无符整型的移位的效果如下: Existing bits are moved to the left or right by the requested number of places. Any bits that are moved beyond the bounds of the integer’s storage are discarded. Zeroes are inserted in the spaces left behind after the original bits are moved to the left or right. This approach is known as a logical shift. -已经存在的比特位向左或向右移动指定的位数. 被移出整型存储边界的的位数直接抛弃, 移动留下的空白位用零 `0` 来填充. 这种方法称为逻辑移位. +已经存在的比特位向左或向右移动指定的位数。被移出整型存储边界的的位数直接抛弃,移动留下的空白位用零`0`来填充。这种方法称为逻辑移位。 The illustration below shows the results of 11111111 << 1 (which is 11111111 shifted to the left by 1 place), and 11111111 >> 1 (which is 11111111 shifted to the right by 1 place). Blue numbers are shifted, gray numbers are discarded, and orange zeroes are inserted: -以下这张把展示了 `11111111 << 1` (`11111111` 向左移1位), 和 `11111111 << 1` (`11111111` 向右移1位). 蓝色的是被移位的, 灰色是被抛弃的, 橙色的 `0` 是被填充进来的. +以下这张把展示了 `11111111 << 1`(`11111111`向左移1位),和 `11111111 >> 1`(`11111111`向右移1位)。蓝色的是被移位的,灰色是被抛弃的,橙色的`0`是被填充进来的。 ![Art/bitshiftUnsigned_2x.png](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/Art/bitshiftUnsigned_2x.png "Art/bitshiftUnsigned_2x.png") Here’s how bit shifting looks in Swift code: @@ -154,7 +166,7 @@ shiftBits >> 2 // 00000001 ``` You can use bit shifting to encode and decode values within other data types: -你可以使用移位操作进行其他数据类型的编码和解码. +你可以使用移位操作进行其他数据类型的编码和解码。 ``` let pink: UInt32 = 0xCC6699 @@ -165,127 +177,192 @@ let blueComponent = pink & 0x0000FF // blueComponent 是 0x99, 即 153 This example uses a UInt32 constant called pink to store a Cascading Style Sheets color value for the color pink. The CSS color value #CC6699 is written as 0xCC6699 in Swift’s hexadecimal number representation. This color is then decomposed into its red (CC), green (66), and blue (99) components by the bitwise AND operator (&) and the bitwise right shift operator (>>). -这个例子使用了一个 `UInt32` 的命名为 `pink`的常量来储存层叠样式表 `CSS` 中粉色的颜色值, `CSS`颜色`#CC6699`在Swift用十六进制`0xCC6699`来表示. 然后使用按位与(&)和按位右移就可以从这个颜色值中解析出红(CC), 绿(66), 蓝(99)三个部分. +这个例子使用了一个`UInt32`的命名为`pink`的常量来存储层叠样式表`CSS`中粉色的颜色值,`CSS`颜色`#CC6699`在Swift用十六进制`0xCC6699`来表示。然后使用按位与(&)和按位右移就可以从这个颜色值中解析出红(CC),绿(66),蓝(99)三个部分。 The red component is obtained by performing a bitwise AND between the numbers 0xCC6699 and 0xFF0000. The zeroes in 0xFF0000 effectively “mask” the second and third bytes of 0xCC6699, causing the 6699 to be ignored and leaving 0xCC0000 as the result. -对 `0xCC6699` 和 `0xFF0000` 进行按位与 `&` 操作就可以得到红色部分. `0xFF0000` 中的 `0` 了遮盖了 `OxCC6699` 的第二和第三个字节, 这样 `6699` 被忽略了, 只留下 `0xCC0000`. +对`0xCC6699`和`0xFF0000`进行按位与`&`操作就可以得到红色部分。`0xFF0000`中的`0`了遮盖了`OxCC6699`的第二和第三个字节,这样`6699`被忽略了,只留下`0xCC0000`。 This number is then shifted 16 places to the right (>> 16). Each pair of characters in a hexadecimal number uses 8 bits, so a move 16 places to the right will convert 0xCC0000 into 0x0000CC. This is the same as 0xCC, which has a decimal value of 204. -然后, 按向右移动16位, 即 `>> 16`. 十六进制中每两个字符是8比特位, 所以移动16位的结果是把 `0xCC0000` 变成 `0x0000CC`. 这和 `0xCC` 是相等的, 都是十进制的 `204`. +然后,按向右移动16位,即 `>> 16`。十六进制中每两个字符是8比特位,所以移动16位的结果是把`0xCC0000`变成`0x0000CC`。这和`0xCC`是相等的,都是十进制的`204`。 Similarly, the green component is obtained by performing a bitwise AND between the numbers 0xCC6699 and 0x00FF00, which gives an output value of 0x006600. This output value is then shifted eight places to the right, giving a a value of 0x66, which has a decimal value of 102. -同样的, 绿色部分来自于 `0xCC6699` 和 `0x00FF00` 的按位操作得到 `0x006600`. 然后向右移动8們, 得到 `0x66`, 即十进制的 `102`. +同样的,绿色部分来自于`0xCC6699`和`0x00FF00`的按位操作得到`0x006600`。然后向右移动8們,得到`0x66`,即十进制的`102`。 Finally, the blue component is obtained by performing a bitwise AND between the numbers 0xCC6699 and 0x0000FF, which gives an output value of 0x000099. There’s no need to shift this to the right, as 0x000099 already equals 0x99, which has a decimal value of 153. -最后, 蓝色部分对 `0xCC6699` 和 `0x0000FF` 进行按位与运算, 得到 `0x000099`, 无需向右移位了, 所以结果就是 `0x99`, 即十进制的 `153`. +最后,蓝色部分对`0xCC6699`和`0x0000FF`进行按位与运算,得到`0x000099`,无需向右移位了,所以结果就是`0x99`,即十进制的`153`。 -### Shifting Behavior for Signed Integers +#### Shifting Behavior for Signed Integers +#### 有符整型的移位操作 The shifting behavior is more complex for signed integers than for unsigned integers, because of the way signed integers are represented in binary. (The examples below are based on 8-bit signed integers for simplicity, but the same principles apply for signed integers of any size.) +有符整型的移位操作相对复杂得多,因为正负号也是用二进制位表示的。(这里举的例子虽然都是8位的,但它的原理是通用的。) + Signed integers use their first bit (known as the sign bit) to indicate whether the integer is positive or negative. A sign bit of 0 means positive, and a sign bit of 1 means negative. +有符整型通过第1个比特位(称为符号位)来表达这个整数是正数还是负数。`0`代表正数,`1`代表负数。 + The remaining bits (known as the value bits) store the actual value. Positive numbers are stored in exactly the same way as for unsigned integers, counting upwards from 0. Here’s how the bits inside an Int8 look for the number 4: +其余的比特位(称为数值位)存储其实值。有符正整数和无符正整数在计算机里的存储结果是一样的,下来我们来看`+4`内部的二进制结构。 + ![Art/bitshiftSignedFour_2x.png](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/Art/bitshiftSignedFour_2x.png "Art/bitshiftSignedFour_2x.png") + The sign bit is 0 (meaning “positive”), and the seven value bits are just the number 4, written in binary notation. +符号位为`0`,代表正数,另外7比特位二进制表示的实际值就刚好是`4`。 + Negative numbers, however, are stored differently. They are stored by subtracting their absolute value from 2 to the power of n, where n is the number of value bits. An eight-bit number has seven value bits, so this means 2 to the power of 7, or 128. +负数呢,跟正数不同。负数存储的是2的n次方减去它的绝对值,n为数值位的位数。一个8比特的数有7个数值位,所以是2的7次方,即128。 + Here’s how the bits inside an Int8 look for the number -4: +我们来看`-4`存储的二进制结构。 + ![Art/bitshiftSignedMinusFour_2x.png](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/Art/bitshiftSignedMinusFour_2x.png "Art/bitshiftSignedMinusFour_2x.png") + This time, the sign bit is 1 (meaning “negative”), and the seven value bits have a binary value of 124 (which is 128 - 4): +现在符号位为`1`,代表负数,7个数值位要表达的二进制值是124,即128 - 4。 + ![Art/bitshiftSignedMinusFourValue_2x.png](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/Art/bitshiftSignedMinusFourValue_2x.png "Art/bitshiftSignedMinusFourValue_2x.png") + The encoding for negative numbers is known as a two’s complement representation. It may seem an unusual way to represent negative numbers, but it has several advantages. +负数的编码方式称为二进制补码表示。这种表示方式看起来很奇怪,但它有几个优点。 + First, you can add -1 to -4, simply by performing a standard binary addition of all eight bits (including the sign bit), and discarding anything that doesn’t fit in the eight bits once you’re done: +首先,只需要对全部8个比特位(包括符号)做标准的二进制加法就可以完成 `-1 + -4` 的操作,忽略加法过程产生的超过8个比特位表达的任何信息。 + ![Art/bitshiftSignedAddition_2x.png](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/Art/bitshiftSignedAddition_2x.png "Art/bitshiftSignedAddition_2x.png") + Second, the two’s complement representation also lets you shift the bits of negative numbers to the left and right like positive numbers, and still end up doubling them for every shift you make to the left, or halving them for every shift you make to the right. To achieve this, an extra rule is used when signed integers are shifted to the right: +第二,由于使用二进制补码表示,我们可以和正数一样对负数进行按位左移右移的,同样也是左移1位时乘于`2`,右移1位时除于`2`。要达到此目的,对有符整型的右移有一个特别的要求: + When you shift signed integers to the right, apply the same rules as for unsigned integers, but fill any empty bits on the left with the sign bit, rather than with a zero. + +对有符整型按位右移时,使用符号位(正数为`0`,负数为`1`)填充空白位。 + ![Art/bitshiftSigned_2x.png](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/Art/bitshiftSigned_2x.png "Art/bitshiftSigned_2x.png") + + This action ensures that signed integers have the same sign after they are shifted to the right, and is known as an arithmetic shift. +这就确保了在右移的过程中,有符整型的符号不会发生变化。这称为算术移位。 + Because of the special way that positive and negative numbers are stored, shifting either of them to the right moves them closer to zero. Keeping the sign bit the same during this shift means that negative integers remain negative as their value moves closer to zero. -# Overflow Operators +正因为正数和负数特殊的存储方式,向右移位使它接近于`0`。移位过程中保持符号会不变,负数在接近`0`的过程中一直是负数。 + +## Overflow Operators + + +## 溢出运算符 If you try to insert a number into an integer constant or variable that cannot hold that value, by default Swift reports an error rather than allowing an invalid value to be created. This behavior gives extra safety when you work with numbers that are too large or too small. +默认情况下,当你往一个整型常量或变量赋于一个它不能承载的大数时,Swift不会让你这么干的,它会报错。这样,在操作过大或过小的数的时候就很安全了。 + For example, the Int16 integer type can hold any signed integer number between -32768 and 32767. Trying to set a UInt16 constant or variable to a number outside of this range causes an error: +例如,`Int16`整型能承载的整数范围是`-32768`到`32767`,如果给它赋上超过这个范围的数,就会报错: + ``` var potentialOverflow = Int16.max -// potentialOverflow equals 32767, which is the largest value an Int16 can hold +// potentialOverflow 等于 32767, 这是 Int16 能承载的最大整数 potentialOverflow += 1 -// this causes an error +// 噢, 出错了 ``` Providing error handling when values get too large or too small gives you much more flexibility when coding for boundary value conditions. +对过大或过小的数值进行错误处理让你的数值边界条件更灵活。 + However, when you specifically want an overflow condition to truncate the number of available bits, you can opt in to this behavior rather than triggering an error. Swift provides five arithmetic overflow operators that opt in to the overflow behavior for integer calculations. These operators all begin with an ampersand (&): -- Overflow addition (&+) -- Overflow subtraction (&-) -- Overflow multiplication (&*) -- Overflow division (&/) -- Overflow remainder (&%) +当然,你有意在溢出时对有效位进行截断,你可采用溢出运算,而非错误处理。Swfit为整型计算提供了5个`&`符号开头的溢出运算符。 -## Value Overflow +- 溢出加法 `&+` +- 溢出减法 `&-` +- 溢出乘法 `&*` +- 溢出除法 `&/` +- 溢出求余 `&%` + +### Value Overflow +### 值的上溢出 Here’s an example of what happens when an unsigned value is allowed to overflow, using the overflow addition operator (&+): +下面例子使用了溢出加法`&+`来解剖的无符整数的上溢出 + ``` var willOverflow = UInt8.max -// willOverflow equals 255, which is the largest value a UInt8 can hold +// willOverflow 等于UInt8的最大整数 255 willOverflow = willOverflow &+ 1 -// willOverflow is now equal to 0 +// 这时候 willOverflow 等于 0 ``` The variable willOverflow is initialized with the largest value a UInt8 can hold (255, or 11111111 in binary). It is then incremented by 1 using the overflow addition operator (&+). This pushes its binary representation just over the size that a UInt8 can hold, causing it to overflow beyond its bounds, as shown in the diagram below. The value that remains within the bounds of the UInt8 after the overflow addition is 00000000, or zero: +`willOverflow`用`Int8`所能承载的最大值`255`(二进制`11111111`),然后用`&+`加1。然后`UInt8`就无法表达这个新值的二进制了,也就导致了这个新值上溢出了,大家可以看下图。溢出后,新值在`UInt8`的承载范围内的那部分是`00000000`,也就是`0`。 + ![Art/overflowAddition_2x.png](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/Art/overflowAddition_2x.png "Art/overflowAddition_2x.png") -Value Underflow + +### Value Underflow +### 值的下溢出 Numbers can also become too small to fit in their type’s maximum bounds. Here’s an example. +数值也有可能因为太小而越界。举个例子: The smallest value that a UInt8 can hold is 0 (which is 00000000 in eight-bit binary form). If you subtract 1 from 00000000 using the overflow subtraction operator, the number will overflow back round to 11111111, or 255 in decimal: +`UInt8`的最小值是`0`(二进制为`00000000`)。使用`&-`进行溢出减1,就会得到二进制的`11111111`即十进制的`255`。 + ![Art/overflowUnsignedSubtraction_2x.png](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/Art/overflowUnsignedSubtraction_2x.png "Art/overflowUnsignedSubtraction_2x.png") + + Here’s how that looks in Swift code: +Swift代码是这样的: ``` var willUnderflow = UInt8.min -// willUnderflow equals 0, which is the smallest value a UInt8 can hold +// willUnderflow 等于UInt8的最小值0 willUnderflow = willUnderflow &- 1 -// willUnderflow is now equal to 255 +// 此时 willUnderflow 等于 255 ``` A similar underflow occurs for signed integers. All subtraction for signed integers is performed as straight binary subtraction, with the sign bit included as part of the numbers being subtracted, as described in Bitwise Left and Right Shift Operators. The smallest number that an Int8 can hold is -128, which is 10000000 in binary. Subtracting 1 from this binary number with the overflow operator gives a binary value of 01111111, which toggles the sign bit and gives positive 127, the largest positive value that an Int8 can hold: +有符整型也有类似的下溢出,有符整型所有的减法也都是对包括在符号位在内的二进制数进行二进制减法的,这在 "按位左移/右移运算符" 一节提到过。最小的有符整数是`-128`,即二进制的`10000000`。用溢出减法减去去1后,变成了`01111111`,即UInt8所能承载的最大整数`127`。 + ![Art/overflowSignedSubtraction_2x.png](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/Art/overflowSignedSubtraction_2x.png "Art/overflowSignedSubtraction_2x.png") Here’s the same thing in Swift code: +来看看Swift代码: + ``` var signedUnderflow = Int8.min -// signedUnderflow equals -128, which is the smallest value an Int8 can hold +// signedUnderflow 等于最小的有符整数 -128 signedUnderflow = signedUnderflow &- 1 -// signedUnderflow is now equal to 127 +// 如今 signedUnderflow 等于 127 ``` The end result of the overflow and underflow behavior described above is that for both signed and unsigned integers, overflow always wraps around from the largest valid integer value back to the smallest, and underflow always wraps around from the smallest value to the largest. -## Division by Zero +### Division by Zero +### 除零溢出 -Dividing a number by zero (i / 0), or trying to calculate remainder by zero (i % 0), causes an error: +Dividing a number by zero(i / 0), or trying to calculate remainder by zero(i % 0), causes an error: + +一个数除于0 `i / 0`,或者对0求余数 `i % 0`,就会产生一个错误。 ``` let x = 1 @@ -294,45 +371,69 @@ let y = x / 0 However, the overflow versions of these operators (&/ and &%) return a value of zero if you divide by zero: +使用它们对应的可溢出的版本的运算符`&/`和`&%`进行除0操作时就会得到`0`值。 + ``` let x = 1 let y = x &/ 0 -// y is equal to 0 +// y 等于 0 ``` -# Precedence and Associativity +## Precedence and Associativity + + +## 优先级和结合性 Operator precedence gives some operators higher priority than others; these operators are calculated first. +运算符的优先级使得一些运算符优先于其他运算符,高优先级的运算符会先被计算。 + Operator associativity defines how operators of the same precedence are grouped together (or associated)—either grouped from the left, or grouped from the right. Think of it as meaning “they associate with the expression to their left,” or “they associate with the expression to their right.” +结合性定义相同优先级的运算符在一起时是怎么组合或关联的,是和左边的一组呢,还是和右边的一组。意思就是,到底是和左边的表达式结合呢,还是和右边的表达式结合? + It is important to consider each operator’s precedence and associativity when working out the order in which a compound expression will be calculated. Here’s an example. Why does the following expression equal 4? +在混合表达式中,运算符的优先级和结合性是非常重要的。举个例子,为什么下列表达式的结果为`4`? + ``` 2 + 3 * 4 % 5 -// this equals 4 +// 结果是 4 ``` Taken strictly from left to right, you might expect this to read as follows: -2 plus 3 equals 5; -5 times 4 equals 20; -20 remainder 5 equals 0 +如果严格地从左计算到右,计算过程会是这样: + +- 2 plus 3 equals 5; +- 2 + 3 = 5 +- 5 times 4 equals 20; +- 5 * 4 = 20 +- 20 remainder 5 equals 0 +- 20 / 5 = 4 余 0 + However, the actual answer is 4, not 0. Higher-precedence operators are evaluated before lower-precedence ones. In Swift, as in C, the multiplication operator (*) and the remainder operator (%) have a higher precedence than the addition operator (+). As a result, they are both evaluated before the addition is considered. +但是正确答案是`4`而不是`0`。优先级高的运算符要先计算,在Swift和C语言中,都是先乘除后加减的。所以,执行完乘法和求余运算才能执行加减运算。 + However, multiplication and remainder have the same precedence as each other. To work out the exact evaluation order to use, you also need to consider their associativity. Multiplication and remainder both associate with the expression to their left. Think of this as adding implicit parentheses around these parts of the expression, starting from their left: +乘法和求余拥有相同的优先级,在运算过程中,我们还需要结合性,乘法和求余运算都是左结合的。这相当于在表达式中有隐藏的括号让运算从左开始。 + ``` 2 + ((3 * 4) % 5) ``` (3 * 4) is 12, so this is equivalent to: +3 * 4 = 12,所以这相当于: + ``` 2 + (12 % 5) ``` (12 % 5) is 2, so this is equivalent to: +12 % 5 = 2,所这又相当于 ``` 2 + 2 @@ -340,139 +441,253 @@ However, multiplication and remainder have the same precedence as each other. To This calculation yields the final answer of 4. -For a complete list of Swift operator precedences and associativity rules, see Expressions. +计算结果为 4。 + +For a complete list of Swift operator precedences and associativity rules, see [Expressions](Expressions). + +查阅Swift运算符的优先级和结合性的完整列表,请看[表达式](../chapter3/04_Expressions.html)。 > NOTE > Swift’s operator precedences and associativity rules are simpler and more predictable than those found in C and Objective-C. However, this means that they are not the same as in C-based languages. Be careful to ensure that operator interactions still behave in the way you intend when porting existing code to Swift. -Operator Functions +> 注意: +Swift的运算符较C语言和Objective-C来得更简单和保守,这意味着跟基于C的语言可能不一样。所以,在移植已有代码到Swift时,注意去确保代码按你想的那样去执行。 + +## Operator Functions + + +## 运算符函数 Classes and structures can provide their own implementations of existing operators. This is known as overloading the existing operators. +让已有的运算符也可以对自定义的类和结构进行运算,这称为运算符重载。 + The example below shows how to implement the arithmetic addition operator (+) for a custom structure. The arithmetic addition operator is a binary operator because it operates on two targets and is said to be infix because it appears in between those two targets. The example defines a Vector2D structure for a two-dimensional position vector (x, y), followed by a definition of an operator function to add together instances of the Vector2D structure: +这个例子展示了如何用`+`让一个自定义的结构做加法。算术运算符`+`是一个两目运算符,因为它有两个操作数,而且它必须出现在两个操作数之间。 + +例子中定义了一个名为`Vector2D`的二维坐标向量 `(x,y)` 的结构,然后定义了让两个`Vector2D`的对象相加的运算符函数。 + +``` struct Vector2D { var x = 0.0, y = 0.0 } @infix func + (left: Vector2D, right: Vector2D) -> Vector2D { return Vector2D(x: left.x + right.x, y: left.y + right.y) } +``` + The operator function is defined as a global function called +, which takes two input parameters of type Vector2D and returns a single output value, also of type Vector2D. You implement an infix operator by writing the @infix attribute before the func keyword when declaring the operator function. +该运算符函数定义了一个全局的`+`函数,这个函数需要两个`Vector2D`类型的参数,返回值也是`Vector2D`类型。需要定义和实现一个中置运算的时候,在关键字`func`之前写上属性 `@infix` 就可以了。 + In this implementation, the input parameters are named left and right to represent the Vector2D instances that will be on the left side and right side of the + operator. The function returns a new Vector2D instance, whose x and y properties are initialized with the sum of the x and y properties from the two Vector2D instances that are added together. +在这个代码实现中,参数被命名为了`left`和`right`,代表`+`左边和右边的两个`Vector2D`对象。函数返回了一个新的`Vector2D`的对象,这个对象的`x`和`y`分别等于两个参数对象的`x`和`y`的和。 + The function is defined globally, rather than as a method on the Vector2D structure, so that it can be used as an infix operator between existing Vector2D instances: +这个函数是全局的,而不是`Vector2D`结构的成员方法,所以任意两个`Vector2D`对象都可以使用这个中置运算符。 + +``` let vector = Vector2D(x: 3.0, y: 1.0) let anotherVector = Vector2D(x: 2.0, y: 4.0) let combinedVector = vector + anotherVector -// combinedVector is a Vector2D instance with values of (5.0, 5.0) +// combinedVector 是一个新的Vector2D, 值为 (5.0, 5.0) +``` + This example adds together the vectors (3.0, 1.0) and (2.0, 4.0) to make the vector (5.0, 5.0), as illustrated below. +这个例子实现两个向量 `(3.0,1.0)` 和 `(2.0,4.0)` 相加,得到向量 `(5.0,5.0)` 的过程。如下图示: + ![Art/vectorAddition_2x.png](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/Art/vectorAddition_2x.png "Art/vectorAddition_2x.png") -Prefix and Postfix Operators + +### Prefix and Postfix Operators +### 前置和后置运算符 The example shown above demonstrates a custom implementation of a binary infix operator. Classes and structures can also provide implementations of the standard unary operators. Unary operators operate on a single target. They are prefix if they precede their target (such as -a) and postfix operators if they follow their target (such as i++). You implement a prefix or postfix unary operator by writing the @prefix or @postfix attribute before the func keyword when declaring the operator function: +上个例子演示了一个双目中置运算符的自定义实现,同样我们也可以玩标准单目运算符的实现。单目运算符只有一个操作数,在操作数之前就是前置的,如`-a`; 在操作数之后就是后置的,如`i++`。 + +实现一个前置或后置运算符时,在定义该运算符的时候于关键字`func`之前标注 `@prefix` 或 `@postfix` 属性。 + +``` @prefix func - (vector: Vector2D) -> Vector2D { return Vector2D(x: -vector.x, y: -vector.y) } +``` + The example above implements the unary minus operator (-a) for Vector2D instances. The unary minus operator is a prefix operator, and so this function has to be qualified with the @prefix attribute. +这段代码为`Vector2D`类型提供了单目减运算`-a`,`@prefix`属性表明这是个前置运算符。 + For simple numeric values, the unary minus operator converts positive numbers into their negative equivalent and vice versa. The corresponding implementation for Vector2D instances performs this operation on both the x and y properties: +对于数值,单目减运算符可以把正数变负数,把负数变正数。对于`Vector2D`,单目减运算将其`x`和`y`都进进行单目减运算。 + +``` let positive = Vector2D(x: 3.0, y: 4.0) let negative = -positive -// negative is a Vector2D instance with values of (-3.0, -4.0) +// negative 为 (-3.0, -4.0) let alsoPositive = -negative -// alsoPositive is a Vector2D instance with values of (3.0, 4.0) -Compound Assignment Operators +// alsoPositive 为 (3.0, 4.0) +``` + +### Compound Assignment Operators +### 组合赋值运算符 Compound assignment operators combine assignment (=) with another operation. For example, the addition assignment operator (+=) combines addition and assignment into a single operation. Operator functions that implement compound assignment must be qualified with the @assignment attribute. You must also mark a compound assignment operator’s left input parameter as inout, because the parameter’s value will be modified directly from within the operator function. The example below implements an addition assignment operator function for Vector2D instances: +组合赋值是其他运算符和赋值运算符一起执行的运算。如`+=`把加运算和赋值运算组合成一个操作。实现一个组合赋值符号需要使用`@assignment`属性,还需要把运算符的左参数设置成`inout`,因为这个参数会在运算符函数内直接修改它的值。 + +``` @assignment func += (inout left: Vector2D, right: Vector2D) { left = left + right } +``` + Because an addition operator was defined earlier, you don’t need to reimplement the addition process here. Instead, the addition assignment operator function takes advantage of the existing addition operator function, and uses it to set the left value to be the left value plus the right value: +因为加法运算在之前定义过了,这里无需重新定义。所以,加赋运算符函数使用已经存在的高级加法运算符函数来执行左值加右值的运算。 + +``` var original = Vector2D(x: 1.0, y: 2.0) let vectorToAdd = Vector2D(x: 3.0, y: 4.0) original += vectorToAdd -// original now has values of (4.0, 6.0) +// original 现在为 (4.0, 6.0) +``` + You can combine the @assignment attribute with either the @prefix or @postfix attribute, as in this implementation of the prefix increment operator (++a) for Vector2D instances: +你可以将 `@assignment` 属性和 `@prefix` 或 `@postfix` 属性起来组合,实现一个`Vector2D`的前置运算符。 + +``` @prefix @assignment func ++ (inout vector: Vector2D) -> Vector2D { vector += Vector2D(x: 1.0, y: 1.0) return vector } +``` + The prefix increment operator function above takes advantage of the addition assignment operator defined earlier. It adds a Vector2D with x and y values of 1.0 to the Vector2D on which it is called, and returns the result: +这个前置使用了已经定义好的高级加赋运算,将自己加上一个值为 `(1.0,1.0)` 的对象然后赋给自己,然后再将自己返回。 + +``` var toIncrement = Vector2D(x: 3.0, y: 4.0) let afterIncrement = ++toIncrement -// toIncrement now has values of (4.0, 5.0) -// afterIncrement also has values of (4.0, 5.0) -NOTE +// toIncrement 现在是 (4.0, 5.0) +// afterIncrement 现在也是 (4.0, 5.0) +``` -It is not possible to overload the default assignment operator (=). Only the compound assignment operators can be overloaded. Similarly, the ternary conditional operator (a ? b : c) cannot be overloaded. +> NOTE -Equivalence Operators +> It is not possible to overload the default assignment operator (=). Only the compound assignment operators can be overloaded. Similarly, the ternary conditional operator (a ? b : c) cannot be overloaded. + +>注意: +默认的赋值符是不可重载的。只有组合赋值符可以重载。三目条件运算符 `a?b:c` 也是不可重载。 + +### Equivalence Operators +### 比较运算符 Custom classes and structures do not receive a default implementation of the equivalence operators, known as the “equal to” operator (==) and “not equal to” operator (!=). It is not possible for Swift to guess what would qualify as “equal” for your own custom types, because the meaning of “equal” depends on the roles that those types play in your code. +Swift无所知道自定义类型是否相等或不等,因为等于或者不等于由你的代码说了算了。所以自定义的类和结构要使用比较符`==`或`!=`就需要重载。 + To use the equivalence operators to check for equivalence of your own custom type, provide an implementation of the operators in the same way as for other infix operators: +定义相等运算符函数跟定义其他中置运算符雷同: + +``` @infix func == (left: Vector2D, right: Vector2D) -> Bool { return (left.x == right.x) && (left.y == right.y) } + @infix func != (left: Vector2D, right: Vector2D) -> Bool { return !(left == right) } +``` + The above example implements an “equal to” operator (==) to check if two Vector2D instances have equivalent values. In the context of Vector2D, it makes sense to consider “equal” as meaning “both instances have the same x values and y values”, and so this is the logic used by the operator implementation. The example also implements the “not equal to” operator (!=), which simply returns the inverse of the result of the “equal to” operator. +上述代码实现了相等运算符`==`来判断两个`Vector2D`对象是否有相等的值,相等的概念就是他们有相同的`x`值和相同的`y`值,我们就用这个逻辑来实现。接着使用`==`的结果实现了不相等运算符`!=`。 + You can now use these operators to check whether two Vector2D instances are equivalent: +现在我们可以使用这两个运算符来判断两个`Vector2D`对象是否相等。 + +``` let twoThree = Vector2D(x: 2.0, y: 3.0) let anotherTwoThree = Vector2D(x: 2.0, y: 3.0) if twoThree == anotherTwoThree { - println("These two vectors are equivalent.") + println("这两个向量是相等的.") } -// prints "These two vectors are equivalent." -Custom Operators +// prints "这两个向量是相等的." +``` + +### Custom Operators +### 自定义运算符 You can declare and implement your own custom operators in addition to the standard operators provided by Swift. Custom operators can be defined only with the characters / = - + * % < > ! & | ^ . ~. +标准的运算符不够玩,那你可以声明一些个性的运算符,但个性的运算符只能使用这些字符 `/ = - + * % < >!& | ^。~`。 + New operators are declared at a global level using the operator keyword, and can be declared as prefix, infix or postfix: +新的运算符声明需在全局域使用`operator`关键字声明,可以声明为前置,中置或后置的。 + +``` operator prefix +++ {} +``` + The example above defines a new prefix operator called +++. This operator does not have an existing meaning in Swift, and so it is given its own custom meaning below in the specific context of working with Vector2D instances. For the purposes of this example, +++ is treated as a new “prefix doubling incrementer” operator. It doubles the x and y values of a Vector2D instance, by adding the vector to itself with the addition assignment operator defined earlier: +这段代码定义了一个新的前置运算符叫`+++`,此前Swift并不存在这个运算符。此处为了演示,我们让`+++`对`Vector2D`对象的操作定义为 `双自增` 这样一个独有的操作,这个操作使用了之前定义的加赋运算实现了自已加上自己然后返回的运算。 + +``` @prefix @assignment func +++ (inout vector: Vector2D) -> Vector2D { vector += vector return vector } +``` + This implementation of +++ is very similar to the implementation of ++ for Vector2D, except that this operator function adds the vector to itself, rather than adding Vector2D(1.0, 1.0): +`Vector2D` 的 `+++` 的实现和 `++` 的实现很接近, 唯一不同的前者是加自己, 后者是加值为 `(1.0, 1.0)` 的向量. + +``` var toBeDoubled = Vector2D(x: 1.0, y: 4.0) let afterDoubling = +++toBeDoubled -// toBeDoubled now has values of (2.0, 8.0) -// afterDoubling also has values of (2.0, 8.0) -Precedence and Associativity for Custom Infix Operators +// toBeDoubled 现在是 (2.0, 8.0) +// afterDoubling 现在也是 (2.0, 8.0) +``` -Custom infix operators can also specify a precedence and an associativity. See Precedence and Associativity for an explanation of how these two characteristics affect an infix operator’s interaction with other infix operators. +### Precedence and Associativity for Custom Infix Operators +### 自定义中置运算符的优先级和结合性 + +Custom infix operators can also specify a precedence and an associativity. See [Precedence and Associativity](#PrecedenceandAssociativity) for an explanation of how these two characteristics affect an infix operator’s interaction with other infix operators. + +可以为自定义的中置运算符指定优先级和结合性。可以回头看看[优先级和结合性](#PrecedenceandAssociativity)解释这两个因素是如何影响多种中置运算符混合的表达式的计算的。 The possible values for associativity are left, right, and none. Left-associative operators associate to the left if written next to other left-associative operators of the same precedence. Similarly, right-associative operators associate to the right if written next to other right-associative operators of the same precedence. Non-associative operators cannot be written next to other operators with the same precedence. +结合性(associativity)的值可取的值有`left`,`right`和`none`。左结合运算符跟其他优先级相同的左结合运算符写在一起时,会跟左边的操作数结合。同理,右结合运算符会跟右边的操作数结合。而非结合运算符不能跟其他相同优先级的运算符写在一起。 + The associativity value defaults to none if it is not specified. The precedence value defaults to 100 if it is not specified. +结合性(associativity)的值默认为`none`,优先级(precedence)默认为`100`。 + The following example defines a new custom infix operator called +-, with left associativity and a precedence of 140: +以下例子定义了一个新的中置符`+-`,是左结合的`left`,优先级为`140`。 + +``` operator infix +- { associativity left precedence 140 } func +- (left: Vector2D, right: Vector2D) -> Vector2D { return Vector2D(x: left.x + right.x, y: left.y - right.y) @@ -480,5 +695,9 @@ func +- (left: Vector2D, right: Vector2D) -> Vector2D { let firstVector = Vector2D(x: 1.0, y: 2.0) let secondVector = Vector2D(x: 3.0, y: 4.0) let plusMinusVector = firstVector +- secondVector -// plusMinusVector is a Vector2D instance with values of (4.0, -2.0) -This operator adds together the x values of two vectors, and subtracts the y value of the second vector from the first. Because it is in essence an “additive” operator, it has been given the same associativity and precedence values (left and 140) as default additive infix operators such as + and -. For a complete list of the default Swift operator precedence and associativity settings, see Expressions. \ No newline at end of file +// plusMinusVector 此时的值为 (4.0, -2.0) +``` + +This operator adds together the x values of two vectors, and subtracts the y value of the second vector from the first. Because it is in essence an “additive” operator, it has been given the same associativity and precedence values (left and 140) as default additive infix operators such as + and -. For a complete list of the default Swift operator precedence and associativity settings, see [Expressions](Expressions). + +这个运算符把两个向量的`x`相加,把向量的`y`相减。因为他实际是属于加减运算,所以让它保持了和加法一样的结合性和优先级(`left`和`140`)。查阅完整的Swift默认结合性和优先级的设置,请移步[表达式](../chapter3/04_Expressions.html); \ No newline at end of file