diff --git a/README.md b/README.md index a3412f98..9aaa55df 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ - 帮忙一起翻译 - 帮忙校对,挑错别字、病句等等 - 提出修改建议 +- 提出术语翻译建议 # 翻译建议 @@ -30,10 +31,19 @@ - 工作分支为gh-pages,用于GitHub的pages服务 - fork过去之后新建一个分支进行翻译,完成后pull request这个分支,没问题的话我会合并到gh-pages分支中 - 有其他任何问题都欢迎发issue,我看到了会尽快回复 -- **尽早pull request**,你不必翻译完整篇文章再pr,完全可以翻译完一段就pr一次,这样别的朋友可以及时看到你的进度,避免多人翻译同一段。此外,尽早pr也可以让校对的朋友们更早看到新内容,更快发现问题。 +- **尽早pull request**,你不必翻译完整篇文章再pr,完全可以翻译完一段就pr一次,这样别的朋友可以及时看到你的进度,避免多人翻译同一段。此外,尽早pr也可以让校对的朋友们更早看到新内容,更快发现问题 +- 一定要记得**先查看当前的pr**再开始翻译,防止重复翻译 谢谢! +# 关于术语 + +翻译术语的时候请参考这个流程: + +- 尽量保证和已翻译的内容一致 +- 尽量先搜索,一般来说编程语言的大部分术语是一样的,可以参考[微软官方术语搜索](http://www.microsoft.com/Language/zh-cn/Search.aspx) +- 如果以上两条都没有找到合适的结果,请自己决定一个合适的翻译或者直接使用英文原文,后期校对的时候会进行统一 + # 参考流程 有些朋友可能不太清楚如何帮忙翻译,我这里写一个简单的流程,大家可以参考一下: diff --git a/Using Swift with Cocoa and ObjectiveC/chapter3/DAG_2x.png b/Using Swift with Cocoa and ObjectiveC/chapter3/DAG_2x.png new file mode 100644 index 00000000..3c15390b Binary files /dev/null and b/Using Swift with Cocoa and ObjectiveC/chapter3/DAG_2x.png differ diff --git a/Using Swift with Cocoa and ObjectiveC/chapter3/Swift and Objective-C in the Same Project.md b/Using Swift with Cocoa and ObjectiveC/chapter3/Swift and Objective-C in the Same Project.md new file mode 100644 index 00000000..b33cbaae --- /dev/null +++ b/Using Swift with Cocoa and ObjectiveC/chapter3/Swift and Objective-C in the Same Project.md @@ -0,0 +1,234 @@ +--- [@haolloyin](https://github.com/haolloyin) 翻译自苹果官方文档 [Using Swift with Cocoa and Objective-C](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html#//apple_ref/doc/uid/TP40014216-CH10-XID_75) 的 [Mix and Match](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html) 章节 + + + +# Swift and Objective-C in the Same Project - 在同个工程中使用 Swift 和 Objc + +Swift 与 Objc 的兼容能力使你可以在同一个工程中同时使用两种语言。你可以用这种叫做 `mix and match` 的特性来开发基于混合语言的应用,可以用 Swfit 的最新特性实现应用的一部分功能,并无缝地并入已有的 Objc 的代码中。 + +## Mix and Match 概述 + +Objc 和 Swift 文件可以在一个工程中并存,不管这个工程原本是基于 Objc 还是 Swift。你可以直接往现有工程中简单地添加另一种语言的源文件。这种自然的工作流使得创建混合语言的应用或框架 target,与用单独一种语言时一样简单。 + +混合语言的工作流程只有一点点区别,这取决于你是在写应用还是写框架。下面描述了普通的用两种语言在一个 target 中导入模型的情况,后续章节会有更多细节。 + +![DAG_2x.png](https://raw.githubusercontent.com/haolloyin/the-swift-programming-language-in-chinese/translate/Using%20Swift%20with%20Cocoa%20and%20ObjectiveC/chapter3/DAG_2x.png?raw=true) + +## Importing Code from Within the Same App Target - 在同个应用的 target 中导入 + +如果你在写混合语言的应用,可能需要用 Swift 代码访问 Objc 代码,或者反之。下面的流程描述了在非框架 target 中的应用。 + +### Importing Objective-C into Swift - 将 Objc 导入 Swift + +在一个应用的 target 中导入一些 Objc 文件供 Swift 代码使用时,你需要依赖与 Objc 的桥接头文件(`bridging header`)来暴露给 Swift。当你添加 Swift 文件到现有的 Objc 应用(或反之)时,Xcode 会自动创建这些头文件。 + +![bridgingheader_2x.png](https://raw.githubusercontent.com/haolloyin/the-swift-programming-language-in-chinese/translate/Using%20Swift%20with%20Cocoa%20and%20ObjectiveC/chapter3/bridgingheader_2x.png?raw=true) + +如果你同意,Xcode 会在源文件创建的同时生成头文件,并用 product 的模块名加上 `-Bridging-Header.h` 命名。关于 product 的模块名,详见 [Naming Your Product Module](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html#//apple_ref/doc/uid/TP40014216-CH10-XID_85)。 + +你应该编辑这个头文件来对 Swift 暴露出 Objc 代码。 + +##### To import Objective-C code into Swift from the same target + + +1.在 Objc 桥接头文件中,import 任何你想暴露给 Swift 的头文件,例如: + +``` + // OBJECTIVE-C + + #import "XYZCustomCell.h" + #import "XYZCustomView.h" + #import "XYZCustomViewController.h" +``` + +2.确保在 `Build Settings` 中 Objc 桥接头文件的 `build setting` 是基于 Swfit 编译器,即 `Code Generation` 含有头文件的路径。这个路径必须是头文件自身的路径,而不是它所在的目录。 + +这个路径应该是你工程的相对路径,类似 `Info.plist` 在 `Build Settings` 中指定的路径。在大多数情况下,你不需要修改这个设置。 + +在这个桥接头文件中列出的所有 public 的 Objc 头文件都会对 Swift 可见。之后当前 target 的所有 Swift 文件都可以使用这些头文件中的方法,不需要任何 import 语句。用 Swift 语法使用这些 Objc 代码,就像使用系统自带的 Swift 类一样。 + +``` + // SWIFT + + let myCell = XYZCustomCell() + myCell.subtitle = "A custom cell" +``` + +### Importing Swift into Objective-C - 将 Swift 导入 Objc + +向 Objc 中导入Swift 代码时,你依赖 Xcode 生成的头文件来向 Objc 暴露 Swift 代码。这是自动生成 Objc 头文件,它包含了你的 target 中所有 Swift 代码中定义的接口。可以把这个 Objc 头文件看作 Swift 代码的 `umbrella header`。它以 product 模块名加 `-Swift.h` 来命名。关于 product 的模块名,详见 [Naming Your Product Module](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html#//apple_ref/doc/uid/TP40014216-CH10-XID_85)。 + +你不需要做任何事情来生成这个头文件,只需要将它导入到你的 Objc 代码来使用它。注意这个头文件中的 Swift 接口包含了它所使用到的所有 Objc 类型。如果你在 Swift 代码中使用你自己的 Objc 类型,确保先将对应的 Objc 头文件导入到你的 Swift 代码中,然后才将 Swift 自动生成的头文件导入到 Objc .m 源文件中来访问 Swift 代码。 + +##### To import Swift code into Objective-C from the same target + +- 在相同 target 的 Objc .m 源文件中,用下面的语法来导入Swift 代码: + +``` + // OBJECTIVE-C + + #import "ProductModuleName-Swift.h" +``` + +target 中任何 Swift 文件将会对 Objc .m 源文件可见,包括这个 import 语句。关于在 Objc 代码中使用 Swift 代码,详见 [Using Swift from Objective-C](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html#//apple_ref/doc/uid/TP40014216-CH10-XID_84)。 + + | 导入到 Swift | 导入到 Objc +---------- | ---------- | ---------- +Swift 代码 | 不需要import语句 | #import +Objc 代码 | 不需要import语句;需要 Objc `umbrella头文件` | #import "Header.h" + +## Importing Code from Within the Same Framework Target - 在同个 Framework 的 target 中导入 + +如果你在写一个混合语言的框架,可能会从 Swift 代码访问 Objc 代码,或者反之。 + +### Importing Objective-C into Swift - 将 Objc 导入 Swift + +要将一些 Objc 文件导入到同个框架 target 的 Swift 代码中去,你需要将这些文件导入到 Objc 的 `umbrella header` 来供框架使用。 + +##### To import Objective-C code into Swift from the same framework + +确保将框架 target 的 `Build Settings > Packaging > Defines Module` 设置为 `Yes`。然后在你的 `umbrella header` 头文件中导入你想暴露给 Swift 访问的 Objc 头文件,例如: + +``` + // OBJECTIVE-C + #import + #import + #import +``` + +Swift 将会看到所有你在 `umbrella header` 中公开暴露出来的头文件,框架 target 中的所有 Swift 文件都可以访问你 Objc 文件的内容,不需要任何 import 语句。 + +``` + // SWIFT + + let myCell = XYZCustomCell() + myCell.subtitle = "A custom cell" +``` + +### Importing Swift into Objective-C - 将 Swift 导入 Objc + +要将一些 Swift 文件导入到同个框架的 target 的 Objc 代码去,你不需要导入任何东西到 `umbrella header` 文件,而是将 Xcode 为你的 Swift 代码自动生成的头文件导入到你的 Obj .m 源文件去,以便在 Objc 代码中访问 Swift 代码。 + +##### To import Swift code into Objective-C from the same framework + +确保将框架 target 的 `Build Settings > Packaging` 中的 `Defines Module` 设置为 `Yes`。用下面的语法将 Swift 代码导入到同个框架 target 下的 Objc .m 源文件去。 + +``` + // OBJECTIVE-C + #import +``` + +这个 import 语句所包含的 Swift 文件都可以被同个框架 target 下的 Objc .m 源文件访问。关于在 Objc 代码中使用 Swift 代码,详见 [Using Swift from Objective-C](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html#//apple_ref/doc/uid/TP40014216-CH10-XID_84)。 + + | 导入到 Swift | 导入到 Objc +---------- | ---------- | ---------- +Swift 代码 | 不需要import语句 | #import +Objc 代码 | 不需要import语句;需要 Objc `umbrella头文件` | #import "Header.h" + + +## Importing External Frameworks - 导入外部 Framework + +你可以导入外部框架,不管这个框架是纯 Objc,纯 Swift,还是混合语言的。import 外部框架的流程都是一样的,不管这个框架是用一种语言写的,还是包含两种语言。当你导入外部框架时,确保 `Build Setting > Pakaging > Defines Module` 设置为 `Yes`。 + +用下面的语法将框架导入到不同 target 的 Swift 文件中: + +``` + // SWIFT + + import FrameworkName +``` + +用下面的语法将框架导入到不同 target 的 Objc .m 文件中: + +``` + OBJECTIVE-C + + @import FrameworkName; +``` + +Import into Swift +Import into Objective-C +Any language framework +import FrameworkName +@import FrameworkName; + + +## Using Swift from Objective-C - 在 Objc 中使用 Swift + +当你将 Swift 代码导入 Objc 文件之后,用普通的 Objc 语法使用 Swift 类。 + +``` +// OBJECTIVE-C + +MySwiftClass *swiftObject = [[MySwiftClass alloc] init]; +[swiftObject swiftMethod]; +``` + +Swift 的类或协议必须用 `@objc attribute` 来标记,以便在 Objc 中可访问。这个 attribute 告诉编译器这个 Swift 代码可以从 Objc 代码中访问。如果你的 Swift 类是 Objc 类的子类,编译器会自动为你添加 `@objc attribute`。详见 [Swift Type Compatibility](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/BuildingCocoaApps/InteractingWithObjective-CAPIs.html#//apple_ref/doc/uid/TP40014216-CH4-XID_36)。 + +你可以访问 Swift 类或协议中用 `@objc attribute` 标记过东西,只要它和 Objc 兼容。不包括一下这些 Swift 独有的特性: + +Generics - 范型 + +Tuples - 元组 + +Enumerations defined in Swift - Swift 中定义的枚举 + +Structures defined in Swift - Swift 中定义的结构体 + +Top-level functions defined in Swift - Swift Swift 中定义的顶层函数 + +Global variables defined in Swift - Swift 中定义的全局变量 + +Typealiases defined in Swift - Swift 中定义的类型别名 + +Swift-style variadics + +Nested types - 嵌套类型 + +Curried functions - 柯里化后的函数 + +例如带有范型类型作为参数,或者返回元组的方法不能在 Objc 中使用。 + +为了避免循环引用,不要将 Swift 代码导入到 Objc 头文件中。但是你可以在 Objc 头文件中前向声明(`forward declare`)一个 Swift 类来使用它,然而,注意**不能在 Objc 中继承一个 Swift 类。** + +### To reference a Swift class in an Objective-C header file + +这样前向声明 Swift 类: + +``` +// OBJECTIVE-C +// MyObjcClass.h + +@class MySwiftClass; + +@interface MyObjcClass : NSObject +- (MySwiftClass *)returnSwiftObject; +/* ... */ +@end +``` + +## Naming Your Product Module - Product 模块命名 + +Xcode 为 Swift 代码生成的头文件的名称,以及 Xcode 创建的 Objc 桥接头文件名称,都是从你的 product 模块名生成的。默认你的 product 模块名和 product 名一样。然而,如果你的 product 名有特殊字符(nonalphanumeric,非数字、字母的字符),例如点号,那么它们会被下划线(`_`)替换之后作为你的 product 模块名。如果 product 名以数字开头,那么第一个数字会用下划线替换掉。 + +你可以给 product 模块名提供一个自定义的名称,Xcode 会用这个名称来命名桥接的和自动生成的头文件。你只需要在修改在 `build setting` 中的 `Product Module Name` 即可。 + + +## Troubleshooting Tips and Reminders + +- 把 Swift 和 Objc 文件看作相同的代码集合,并注意命名冲突; + +- 如果你用框架,确保 `Build Setting > Pakaging > Defines Module` 设置为 `Yes`; + +- 如果你使用 Objc 桥接头文件,确保在 `Build Settings` 中 Objc 桥接头文件的 `build setting` 是基于 Swfit 编译器,即 `Code Generation` 含有头文件的路径。这个路径必须是头文件自身的路径,而不是它所在的目录。 + +- Xcode 使用你的 product 模块名,而不是 target 名来命名 Objc 桥接头文件和为 Swift 自动生成的头文件。详见 [Naming Your Product Module](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html#//apple_ref/doc/uid/TP40014216-CH10-XID_85); + +- 为了在 Objc 中可用, Swift 类必须是 Objc 类的子类,或者用 `@objc` 标记; + +- 当你将 Swift 导入到 Objc 中时,记住 Objc 不会将 Swift 独有的特性翻译成 Objc 对应的特性。详见列表 [Using Swift from Objective-C](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/BuildingCocoaApps/MixandMatch.html#//apple_ref/doc/uid/TP40014216-CH10-XID_84); + +- 如果你在 Swift 代码中使用你自己的 Objc 类型,确保先将对应的 Objc 头文件导入到你的 Swift 代码中,然后才将 Swift 自动生成的头文件 import 到 Objc .m 源文件中来访问 Swift 代码。 + + diff --git a/Using Swift with Cocoa and ObjectiveC/chapter3/bridgingheader_2x.png b/Using Swift with Cocoa and ObjectiveC/chapter3/bridgingheader_2x.png new file mode 100644 index 00000000..0e678eec Binary files /dev/null and b/Using Swift with Cocoa and ObjectiveC/chapter3/bridgingheader_2x.png differ diff --git a/chapter1/README.html b/chapter1/README.html index e412dde2..f21a792d 100644 --- a/chapter1/README.html +++ b/chapter1/README.html @@ -46,7 +46,7 @@ -
+
@@ -173,6 +173,24 @@ + + +
  • + + + 2.2. 基本操作符 + + + +
  • + +
  • + + + 2.3. 字符串和字符 + + +
  • @@ -197,28 +215,32 @@
    -
    +
    - + - + - + - + - + + + + +
    -
    +

    欢迎使用 Swift

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

    diff --git a/chapter1/a_swift_tour.html b/chapter1/a_swift_tour.html index 23ca8756..f9d2f579 100644 --- a/chapter1/a_swift_tour.html +++ b/chapter1/a_swift_tour.html @@ -46,7 +46,7 @@ -
    +
    @@ -173,6 +173,24 @@ + + +
  • + + + 2.2. 基本操作符 + + + +
  • + +
  • + + + 2.3. 字符串和字符 + + +
  • @@ -197,28 +215,32 @@
    -
    +
    - + - + - + - + - + + + + +
    -
    +

    Swift 初见

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

    diff --git a/chapter1/swift.html b/chapter1/swift.html index 9a7c7e8c..949879e8 100644 --- a/chapter1/swift.html +++ b/chapter1/swift.html @@ -46,7 +46,7 @@ -
    +
    @@ -173,6 +173,24 @@ + + +
  • + + + 2.2. 基本操作符 + + + +
  • + +
  • + + + 2.3. 字符串和字符 + + +
  • @@ -197,28 +215,32 @@
    -
    +
    - + - + - + - + - + + + + +
    -
    +

    关于 Swift

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

    diff --git a/chapter2/article_1.html b/chapter2/article_1.html index eb31b118..df52011f 100644 --- a/chapter2/article_1.html +++ b/chapter2/article_1.html @@ -15,6 +15,8 @@ + + @@ -44,7 +46,7 @@ -
    +
    @@ -171,6 +173,24 @@ + + +
  • + + + 2.2. 基本操作符 + + + +
  • + +
  • + + + 2.3. 字符串和字符 + + +
  • @@ -195,28 +215,32 @@
    -
    +
    - + - + - + - + - + + + + +
    -
    +

    基础部分

    Swift 是 iOS 和 OS X 应用开发的一门新语言。然而,如果你有 C 或者 Objective-C 开发经验的话,你会发现 Swift 的很多内容都是你熟悉的。

    @@ -255,10 +279,34 @@ var currentLoginAttempt = 0

    你可以用任何你喜欢的字符作为常量和变量名,包括Unicode字符:

        let π = 3.14159
         let 你好 = "你好世界"
    +    let 🐶🐮 = "dogcow"
     

    常量与变量名不能包含数学符号,箭头,保留的(或者非法的)Unicode码位,连线与制表符。尽管常量与变量名中可以包含数字,但是它们不能以数字打头。

    一旦你将常量或者变量声明为确定的类型,你就不能使用相同的名字再次进行声明,或者以改变其存储的值为其他类型。同时,你也不能将常量与变量进行互转。

    注意:如果你需要使用与Swift保留关键字相同的名称作为常量或者变量名,你可以使用反引号(`)将关键字围住的方式将其作为名字使用。无论如何,你应当避免使用关键字作为常量或变量名,除非你别无选择。

    +
    +

    你可以更改现有的变量值为其他同类型的值,在下面的例子中,friendlyWelcome的值从"Hello!"改为了"Bonjour!":

    +
        var friendlyWelcome = "Hello!"
    +    friendlyWelcome = "Bonjour!"
    +    // friendlyWelcome is now "Bonjour!"
    +

    和变量不一样,常量的值一旦被确定以后就不能更改了。尝试这样做会在编译时报错:

    +
        let languageName = "Swift"
    +    languageName = "Swift++"
    +    // this is a compile-time error - languageName cannot be changed
    +

    输出常量和变量

    +

    你可以用println函数来输出当前常量或变量的值:

    +
        println(friendlyWelcome)
    +    // prints "Bonjour!"
    +

    println是一个用来输出的全局函数,输出的内容会在最后带换行。如果你用Xcode,println将会输出内容到“console”面板上。(另一种函数叫print,唯一区别是在输出内容最后不会加入换行。)

    +

    println函数输出传入的String值:

    +
        println("This is a string")
    +    // prints "This is a string"
    +

    像Cocoa里的NSLog函数一样,println函数可以输出更复杂的信息。这些信息可以包含当前常量和变量的值。

    +

    Swift用字符串插值(string interpolation)的方式把常量名或者变量名当做占位符加入到长字符串中,Swift会用当前常量或变量的值替换这些占位符。将常量或变量名放入反斜杠符加一对圆括号中"\()"

    +
        println("The current value of friendlyWelcome is \(friendlyWelcome)")
    +    // prints "The current value of friendlyWelcome is Bonjour!
    +
    +

    注意:字符串插值所有可用的选项在 字符串插值 这章中讲述。

    @@ -269,9 +317,11 @@ var currentLoginAttempt = 0
    - + + +
    diff --git a/chapter2/basic_operators.html b/chapter2/basic_operators.html new file mode 100644 index 00000000..71f95970 --- /dev/null +++ b/chapter2/basic_operators.html @@ -0,0 +1,293 @@ + + + + + + + + 基本操作符 | Swift 编程语言 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + Swift 编程语言 +

    +
    + + + +
    + + +
    + +
    +
    +
    +
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + +
    +
    + +
    + +
    + +

    基本操作符

    + + +
    + +
    +
    +
    + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/chapter2/strings_and_characters.html b/chapter2/strings_and_characters.html new file mode 100644 index 00000000..622da79e --- /dev/null +++ b/chapter2/strings_and_characters.html @@ -0,0 +1,501 @@ + + + + + + + + 字符串和字符 | Swift 编程语言 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +

    + + Swift 编程语言 +

    +
    + + + +
    + + +
    + +
    +
    +
    +
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + +
    +
    + +
    + +
    + +

    字符串和字符 (Strings and Characters)

    +

    String 是一个有序的字符集合,例如 "hello, world", "albatross"。Swift 字符串通过 String 类型来表示,也可以表示为 Character 类型值的集合。

    +

    Swift 的 StringCharacter 类型提供了一个快速的,兼容 Unicode 的方式来处理代码中的文本信息。创建和操作字符串的语法与 C的操作方式相似,轻量并且易读。字符串连接操作只需要简单地通过 + 号将两个字符串相连即可。与 Swift 中其他值一样,能否更改字符串的值,取决于其被定义为常量还是变量。

    +

    尽管语法简易,但 String 类型是一种快速、现代化的字符串实现。每一个字符串都是由独立编码的 Unicode 字符组成,并提供了用于访问这些字符在不同的Unicode表示的支持。

    +

    String 也可以用于在常量、变量、字面量和表达式中进行字符串插值,这使得创建用于展示、存储和打印的字符串变得轻松自如。

    +
    +

    注意:

    +

    Swift 的 String 类型与 Foundation NSString 类进行了无缝桥接。如果您利用 Cocoa 或 Cocoa Touch 中的 Foundation 框架进行工作,整个 NSString API 都可以调用您创建的任意 String 类型的值,您额外还可以在任意 API 中使用本章介绍的 String 特性。您也可以在任意要求传入NSString 实例作为参数的 API 中使用 String 类型的值进行替换。

    +

    更多关于在 Foundation 和 Cocoa 中使用 String 的信息请查看 Using Swift with Cocoa and Objective-C

    +
    +

    字符串字面量

    +

    您可以在您的代码中包含一段预定义的字符串值作为字符串字面量。字符串字面量是由双引号包裹着的具有固定顺序的文本字符集。

    +

    字符串字面量可以用于为常量和变量提供初始值。

    +
    let someString = "Some string literal value"
    +
    +

    注意:

    +

    someString 变量通过字符串字面量进行初始化,Swift 因此推断其为 String 类型。

    +
    +

    字符串字面量可以包含以下特殊字符:

    +
      +
    • 转移特殊字符 \0 (空字符)、\\(反斜线)、\t (水平制表符)、\n (换行符)、\r (回车符)、\" (双引号)、\' (单引号)。
    • +
    • 单字节 Unicode 标量,写成 \xnn,其中 nn 为两位十六进制数。
    • +
    • 双字节 Unicode 标量,写成 \unnnn,其中 nnnn 为四位十六进制数。
    • +
    • 四字节 Unicode 标量,写成 \Unnnnnnnn,其中 nnnnnnnn 为八位十六进制数。
    • +
    +

    下面的代码为各种特殊字符的使用示例。

    +

    wiseWords 常量包含了两个转移特殊字符 (双括号);dollarSignblackHeartsparklingHeart 常量演示了三种不同格式的 Unicode 标量:

    +
    let wiseWords = "\"Imagination is more important than knowledge\" - Einstein"
    +// "Imagination is more important than knowledge" - Einstein
    +let dollarSign = "\x24"        // $,  Unicode scalar U+0024
    +let blackHeart = "\u2665"      // ♥,  Unicode scalar U+2665
    +let sparklingHeart = "\U0001F496"  // 💖, Unicode scalar U+1F496
    +

    初始化空字符串

    +

    为了构造一个很长的字符串,可以创建一个空字符串作为初始值。可以将空的字符串字面量赋值给变量,也可以初始化一个新的 String 实例:

    +
    var emptyString = ""               // empty string literal
    +var anotherEmptyString = String()  // initializer syntax
    +// 这两个字符串都为空,并且两者等价
    +

    您可以通过检查其 Boolean 类型的 isEmpty 属性来判断该字符串是否为空:

    +
    if emptyString.isEmpty {
    +    println("Nothing to see here")
    +}
    +// 打印 "Nothing to see here"
    +

    字符串可变性

    +

    您可以通过将一个特定字符串分配给一个变量来对其进行修改,或者分配给一个常量来保证其不会被修改:

    +
    var variableString = "Horse"
    +variableString += " and carriage"
    +// variableString 现在为 "Horse and carriage"
    +let constantString = "Highlander"
    +constantString += " and another Highlander"
    +// 这会报告一个编译错误(compile-time error) - 常量不可以被修改。
    +
    +

    注意:

    +

    在 Objective-C 和 Cocoa 中,您通过选择两个不同的类( NSString 和 NSMutableString )来指定该字符串是否可以被修改,Swift中的字符串是否可以修改仅通过定义的是变量还是常量来决定,实现了多种类型可变性操作的统一。

    +
    +

    字符串是值类型

    +

    Swift 的 String 类型是值类型。如果您创建了一个新的字符串,那么当其进行常量、变量赋值操作或在函数/方法中传递时,会进行值拷贝。任何情况下,都会对已有字符串值创建新副本,并对该新副本进行传递或赋值。值类型在 Structures and Enumerations Are Value Types 中进行了说明。

    +
    +

    注意:

    +

    其 Cocoa 中的 NSString 不同,当您在 Cocoa 中创建了一个 NSString 实例,并将其传递给一个函数/方法,或者赋值给一个变量,您永远都是传递或赋值同一个 NSString 实例的一个引用。除非您特别要求其进行值拷贝,否则字符串不会进行赋值新副本操作。

    +
    +

    Swift 默认字符串拷贝的方式保证了在函数/方法中传递的是字符串的值,其明确了无论该值来自于哪里,都是您独自拥有的。您可以放心您传递的字符串本身不会被更改。

    +

    在实际编译时,Swift编译器会优化字符串的使用,使实际的复制只发生在绝对必要的情况下,这意味着您始终可以将字符串作为值类型的同时获得极高的性能。

    +

    使用字符(Characters)

    +

    Swift 的 String 类型表示特定序列的字符值的集合。每一个字符值代表一个 Unicode 字符。您可利用 for-in 循环来遍历字符串中的每一个字符:

    +
    for character in "Dog!🐶" {
    +    println(character)
    +}
    +// D
    +// o
    +// g
    +// !
    +// 🐶
    +

    for-in 循环在For Loops中进行了详细描述。

    +

    另外,通过标明一个 Character 类型注解并通过字符字面量进行赋值,可以建立一个独立的字符常量或变量:

    +
    let yenSign: Character = "¥"
    +

    计算字符数量

    +

    通过调用全局 countElements 函数并将字符串作为参数进行传递可以获取该字符串的字符数量。

    +
    let unusualMenagerie = "Koala 🐨, Snail 🐌, Penguin 🐧, Dromedary 🐪"
    +println("unusualMenagerie has \(countElements(unusualMenagerie)) characters")
    +// prints "unusualMenagerie has 40 characters"
    +
    +

    注意:

    +

    不同的 Unicode 字符以及相同 Unicode 字符的不同表示方式可能需要不同数量的内存空间来存储,所以Swift 中的字符在一个字符串中并不一定占用相同的内存空间。因此,字符串的长度不得不通过迭代字符串中每一个字符的长度来进行计算。如果您正在处理一个长字符串,需要注意 countElements 函数必须遍历字符串中的字符以精准计算字符串的长度。

    +

    另外需要注意的是通过 countElements 返回的字符数量并不总是与包含相同字符的 NSString 的 length 属性相同。NSString 的 length 属性是基于利用 UTF-16 表示的十六位代码单元数字,而不是基于 Unicode 字符。为了解决这个问题,NSString 的 length 属性在被 Swift的 String 访问时会成为 utf16count

    +
    +

    连接字符串和字符

    +

    字符串和字符的值可以通过加法运算符 (+) 相加在一起并创建一个新的字符串值:

    +
    let string1 = "hello"
    +let string2 = " there"
    +let character1: Character = "!"
    +let character2: Character = "?"
    +
    +let stringPlusCharacter = string1 + character1        // 等于 "hello!"
    +let stringPlusString = string1 + string2              // 等于 "hello there"
    +let characterPlusString = character1 + string1        // 等于 "!hello"
    +let characterPlusCharacter = character1 + character2  // 等于 "!?"
    +

    您也可以通过加法赋值运算符 (+=) 将一个字符串或者字符添加到一个已经存在字符串变量上:

    +
    var instruction = "look over"
    +instruction += string2
    +// instruction 现在等于 "look over there"
    +
    +var welcome = "good morning"
    +welcome += character1
    +// welcome 现在等于 "good morning!"
    +
    +

    注意:

    +

    您不能将一个字符串或者字符添加到一个已经存在的字符变量上,因为字符变量只能包含一个字符。

    +
    +

    字符串插值

    +

    字符串插值是一种全新的构建字符串的方式,可以在其中包含常量、变量、字面量和表达式。您插入的字符串字面量的每一项都被包裹在以反斜线为前缀的圆括号中:

    +
    let multiplier = 3
    +let message = "\(multiplier) times 2.5 is \(Double(multiplier) * 2.5)"
    +// message is "3 times 2.5 is 7.5"
    +

    在上面的例子中,multiplier 作为 \(multiplier) 被插入到一个字符串字面量中。当创建字符串执行插值计算时此占位符会被替换为 multiplier 实际的值。

    +

    multiplier 的值也作为字符串中后面表达式的一部分。该表达式计算 Double(multiplier) * 2.5 的值并将结果 (7.5) 插入到字符串中。在这个例子中,表达式写为 \(Double(multiplier) * 2.5) 并包含在字符串字面量中。

    +
    +

    注意:

    +

    您插值字符串中写在括号中的表达式不能包含非转义双引号 (") 和反斜杠 (\),并且不能包含回车或换行符。

    +
    +

    比较字符串

    +

    Swift 提供了三种方式来比较字符串的值:字符串相等,前缀相等和后缀相等。

    +
    字符串相等
    +

    如果两个字符串以同一顺序包含完全相同的字符,则认为两者字符串相等:

    +
    let quotation = "We're a lot alike, you and I."
    +let sameQuotation = "We're a lot alike, you and I."
    +if quotation == sameQuotation {
    +    println("These two strings are considered equal")
    +}
    +// prints "These two strings are considered equal"
    +
    前缀/后缀相等
    +

    通过调用字符串的 hasPrefix/hasSuffix 方法来检查字符串是否拥有特定前缀/后缀。两个方法均需要以字符串作为参数传入并传出 Boolean 值。两个方法均执行基本字符串和前缀/后缀字符串之间逐个字符的比较操作。

    +

    下面的例子以一个字符串数组表示莎士比亚话剧 罗密欧与朱丽叶 中前两场的场景位置:

    +
    let romeoAndJuliet = [
    +    "Act 1 Scene 1: Verona, A public place",
    +    "Act 1 Scene 2: Capulet's mansion",
    +    "Act 1 Scene 3: A room in Capulet's mansion",
    +    "Act 1 Scene 4: A street outside Capulet's mansion",
    +    "Act 1 Scene 5: The Great Hall in Capulet's mansion",
    +    "Act 2 Scene 1: Outside Capulet's mansion",
    +    "Act 2 Scene 2: Capulet's orchard",
    +    "Act 2 Scene 3: Outside Friar Lawrence's cell",
    +    "Act 2 Scene 4: A street in Verona",
    +    "Act 2 Scene 5: Capulet's mansion",
    +    "Act 2 Scene 6: Friar Lawrence's cell"
    +]
    +

    您可以利用 hasPrefix 方法来计算话剧中第一幕的场景数:

    +
    var act1SceneCount = 0
    +for scene in romeoAndJuliet {
    +    if scene.hasPrefix("Act 1 ") {
    +        ++act1SceneCount
    +    }
    +}
    +println("There are \(act1SceneCount) scenes in Act 1")
    +// prints "There are 5 scenes in Act 1"
    +
    大写和小写字符串
    +

    您可以通过字符串的 uppercaseStringlowercaseString 属性来访问一个字符串的大写/小写版本。

    +
    let normal = "Could you help me, please?"
    +let shouty = normal.uppercaseString
    +// shouty 值为 "COULD YOU HELP ME, PLEASE?"
    +let whispered = normal.lowercaseString
    +// whispered 值为 "could you help me, please?"
    +

    Unicode

    +

    Unicode 是文本编码和表示的国际标准。它使您可以用标准格式表示来自任意语言几乎所有的字符,并能够对文本文件或网页这样的外部资源中的字符进行读写操作。

    +

    Swift 的字符串和字符类型是完全兼容 Unicode 的,它支持如下所述的一系列不同的 Unicode 编码。

    +
    Unicode 术语(Terminology)
    +

    Unicode 中每一个字符都可以被解释为一个或多个 unicode 标量。字符的 unicode 标量是一个唯一的21位数字(和名称),例如 U+0061 表示小写的拉丁字母A ("a"),U+1F425 表示正面站立的鸡宝宝 ("🐥")

    +

    当 Unicode 字符串被写进文本文件或其他存储结构当中,这些 unicode 标量将会按照 Unicode 定义的集中格式之一进行编码。其包括 UTF-8 (以8位代码单元进行编码) 和 UTF-16 (以16位代码单元进行编码)。

    +
    字符串的 Unicode 表示
    +

    Swift 提供了几种不同的方式来访问字符串的 Unicode 表示。

    +

    您可以利用 for-in 来对字符串进行遍历,从而以 Unicode 字符的方式访问每一个字符值。该过程在 Working with Characters 中进行了描述。

    +

    另外,能够以其他三种 Unicode 兼容的方式访问字符串的值:

    +
      +
    • UTF-8 代码单元集合 (利用字符串的 utf8 属性进行访问)
    • +
    • UTF-16 代码单元集合 (利用字符串的 utf16 属性进行访问)
    • +
    • 21位的 Unicode 标量值集合 (利用字符串的 unicodeScalars 属性进行访问)
    • +
    +

    下面由 D o g !🐶 (狗脸表情,Unicode 标量为 U+1F436)组成的字符串中的每一个字符代表着一种不同的表示:

    +
    let dogString = "Dog!🐶"
    +
    UTF-8
    +

    您可以通过遍历字符串的 utf8 属性来访问它的 UTF-8 表示。其为 UTF8View 类型的属性,UTF8View 是无符号8位 (UInt8) 值的集合,每一个 UIn8 都是一个字符的 UTF-8 表示:

    +
    for codeUnit in dogString.utf8 {
    +    print("\(codeUnit) ")
    +}
    +print("\n")
    +// 68 111 103 33 240 159 144 182
    +

    上面的例子中,前四个10进制代码单元值 (68, 111, 103, 33) 代表了字符 D o g! ,他们的 UTF-8 表示与 ASCII 表示相同。后四个代码单元值 (240, 159, 144, 182) 是 狗脸表情 的4位 UTF-8 表示。

    +
    UTF-16
    +

    您可以通过遍历字符串的 utf16 属性来访问它的 UTF-16 表示。其为 UTF16View 类型的属性,UTF16View 是无符号16位 (UInt16) 值的集合,每一个 UInt16 都是一个字符的 UTF-16 表示:

    +
    for codeUnit in dogString.utf16 {
    +    print("\(codeUnit) ")
    +}
    +print("\n")
    +// 68 111 103 33 55357 56374
    +

    同样,前四个代码单元值 (68, 111, 103, 33) 代表了字符 D o g! ,他们的 UTF-16 代码单元和 UTF-8 完全相同。

    +

    第五和第六个代码单元值 (55357 and 56374) 是 狗脸表情 字符的UTF-16 表示。第一个值为 U+D83D (十进制值为 55357),第二个值为 U+DC36 (十进制值为 56374)。

    +
    Unicode 标量 (Scalars)
    +

    您可以通过遍历字符串的 unicodeScalars 属性来访问它的 Unicode 标量表示。其为 UnicodeScalarView 类型的属性, UnicodeScalarViewUnicodeScalar 的集合。UnicodeScalar 是21位的 Unicode 代码点。

    +

    每一个 UnicodeScalar 拥有一个值属性,可以返回对应的21位数值,用 UInt32 来表示。

    +
    for scalar in dogString.unicodeScalars {
    +    print("\(scalar.value) ")
    +}
    +print("\n")
    +// 68 111 103 33 128054
    +

    同样,前四个代码单元值 (68, 111, 103, 33) 代表了字符 D o g! 。第五位数值,128054,是一个十六进制1F436的十进制表示。其等同于 狗脸表情 的Unicode 标量 U+1F436。

    +

    作为查询字符值属性的一种替代方法,每个 UnicodeScalar 值也可以用来构建一个新的字符串值,比如在字符串插值中使用:

    +
    for scalar in dogString.unicodeScalars {
    +    println("\(scalar) ")
    +}
    +// D
    +// o
    +// g
    +// !
    +// 🐶
    +
    + +
    + +
    +
    +
    + + + + + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/chapter2/the_basics.html b/chapter2/the_basics.html index 2d1e38fd..2bafa340 100644 --- a/chapter2/the_basics.html +++ b/chapter2/the_basics.html @@ -46,7 +46,7 @@ -
    +
    @@ -173,6 +173,24 @@ + + +
  • + + + 2.2. 基本操作符 + + + +
  • + +
  • + + + 2.3. 字符串和字符 + + +
  • @@ -197,28 +215,32 @@
    -
    +
    - + - + - + - + - + + + + +
    -
    +

    Swift 教程

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

    diff --git a/index.html b/index.html index 8f0db405..9474b9f7 100644 --- a/index.html +++ b/index.html @@ -44,7 +44,7 @@ -
    +
    @@ -171,6 +171,24 @@ + + +
  • + + + 2.2. 基本操作符 + + + +
  • + +
  • + + + 2.3. 字符串和字符 + + +
  • @@ -201,22 +219,26 @@ - + - + - + - + - + + + + +
    -
    +

    Swift 编程语言

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

    @@ -267,4 +289,3 @@ require(["gitbook"], function(gitbook) { - diff --git a/manifest.appcache b/manifest.appcache index 224a727d..d0064a40 100644 --- a/manifest.appcache +++ b/manifest.appcache @@ -1,5 +1,5 @@ CACHE MANIFEST -# Revision 1401895096943 +# Revision 1401919801866 CACHE: index.html @@ -7,6 +7,8 @@ chapter1/README.html chapter1/a_swift_tour.html chapter1/swift.html chapter2/article_1.html +chapter2/basic_operators.html +chapter2/strings_and_characters.html chapter2/the_basics.html gitbook/app.js gitbook/fonts/anonymouspro/400.woff diff --git a/search_index.json b/search_index.json index 2449e4bf..22aa40d1 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_12":["2014","languag","program","swift","undefinedundefin","wwdc"],"chapter1/README.html#gitbook_13":["swift","undefinedundefin"],"chapter1/a_swift_tour.html#gitbook_14":["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/swift.html#gitbook_15":["arc","automat","c","cocoa","cocoa的基础上构建框架栈并将其标准化。objective-c","count","c的兼容性的限制。swift","foundat","hello","io","objective-c","os","refer","swift","touch","undefinedundefin","world","x"],"chapter2/article_1.html#gitbook_16":["0","0.0","10","3.14159","array和dictionari","c","currentloginattempt","hello","int是整型;double和float是浮点型;bool是布尔型;string是字符串。swift","io","let来声明常量,用var","maximumnumberofloginattempt","maximumnumberofloginattempts或者welcomemessage)和一个指定类型的值(比如数字10或者字符串hello","maximumnumberofloginattempts的新常量,并给它一个值10。然后,声明一个名字是currentloginattempt的变量并将它的值初始化为0","nil","objective-c","option","os","string","string”的意思是“可以存储任意str","string,名字为welcomemessag","string,类型安全会阻止你不小心传入一个int","swift","swift可以推断出这个常量或者变量的类型,详情参见类型安全和类型推断(待添加链接)。在上面的例子中,没有给welcomemessag","tupl","undefinedundefin","unicod","var","welcomemessag","welcomemessage变量添加了类型标注,表示这个变量可以存储str","x","y","z"],"chapter2/the_basics.html#gitbook_17":["swift","undefinedundefin"]},"length":6},"tokenStore":{"root":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.01410105757931845},"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}},".":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707},"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.04918032786885246}}},"docs":{},".":{"3":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}},"1":{"0":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}}},"3":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123},"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}}},"1":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"2":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.004700352526439483}}},"3":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"6":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"9":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.009400705052878966}}},"2":{"0":{"1":{"4":{"docs":{"index.html#gitbook_12":{"ref":"index.html#gitbook_12","tf":0.1111111111111111}}},"docs":{}},"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"5":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.009400705052878966}},".":{"5":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{}}},"3":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.011750881316098707}},".":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}},"1":{"4":{"1":{"5":{"9":{"docs":{"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"5":{"9":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{}},"6":{"9":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{}},"7":{"9":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{}},"docs":{}}},"4":{"2":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}}},"3":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}}},"5":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}}},"9":{"7":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{}},"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.005875440658049354}},".":{"2":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{}}},"6":{"9":{"1":{"0":{"5":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{}},"docs":{}},"docs":{}},"docs":{}},"7":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}},".":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{}}},"5":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.004700352526439483}},".":{"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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"8":{"7":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}},":":{"0":{"9":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{}},"docs":{}}},"9":{"4":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}},".":{"9":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{}}},"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"index.html#gitbook_12":{"ref":"index.html#gitbook_12","tf":0.1111111111111111}}}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.004700352526439483}}}}}}}},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"t":{"docs":{},"来":{"docs":{},"声":{"docs":{},"明":{"docs":{},"常":{"docs":{},"量":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}},"用":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}}}}}}}}}}}}}},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}}},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"'":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}},"o":{"docs":{},"g":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"index.html#gitbook_12":{"ref":"index.html#gitbook_12","tf":0.1111111111111111}}}}}},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}},"e":{"docs":{},".":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"变":{"docs":{},"量":{"docs":{},"运":{"docs":{},"行":{"docs":{},"时":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},",":{"docs":{},"编":{"docs":{},"译":{"docs":{},"器":{"docs":{},"会":{"docs":{},"把":{"docs":{},"它":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"当":{"docs":{},"做":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}},"e":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}}},"i":{"docs":{},"e":{"docs":{},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"index.html#gitbook_12":{"ref":"index.html#gitbook_12","tf":10.444444444444445},"chapter1/README.html#gitbook_13":{"ref":"chapter1/README.html#gitbook_13","tf":10.75},"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":10.00587544065805},"chapter1/swift.html#gitbook_15":{"ref":"chapter1/swift.html#gitbook_15","tf":10.404761904761905},"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.19672131147540983},"chapter2/the_basics.html#gitbook_17":{"ref":"chapter2/the_basics.html#gitbook_17","tf":10.666666666666666}},"可":{"docs":{},"以":{"docs":{},"推":{"docs":{},"断":{"docs":{},"出":{"docs":{},"这":{"docs":{},"个":{"docs":{},"常":{"docs":{},"量":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"详":{"docs":{},"情":{"docs":{},"参":{"docs":{},"见":{"docs":{},"类":{"docs":{},"型":{"docs":{},"安":{"docs":{},"全":{"docs":{},"和":{"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/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.005875440658049354}},"中":{"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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"w":{"docs":{},"i":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}}}}}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}}}}}}}}}}}}},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"l":{"docs":{},"f":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.004700352526439483}},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}}}}}}}},"被":{"docs":{},"用":{"docs":{},"来":{"docs":{},"区":{"docs":{},"别":{"docs":{},"实":{"docs":{},"例":{"docs":{},"变":{"docs":{},"量":{"docs":{},"。":{"docs":{},"当":{"docs":{},"你":{"docs":{},"创":{"docs":{},"建":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},",":{"docs":{},"像":{"docs":{},"传":{"docs":{},"入":{"docs":{},"函":{"docs":{},"数":{"docs":{},"参":{"docs":{},"数":{"docs":{},"一":{"docs":{},"样":{"docs":{},"给":{"docs":{},"类":{"docs":{},"传":{"docs":{},"入":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"的":{"docs":{},"参":{"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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"6":{"docs":{},":":{"0":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}},"和":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}},"h":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}},"[":{"1":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.004700352526439483}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.012925969447708578}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.01527614571092832}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"z":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{}},"docs":{}},"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"[":{"1":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{}}}}},"u":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.004700352526439483}}}}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.011750881316098707}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0282021151586369},"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}},"”":{"docs":{},"的":{"docs":{},"意":{"docs":{},"思":{"docs":{},"是":{"docs":{},"“":{"docs":{},"可":{"docs":{},"以":{"docs":{},"存":{"docs":{},"储":{"docs":{},"任":{"docs":{},"意":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}}}}}}}}}}}}}}}}},",":{"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/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"安":{"docs":{},"全":{"docs":{},"会":{"docs":{},"阻":{"docs":{},"止":{"docs":{},"你":{"docs":{},"不":{"docs":{},"小":{"docs":{},"心":{"docs":{},"传":{"docs":{},"入":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}},"u":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}},"i":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.004700352526439483}},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"添":{"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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}},"o":{"docs":{},"f":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}},"(":{"4":{"2":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{}},"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}},"n":{"docs":{},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}}}}}}}}}}},"u":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}},"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_12":{"ref":"index.html#gitbook_12","tf":0.1111111111111111},"chapter1/README.html#gitbook_13":{"ref":"chapter1/README.html#gitbook_13","tf":0.25},"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707},"chapter1/swift.html#gitbook_15":{"ref":"chapter1/swift.html#gitbook_15","tf":0.023809523809523808},"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082},"chapter2/the_basics.html#gitbook_17":{"ref":"chapter2/the_basics.html#gitbook_17","tf":0.3333333333333333}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.03278688524590164}}}}}}},".":{"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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}},"w":{"docs":{},"w":{"docs":{},"d":{"docs":{},"c":{"docs":{"index.html#gitbook_12":{"ref":"index.html#gitbook_12","tf":0.1111111111111111}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}},"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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414},"chapter1/swift.html#gitbook_15":{"ref":"chapter1/swift.html#gitbook_15","tf":0.023809523809523808}}}}}},"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/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.04918032786885246}},"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/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.004700352526439483}},"e":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}},"d":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}},"o":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.007050528789659225}}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"(":{"docs":{},"[":{"1":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.004700352526439483}},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"u":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}},"c":{"docs":{"chapter1/swift.html#gitbook_15":{"ref":"chapter1/swift.html#gitbook_15","tf":0.023809523809523808}}},"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/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/swift.html#gitbook_15":{"ref":"chapter1/swift.html#gitbook_15","tf":0.023809523809523808}}}}}}}}},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.004700352526439483}}}},"t":{"docs":{},"t":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707},"chapter1/swift.html#gitbook_15":{"ref":"chapter1/swift.html#gitbook_15","tf":0.023809523809523808},"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.06557377049180328}},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}},"r":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}},"(":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.024676850763807285}}}},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.010575793184488837}}}}},"u":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}}}}},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414},"chapter1/swift.html#gitbook_15":{"ref":"chapter1/swift.html#gitbook_15","tf":0.023809523809523808}},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"(":{"2":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"a":{"docs":{"chapter1/swift.html#gitbook_15":{"ref":"chapter1/swift.html#gitbook_15","tf":0.07142857142857142}},"的":{"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/swift.html#gitbook_15":{"ref":"chapter1/swift.html#gitbook_15","tf":0.023809523809523808}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}},"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":{"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"性":{"docs":{},"的":{"docs":{},"限":{"docs":{},"制":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter1/swift.html#gitbook_15":{"ref":"chapter1/swift.html#gitbook_15","tf":0.023809523809523808}}}}}}}}}}}}}}}},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}}}},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}},"i":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}}}}}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"<":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.012925969447708578}},"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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.005875440658049354}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}},";":{"docs":{},"和":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}},"a":{"docs":{},"l":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.005875440658049354}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}}},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}},"l":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}},"i":{"docs":{},"b":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}},"并":{"docs":{},"指":{"docs":{},"定":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{},"为":{"4":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}},"u":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/swift.html#gitbook_15":{"ref":"chapter1/swift.html#gitbook_15","tf":0.023809523809523808}}}}}}}},"r":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0282021151586369}},"来":{"docs":{},"声":{"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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{},"g":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}},"s":{"docs":{},"和":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}},"o":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}},"(":{"docs":{},"\"":{"docs":{},"b":{"docs":{},"o":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.004700352526439483}},"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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.005875440658049354},"chapter1/swift.html#gitbook_15":{"ref":"chapter1/swift.html#gitbook_15","tf":0.023809523809523808},"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}}}}}}},"i":{"docs":{},"f":{"docs":{},"和":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"来":{"docs":{},"处":{"docs":{},"理":{"docs":{},"值":{"docs":{},"缺":{"docs":{},"失":{"docs":{},"的":{"docs":{},"情":{"docs":{},"况":{"docs":{},"。":{"docs":{},"有":{"docs":{},"些":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"值":{"docs":{},"是":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"值":{"docs":{},"可":{"docs":{},"能":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"具":{"docs":{},"体":{"docs":{},"的":{"docs":{},"值":{"docs":{},"或":{"docs":{},"者":{"docs":{},"是":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"来":{"docs":{},"进":{"docs":{},"行":{"docs":{},"条":{"docs":{},"件":{"docs":{},"操":{"docs":{},"作":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{},"、":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"、":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"和":{"docs":{},"d":{"docs":{},"o":{"docs":{},"-":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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":{},"i":{"docs":{},"f":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}},"(":{"7":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"docs":{}},"b":{"docs":{},"y":{"docs":{},"(":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}}}}}}}}}},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.024676850763807285}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}}}}}}}}},"是":{"docs":{},"整":{"docs":{},"型":{"docs":{},";":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"和":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"是":{"docs":{},"浮":{"docs":{},"点":{"docs":{},"型":{"docs":{},";":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"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":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}}}}}}}},"o":{"docs":{"chapter1/swift.html#gitbook_15":{"ref":"chapter1/swift.html#gitbook_15","tf":0.047619047619047616},"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}}}},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}}}}},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}},"k":{"docs":{},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}},"e":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"g":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}}}}}},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.005875440658049354}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}},"k":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}}}}}}}},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}},"x":{"docs":{},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{},"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/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}},"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/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}}}}}}}}}}}}},"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/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}}}}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.005875440658049354}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.022326674500587545}},"d":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}}}}}}}},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707},"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.03278688524590164}},",":{"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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}},"w":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.01645123384253819}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.007050528789659225}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}},"s":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707},"chapter1/swift.html#gitbook_15":{"ref":"chapter1/swift.html#gitbook_15","tf":0.09523809523809523},"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.08196721311475409}}}}}}}}}}}},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414},"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}},"a":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{},"<":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}},"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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{"chapter1/swift.html#gitbook_15":{"ref":"chapter1/swift.html#gitbook_15","tf":0.047619047619047616},"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}}}}}}},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"k":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.004700352526439483}},".":{"docs":{},"a":{"docs":{},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"(":{"3":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}},"p":{"docs":{},"e":{"docs":{},"a":{"docs":{},"t":{"docs":{},"(":{"docs":{},"\"":{"docs":{},"k":{"docs":{},"n":{"docs":{},"o":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.005875440658049354}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}},"u":{"docs":{},"n":{"docs":{},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.03525264394829612}},"f":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}}}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/swift.html#gitbook_15":{"ref":"chapter1/swift.html#gitbook_15","tf":0.023809523809523808}}}}}},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}}}},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.004700352526439483}},".":{"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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}},"e":{"docs":{},"a":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}},"m":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.004700352526439483}}}}}}}},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}},".":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123}}}}},"o":{"docs":{},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"和":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/swift.html#gitbook_15":{"ref":"chapter1/swift.html#gitbook_15","tf":0.023809523809523808}}}}}},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.004700352526439483}},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}},".":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}}}}},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}},"l":{"docs":{},"i":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}},"p":{"docs":{},"l":{"docs":{"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}}}}},"w":{"docs":{},"o":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.04935370152761457},"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.04918032786885246}}}},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.004700352526439483}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}},"x":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0023501762632197414},"chapter1/swift.html#gitbook_15":{"ref":"chapter1/swift.html#gitbook_15","tf":0.047619047619047616},"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.04918032786885246}},".":{"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/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0011750881316098707}}}}}}},"y":{"docs":{"chapter1/a_swift_tour.html#gitbook_14":{"ref":"chapter1/a_swift_tour.html#gitbook_14","tf":0.0035252643948296123},"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}}},"z":{"docs":{"chapter2/article_1.html#gitbook_16":{"ref":"chapter2/article_1.html#gitbook_16","tf":0.01639344262295082}}}},"length":420},"corpusTokens":["0","0..3","0..time","0.0","1","10","100","103","11","12","13","16","19","2","2.5","20","2014","25","3","3.0","3.1","3.14159","3.59","3.69","3.79","4","42","43","5","5.2","50","597","69105","7","7.simpledescript","70","70.0","75","8","87","8:09","9","9.9","94","a.adjust","a.simpledescript","ac","ace.toraw","acerawvalu","add","addon","addone(numb","adescript","adjust","amount","anoth","anotherproperti","ant","anycommonel","anycommonelements([1","appl","applese","applesummari","arc","area","array和dictionari","automat","b","b.adjust","b.simpledescript","bdescript","blue","bool","bottl","c","captain","card","card(rank","card添加一个方法,创建一副完整的扑克牌并把每张牌的rank和suit","case","catfish","celeri","chees","class","club","cocoa","cocoa的基础上构建框架栈并将其标准化。objective-c","condit","condition(item","convertedrank","convertedrank.simpledescript","count","counter","counter.incrementby(2","cucumb","currentloginattempt","c的兼容性的限制。swift","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","string”的意思是“可以存储任意str","string,名字为welcomemessag","string,类型安全会阻止你不小心传入一个int","struct","structur","success","suit","suit.heart","suit.simpledescript","suit添加一个color方法,对spades和clubs返回“black”,对hearts和diamonds返回“r","sum","sumof","sumof(42","sumof(numb","sunris","sunset","super.init(nam","swift","swift可以推断出这个常量或者变量的类型,详情参见类型安全和类型推断(待添加链接)。在上面的例子中,没有给welcomemessag","switch","switch中匹配到的子句之后,程序会退出switch语句,并不会继续向下运行,所以不需要在每个子句结尾写break","t","t.generatortype.el","tast","tea","teamscor","ten","test","test.area","test.simpledescript","three","threedescript","threeofspad","threeofspades.simpledescript","threeofspadesdescript","time","todai","toraw和fromraw","touch","triagl","triangl","triangle.perimet","triangle.sidelength","triangleandsquar","triangleandsquare(s","triangleandsquare.squar","triangleandsquare.square.sidelength","triangleandsquare.triangle.sidelength","true","tuesdai","tulip","tupl","two","type","u","u.generatortype.el","uncom","undefinedundefin","unicod","var","veget","vegetablecom","veri","water","watercress","welcomemessag","welcomemessage变量添加了类型标注,表示这个变量可以存储str","where,只在冒号后面写接口或者类名。<t","width","widthlabel","willset","willset和didset","world","wwdc","x","x.hassuffix(\"pepp","xcode","y","z"],"pipeline":["trimmer","stopWordFilter","stemmer"]}t和didset","world","wwdc","x","x.hassuffix(\"pepp","xcode","y","z"],"pipeline":["trimmer","stopWordFilter","stemmer"]}"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0011862396204033216}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0035587188612099642}}}}},"o":{"docs":{},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0011862396204033216}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"和":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0011862396204033216}}}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{},"框":{"docs":{},"架":{"docs":{},"。":{"docs":{},"拥":{"docs":{},"有":{"docs":{},"了":{"docs":{},"这":{"docs":{},"些":{"docs":{},"特":{"docs":{},"性":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter1/swift.html#gitbook_9":{"ref":"chapter1/swift.html#gitbook_9","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0011862396204033216}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.004744958481613286}},"e":{"docs":{},".":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.002372479240806643}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.002372479240806643}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.002372479240806643}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0011862396204033216}}}},".":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0011862396204033216}},"e":{"docs":{},".":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0011862396204033216}}}}}}}}}}}}}}}}}}},"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/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.002372479240806643}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.002372479240806643}}}}},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0011862396204033216}}}}}}},"l":{"docs":{},"i":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0011862396204033216}}}}}},"w":{"docs":{},"o":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0011862396204033216}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0011862396204033216}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0498220640569395},"chapter2/article_1.html#gitbook_10":{"ref":"chapter2/article_1.html#gitbook_10","tf":0.09090909090909091}}}},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.002372479240806643}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.004744958481613286}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0011862396204033216}}}}}},"w":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.002372479240806643}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0011862396204033216}}}}}}}}}}},"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/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0011862396204033216}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.002372479240806643}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0011862396204033216}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.002372479240806643}},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0011862396204033216}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0011862396204033216}},"”":{"docs":{},"。":{"docs":{},"在":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0011862396204033216}}}}}}}}},"这":{"docs":{},"样":{"docs":{},"的":{"docs":{},"小":{"docs":{},"程":{"docs":{},"序":{"docs":{},",":{"docs":{},"也":{"docs":{},"可":{"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":{"chapter1/swift.html#gitbook_9":{"ref":"chapter1/swift.html#gitbook_9","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"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/article_1.html#gitbook_10":{"ref":"chapter2/article_1.html#gitbook_10","tf":0.09090909090909091}},"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/article_1.html#gitbook_10":{"ref":"chapter2/article_1.html#gitbook_10","tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.002372479240806643},"chapter2/article_1.html#gitbook_10":{"ref":"chapter2/article_1.html#gitbook_10","tf":0.030303030303030304}},".":{"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/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0011862396204033216}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0011862396204033216}}}}}},"应":{"docs":{},"用":{"docs":{},"将":{"docs":{},"是":{"docs":{},"一":{"docs":{},"场":{"docs":{},"美":{"docs":{},"妙":{"docs":{},"的":{"docs":{},"体":{"docs":{},"验":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"之":{"docs":{},"后":{"docs":{},"也":{"docs":{},"会":{"docs":{},"不":{"docs":{},"断":{"docs":{},"开":{"docs":{},"发":{"docs":{},"新":{"docs":{},"特":{"docs":{},"性":{"docs":{},"和":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"性":{"docs":{},"。":{"docs":{},"我":{"docs":{},"们":{"docs":{},"对":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter1/swift.html#gitbook_9":{"ref":"chapter1/swift.html#gitbook_9","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"程":{"docs":{},"序":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"结":{"docs":{},"合":{"docs":{},"了":{"docs":{},"c":{"docs":{},"和":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"的":{"docs":{},"优":{"docs":{},"点":{"docs":{},"并":{"docs":{},"且":{"docs":{},"不":{"docs":{},"受":{"docs":{},"c":{"docs":{},"的":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"性":{"docs":{},"的":{"docs":{},"限":{"docs":{},"制":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"使":{"docs":{},"用":{"docs":{},"安":{"docs":{},"全":{"docs":{},"的":{"docs":{},"编":{"docs":{},"程":{"docs":{},"模":{"docs":{},"式":{"docs":{},"并":{"docs":{},"添":{"docs":{},"加":{"docs":{},"了":{"docs":{},"很":{"docs":{},"多":{"docs":{},"新":{"docs":{},"特":{"docs":{},"性":{"docs":{},",":{"docs":{},"这":{"docs":{},"将":{"docs":{},"使":{"docs":{},"编":{"docs":{},"程":{"docs":{},"更":{"docs":{},"简":{"docs":{},"单":{"docs":{},",":{"docs":{},"扩":{"docs":{},"展":{"docs":{},"性":{"docs":{},"更":{"docs":{},"强":{"docs":{},",":{"docs":{},"也":{"docs":{},"更":{"docs":{},"有":{"docs":{},"趣":{"docs":{},"。":{"docs":{},"除":{"docs":{},"此":{"docs":{},"之":{"docs":{},"外":{"docs":{},",":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"还":{"docs":{},"支":{"docs":{},"持":{"docs":{},"人":{"docs":{},"见":{"docs":{},"人":{"docs":{},"爱":{"docs":{},"的":{"docs":{},"c":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"a":{"docs":{},"和":{"docs":{},"c":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"a":{"docs":{"chapter1/swift.html#gitbook_9":{"ref":"chapter1/swift.html#gitbook_9","tf":0.06666666666666667}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"开":{"docs":{},"发":{"docs":{},"的":{"docs":{},"一":{"docs":{},"门":{"docs":{},"新":{"docs":{},"语":{"docs":{},"言":{"docs":{},"。":{"docs":{},"然":{"docs":{},"而":{"docs":{},",":{"docs":{},"如":{"docs":{},"果":{"docs":{},"你":{"docs":{},"有":{"docs":{},"c":{"docs":{},"或":{"docs":{},"者":{"docs":{},"o":{"docs":{},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{},"开":{"docs":{},"发":{"docs":{},"经":{"docs":{},"验":{"docs":{},"的":{"docs":{},"话":{"docs":{},",":{"docs":{},"你":{"docs":{},"会":{"docs":{},"发":{"docs":{},"现":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/article_1.html#gitbook_10":{"ref":"chapter2/article_1.html#gitbook_10","tf":0.030303030303030304}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"y":{"docs":{"chapter1/a_swift_tour.html#gitbook_8":{"ref":"chapter1/a_swift_tour.html#gitbook_8","tf":0.0035587188612099642},"chapter2/article_1.html#gitbook_10":{"ref":"chapter2/article_1.html#gitbook_10","tf":0.030303030303030304}}},"z":{"docs":{"chapter2/article_1.html#gitbook_10":{"ref":"chapter2/article_1.html#gitbook_10","tf":0.030303030303030304}}}},"length":409},"corpusTokens":["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","arc)来简化内存管理。我们在foundation和cocoa的基础上构建框架栈并将其标准化。objective-c","area","b","b.adjust","b.simpledescript","bdescript","blue","bool","bottl","captain","card","card(rank","card添加一个方法,创建一副完整的扑克牌并把每张牌的rank和suit","case","catfish","celeri","chees","class","club","condit","condition(item","convertedrank","convertedrank.simpledescript","count","counter","counter.incrementby(2","cucumb","currentloginattempt","c或者objective-c代码,那你应该很熟悉这种形式——在swift中,这行代码就是一个完整的程序。你不需要为了输入输出或者字符串处理导入一个单独的库。全局作用域中的代码会被自动当做程序的入口点,所以你也不需要main","c语言一样,swift使用变量来进行存储并通过变量名来关联值。在swift中,值不可变的变量有着广泛的应用,它们就是常量,而且比c语言的常量更强大。在swift","dai","default","deinit","diamond","dictionary(item","result","result(str","result(sunris","return","returnfifteen","rh","rhsitem","sandwich","score","secondforloop","see","self","self.nam","self.sidelength","self被用来区别实例变量。当你创建实例的时候,像传入函数参数一样给类传入构造器的参数。每个属性都需要赋值——无论是通过声明(就像numberofsides)还是通过构造器(就像nam","sequenc","serverrespons","serverresponse.error(\"out","serverresponse.result(\"6:00","serverresponse和switch","set","seven","shape","shape.numberofsid","shape.simpledescript","shapedescript","shape类缺少了一些重要的东西:一个构造函数来初始化类实例。使用init","shoppinglist","shoppinglist[1","side","sidelength","simpl","simpleclass","simpledescript","simplestructur","simplestructure时候mutating关键字用来标记一个会修改结构体的方法。simpleclass","six","size","some(100","some(t","sort([1","soup","spade","spici","squar","square(sidelength","square.sidelength","standard","string","string(self.toraw","string(width","string”的意思是“可以存储任意str","string,名字为welcomemessag","struct","structur","success","suit","suit.heart","suit.simpledescript","suit添加一个color方法,对spades和clubs返回“black”,对hearts和diamonds返回“r","sum","sumof","sumof(42","sumof(numb","sunris","sunset","super.init(nam","swift","swift可以推断出这个常量或者变量的类型,详情参见类型安全和类型推断(待添加链接)。在上面的例子中,没有给welcomemessag","swift对于初学者来说也很友好。它是第一个既满足工业标准又像脚本语言一样充满表现力和趣味的编程语言。它支持代码预览,这个革命性的特性可以允许程序员在不编译和运行应用程序的前提下运行swift","swift将现代编程语言的精华和苹果工程师文化的智慧结合了起来。编译器对性能进行了优化,编程语言对开发进行了优化,两者互不干扰,鱼与熊掌兼得。swift即可以用于开发“hello","swift是ios和o","swift是一个类型安全的语言,可选就是一个很好的例子。swift可以让你清楚地知道值的类型。如果你的代码期望得到一个string,类型安全会阻止你不小心传入一个int","swift是一种新的编程语言,用于编写ios和o","swift是苹果在wwdc2014上发布的一款全新的编程语言,本书译自苹果官方的swift教程《th","swift的开发从很久之前就开始了。为了给swift打好基础,苹果公司改进了编译器,调试器和框架结构。我们使用自动引用计数(automat","swift的特性和开发历史,并对swift","swift的类型是在c和objective-c的基础上提出的,int是整型;double和float是浮点型;bool是布尔型;string是字符串。swift还有两个有用的集合类型,array和dictionari","swift编写ios和o","swift还增加了objective-c中没有的类型比如元组(tupl","swift还增加了可选(optional)类型,用于处理值缺失的情况。可选表示“那儿有一个值,并且它等于x”或者“那儿没有值”。可选有点像在objective-c中使用nil,但是它可以用在任何类型上,不仅仅是类。可选类型比objective-c中的nil指针更加安全也更具表现力,它是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","touch框架。拥有了这些特性,swift","triagl","triangl","triangle.perimet","triangle.sidelength","triangleandsquar","triangleandsquare(s","triangleandsquare.squar","triangleandsquare.square.sidelength","triangleandsquare.triangle.sidelength","true","tuesdai","tulip","two","type","u","u.generatortype.el","uncom","undefinedundefin","var","veget","vegetablecom","veri","water","watercress","welcomemessag","welcomemessage变量添加了类型标注,表示这个变量可以存储str","where,只在冒号后面写接口或者类名。<t","width","widthlabel","willset","willset和didset","world","world”。在swift","world”这样的小程序,也可以用于开发一个完整的操作系统。所有的这些特性让swift","x","x.hassuffix(\"pepp","xcode","x应用将是一场美妙的体验,swift之后也会不断开发新特性和兼容性。我们对swift","x应用开发的一门新语言。然而,如果你有c或者objective-c开发经验的话,你会发现swift","x应用程序。swift结合了c和objective-c的优点并且不受c的兼容性的限制。swift使用安全的编程模式并添加了很多新特性,这将使编程更简单,扩展性更强,也更有趣。除此之外,swift还支持人见人爱的cocoa和cocoa","y","z"],"pipeline":["trimmer","stopWordFilter","stemmer"]} \ No newline at end of file +{"version":"0.5.2","fields":[{"name":"title","boost":10},{"name":"body","boost":1}],"ref":"url","documentStore":{"store":{"index.html#gitbook_5":["2014","languag","program","swift","undefinedundefin","wwdc"],"chapter1/README.html#gitbook_6":["swift","undefinedundefin"],"chapter1/a_swift_tour.html#gitbook_7":["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/swift.html#gitbook_8":["arc","automat","c","cocoa","cocoa的基础上构建框架栈并将其标准化。objective-c","count","c的兼容性的限制。swift","foundat","hello","io","objective-c","os","refer","swift","touch","undefinedundefin","world","x"],"chapter2/article_1.html#gitbook_9":["0","0.0","10","3.14159","array和dictionari","bonjour","c","chang","cocoa里的nslog函数一样,println","compile-tim","current","currentloginattempt","dogcow","error","friendlywelcom","friendlywelcome的值从"hello!"改为了"bonjour!"","hello","interpolation)的方式把常量名或者变量名当做占位符加入到长字符串中,swift会用当前常量或变量的值替换这些占位符。将常量或变量名放入反斜杠符加一对圆括号中"\\()"","int是整型;double和float是浮点型;bool是布尔型;string是字符串。swift","io","languagenam","let来声明常量,用var","maximumnumberofloginattempt","maximumnumberofloginattempts或者welcomemessage)和一个指定类型的值(比如数字10或者字符串hello","maximumnumberofloginattempts的新常量,并给它一个值10。然后,声明一个名字是currentloginattempt的变量并将它的值初始化为0","nil","now","objective-c","option","os","print","println","println(\"th","println(\"thi","println(friendlywelcom","println函数输出传入的str","println是一个用来输出的全局函数,输出的内容会在最后带换行。如果你用xcode,println将会输出内容到“console”面板上。(另一种函数叫print","string","string”的意思是“可以存储任意str","string,名字为welcomemessag","string,类型安全会阻止你不小心传入一个int","swift","swift可以推断出这个常量或者变量的类型,详情参见类型安全和类型推断(待添加链接)。在上面的例子中,没有给welcomemessag","swift用字符串插值(str","tupl","undefinedundefin","unicod","valu","var","welcomemessag","welcomemessage变量添加了类型标注,表示这个变量可以存储str","x","y","z"],"chapter2/basic_operators.html#gitbook_10":["undefinedundefin"],"chapter2/strings_and_characters.html#gitbook_11":["0","1","10","103","111","128054","128054,是一个十六进制1f436","144","159","16","182","2","2.5","21","240","3","33","39","4","40","5","55357","56374","6","68","7.5","8","act","act1scenecount","alik","anoth","anotheremptystr","api","ascii","blackheart","boolean","c","capulet'","carriag","cell","charact","character1","character2","characterpluscharact","characterplusstr","characters)字符串字面量初始化空字符串字符串可变性字符串是值类型使用字符(characters)计算字符数量连接字符串和字符字符串插值比较字符串字符串相等前缀/后缀相等大写和小写字符串unicodeunicod","cocoa","codeunit","compile-tim","consid","constantstr","countel","countelements(unusualmenageri","d","dog","dogstr","dogstring.unicodescalar","dogstring.utf16","dogstring.utf8","dollarsign","dollarsign、blackheart","double(multipli","dromedari","einstein","empti","emptystr","emptystring.isempti","enumer","equal","error","for-in","foundat","friar","g","good","great","hall","hasprefix","hasprefix/hassuffix","hello","help","here","highland","hors","imagin","import","initi","instruct","isempti","knowledg","koala","lawrence'","length","liter","look","loop","lot","lowercasestr","mansion","messag","more","morn","multipli","n","nn","nnnn","nnnnnnnn","normal","normal.lowercasestr","normal.uppercasestr","noth","nsmutablestr","nsstring","o","objective-c","orchard","outsid","over","penguin","place","pleas","print","print(\"\\(codeunit","print(\"\\(scalar.valu","print(\"\\n","println(\"\\(scalar","println(\"noth","println(\"ther","println(\"thes","println(\"unusualmenageri","println(charact","public","quot","quot;a"),u+1f425","quot;albatross"。swift","quot;hello","quot;🐥"","quotat","r","romeoandjuliet","room","samequot","scalar","scene","scene.hasprefix(\"act","see","shouti","snail","somestr","sparklingheart","street","string","string1","string2","stringpluscharact","stringplusstr","structur","swift","syntax","t","terminolog","time","touch","two","type","u+0024","u+0061","u+1f436","u+1f496","u+2665","u+d83d","u+dc36","u0001f496","u2665","uin8","uint16","uint32","uint8","undefinedundefin","unicod","unicodescalar","unicodescalarview","unnnn","unnnnnnnn","unusualmenageri","uppercasestr","us","utf-16","utf-8","utf-8utf-16unicod","utf16","utf16count","utf16view","utf8","utf8view","valu","var","variablestr","verona","we'r","welcom","whisper","wiseword","work","world"","x24","xnn","yensign"],"chapter2/the_basics.html#gitbook_12":["swift","undefinedundefin"]},"length":8},"tokenStore":{"root":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.01410105757931845},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}},".":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.029411764705882353}}},"docs":{},".":{"3":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}},"1":{"0":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}},"3":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"1":{"1":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"2":{"8":{"0":{"5":{"4":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},",":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"十":{"docs":{},"六":{"docs":{},"进":{"docs":{},"制":{"1":{"docs":{},"f":{"4":{"3":{"6":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}}},"3":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"4":{"4":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"docs":{}},"5":{"9":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"docs":{}},"6":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"8":{"2":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"docs":{}},"9":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.009400705052878966},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.01841620626151013}}},"2":{"0":{"1":{"4":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.1111111111111111}}},"docs":{}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"1":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.007366482504604052}}},"4":{"0":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"docs":{}},"5":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.009400705052878966},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.014732965009208104}},".":{"5":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.009208103130755065}}},"docs":{}}},"3":{"3":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}}},"9":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.007366482504604052}},".":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}},"1":{"4":{"1":{"5":{"9":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"5":{"9":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"6":{"9":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"7":{"9":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"docs":{}}},"4":{"0":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"2":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}},"3":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}},"5":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}},"5":{"3":{"5":{"7":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}},"docs":{}},"docs":{}},"docs":{}},"6":{"3":{"7":{"4":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}},"docs":{}},"docs":{}},"docs":{}},"9":{"7":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.005875440658049354},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}},".":{"2":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}}},"6":{"8":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}}},"9":{"1":{"0":{"5":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"7":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},".":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}}},"5":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}},".":{"5":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"8":{"7":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}},":":{"0":{"9":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"docs":{}}},"9":{"4":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},".":{"9":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}}},"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"a":{"docs":{},"g":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.1111111111111111}},"e":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.029411764705882353}}}}}}}}}}},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}},"r":{"docs":{},"g":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}}}}}}},"w":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{},"e":{"docs":{},"'":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}}},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}}}},"s":{"docs":{},"s":{"docs":{},"t":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"t":{"docs":{},"来":{"docs":{},"声":{"docs":{},"明":{"docs":{},"常":{"docs":{},"量":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"用":{"docs":{},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}},"i":{"docs":{},"b":{"docs":{},"r":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"'":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}},"o":{"docs":{},"g":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"o":{"docs":{},"k":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"p":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"w":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"g":{"docs":{},"r":{"docs":{},"a":{"docs":{},"m":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.1111111111111111}}}}}},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"e":{"docs":{},".":{"docs":{},"a":{"docs":{},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"变":{"docs":{},"量":{"docs":{},"运":{"docs":{},"行":{"docs":{},"时":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"是":{"docs":{},"s":{"docs":{},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},",":{"docs":{},"编":{"docs":{},"译":{"docs":{},"器":{"docs":{},"会":{"docs":{},"把":{"docs":{},"它":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},"当":{"docs":{},"做":{"docs":{},"e":{"docs":{},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"n":{"docs":{},"t":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.029411764705882353},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}},"l":{"docs":{},"n":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}},"(":{"docs":{},"\"":{"docs":{},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"t":{"docs":{},"h":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}},"i":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}},"e":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"s":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}},"\\":{"docs":{},"(":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}},"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/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}}}}}},"f":{"docs":{},"r":{"docs":{},"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}},"函":{"docs":{},"数":{"docs":{},"输":{"docs":{},"出":{"docs":{},"传":{"docs":{},"入":{"docs":{},"的":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"用":{"docs":{},"来":{"docs":{},"输":{"docs":{},"出":{"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":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},",":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"l":{"docs":{},"n":{"docs":{},"将":{"docs":{},"会":{"docs":{},"输":{"docs":{},"出":{"docs":{},"内":{"docs":{},"容":{"docs":{},"到":{"docs":{},"“":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"o":{"docs":{},"l":{"docs":{},"e":{"docs":{},"”":{"docs":{},"面":{"docs":{},"板":{"docs":{},"上":{"docs":{},"。":{"docs":{},"(":{"docs":{},"另":{"docs":{},"一":{"docs":{},"种":{"docs":{},"函":{"docs":{},"数":{"docs":{},"叫":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"\"":{"docs":{},"\\":{"docs":{},"(":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}}},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},".":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}}}}}}}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"e":{"docs":{},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"r":{"docs":{},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}},"n":{"docs":{},"g":{"docs":{},"u":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}},"i":{"docs":{},"e":{"docs":{},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"i":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}}},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"e":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}},"e":{"docs":{},"a":{"docs":{},"s":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}}}}},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":10.444444444444445},"chapter1/README.html#gitbook_6":{"ref":"chapter1/README.html#gitbook_6","tf":10.75},"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":10.00587544065805},"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":10.404761904761905},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.13725490196078433},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.027624309392265192},"chapter2/the_basics.html#gitbook_12":{"ref":"chapter2/the_basics.html#gitbook_12","tf":10.666666666666666}},"可":{"docs":{},"以":{"docs":{},"推":{"docs":{},"断":{"docs":{},"出":{"docs":{},"这":{"docs":{},"个":{"docs":{},"常":{"docs":{},"量":{"docs":{},"或":{"docs":{},"者":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"类":{"docs":{},"型":{"docs":{},",":{"docs":{},"详":{"docs":{},"情":{"docs":{},"参":{"docs":{},"见":{"docs":{},"类":{"docs":{},"型":{"docs":{},"安":{"docs":{},"全":{"docs":{},"和":{"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"用":{"docs":{},"字":{"docs":{},"符":{"docs":{},"串":{"docs":{},"插":{"docs":{},"值":{"docs":{},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.005875440658049354}},"中":{"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"w":{"docs":{},"i":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}},"m":{"docs":{},"e":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":1.6777163904235726}}}}}},"e":{"docs":{},"n":{"docs":{},"e":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.02578268876611418}},".":{"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/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}}}}}}}}}},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"l":{"docs":{},"f":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}},".":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}},"被":{"docs":{},"用":{"docs":{},"来":{"docs":{},"区":{"docs":{},"别":{"docs":{},"实":{"docs":{},"例":{"docs":{},"变":{"docs":{},"量":{"docs":{},"。":{"docs":{},"当":{"docs":{},"你":{"docs":{},"创":{"docs":{},"建":{"docs":{},"实":{"docs":{},"例":{"docs":{},"的":{"docs":{},"时":{"docs":{},"候":{"docs":{},",":{"docs":{},"像":{"docs":{},"传":{"docs":{},"入":{"docs":{},"函":{"docs":{},"数":{"docs":{},"参":{"docs":{},"数":{"docs":{},"一":{"docs":{},"样":{"docs":{},"给":{"docs":{},"类":{"docs":{},"传":{"docs":{},"入":{"docs":{},"构":{"docs":{},"造":{"docs":{},"器":{"docs":{},"的":{"docs":{},"参":{"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"n":{"docs":{},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}},"v":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"h":{"docs":{},"a":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"p":{"docs":{},"p":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"[":{"1":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.012925969447708578}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"e":{"docs":{},"c":{"docs":{},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"x":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"z":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"(":{"1":{"0":{"0":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"docs":{}},"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}},"r":{"docs":{},"t":{"docs":{},"(":{"docs":{},"[":{"1":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}}}}},"u":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}}}},"r":{"docs":{},"k":{"docs":{},"l":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}}}}}}},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.011750881316098707}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"1":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.007366482504604052}}},"2":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0282021151586369},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.029411764705882353},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":1.7053406998158378}},"(":{"docs":{},"s":{"docs":{},"e":{"docs":{},"l":{"docs":{},"f":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}},"w":{"docs":{},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}},"”":{"docs":{},"的":{"docs":{},"意":{"docs":{},"思":{"docs":{},"是":{"docs":{},"“":{"docs":{},"可":{"docs":{},"以":{"docs":{},"存":{"docs":{},"储":{"docs":{},"任":{"docs":{},"意":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}},",":{"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}},"类":{"docs":{},"型":{"docs":{},"安":{"docs":{},"全":{"docs":{},"会":{"docs":{},"阻":{"docs":{},"止":{"docs":{},"你":{"docs":{},"不":{"docs":{},"小":{"docs":{},"心":{"docs":{},"传":{"docs":{},"入":{"docs":{},"一":{"docs":{},"个":{"docs":{},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}},"u":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}},"u":{"docs":{},"c":{"docs":{},"c":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}},"i":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}},".":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"添":{"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}},"o":{"docs":{},"f":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"(":{"4":{"2":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}},"n":{"docs":{},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}}},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}}}},"n":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}},"y":{"docs":{},"n":{"docs":{},"t":{"docs":{},"a":{"docs":{},"x":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}},"u":{"0":{"0":{"0":{"1":{"docs":{},"f":{"4":{"9":{"6":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}},"docs":{}},"docs":{}},"2":{"6":{"6":{"5":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"docs":{}},"docs":{}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}},"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_5":{"ref":"index.html#gitbook_5","tf":0.1111111111111111},"chapter1/README.html#gitbook_6":{"ref":"chapter1/README.html#gitbook_6","tf":0.25},"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745},"chapter2/basic_operators.html#gitbook_10":{"ref":"chapter2/basic_operators.html#gitbook_10","tf":1},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013},"chapter2/the_basics.html#gitbook_12":{"ref":"chapter2/the_basics.html#gitbook_12","tf":0.3333333333333333}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.0196078431372549},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":1.731123388581952}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}}}}}}}}}},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}},"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/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}}}}}}}}},".":{"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"+":{"0":{"0":{"2":{"4":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"6":{"1":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"docs":{}},"docs":{}},"1":{"docs":{},"f":{"4":{"3":{"6":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"docs":{}},"9":{"6":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"docs":{}},"docs":{}}},"2":{"6":{"6":{"5":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"docs":{}},"docs":{}},"docs":{},"d":{"8":{"3":{"docs":{},"d":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}},"docs":{}},"docs":{},"c":{"3":{"6":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"docs":{}}}},"i":{"docs":{},"n":{"8":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{},"t":{"1":{"6":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"docs":{}},"3":{"2":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"8":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}}}},"p":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"c":{"docs":{},"a":{"docs":{},"s":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}},"s":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"t":{"docs":{},"f":{"1":{"6":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}},"c":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}},"docs":{}},"8":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}},"v":{"docs":{},"i":{"docs":{},"e":{"docs":{},"w":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}},"docs":{},"-":{"1":{"6":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.014732965009208104}}},"docs":{}},"8":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.014732965009208104}},"u":{"docs":{},"t":{"docs":{},"f":{"docs":{},"-":{"1":{"6":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":1.6666666666666665}}}}}}}}},"docs":{}},"docs":{}}}}}},"docs":{}}}}},"w":{"docs":{},"w":{"docs":{},"d":{"docs":{},"c":{"docs":{"index.html#gitbook_5":{"ref":"index.html#gitbook_5","tf":0.1111111111111111}}}}},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}},"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"s":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}},"i":{"docs":{},"d":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"l":{"docs":{},"a":{"docs":{},"b":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"和":{"docs":{},"d":{"docs":{},"i":{"docs":{},"d":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}},"s":{"docs":{},"e":{"docs":{},"w":{"docs":{},"o":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808}},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}},"k":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}},"e":{"docs":{},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.029411764705882353}},"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"'":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}},"a":{"docs":{},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}},"e":{"docs":{},".":{"docs":{},"t":{"docs":{},"o":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}}}}}}}}}}},"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.02394106813996317}}}},"d":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}},"o":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"e":{"docs":{},"(":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}},"e":{"docs":{},"s":{"docs":{},"c":{"docs":{},"r":{"docs":{},"i":{"docs":{},"p":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.007050528789659225}}}}}}},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"n":{"docs":{},"o":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"e":{"docs":{},"r":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"p":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}}},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}}}}}}}}}},"p":{"docs":{},"p":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}},"e":{"docs":{},"s":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"u":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}},"i":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"c":{"docs":{"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808}}},"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}},"u":{"docs":{},"t":{"docs":{},"o":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808}}}}}}}},"l":{"docs":{},"i":{"docs":{},"k":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}},"s":{"docs":{},"c":{"docs":{},"i":{"docs":{},"i":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},".":{"docs":{},"a":{"docs":{},"d":{"docs":{},"j":{"docs":{},"u":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}},"l":{"docs":{},"u":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}},"o":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}},"e":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}},"t":{"docs":{},"t":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"n":{"docs":{},"j":{"docs":{},"o":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.0392156862745098}}}}}}}}},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.0392156862745098},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"a":{"docs":{},"p":{"docs":{},"t":{"docs":{},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"u":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"'":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.01289134438305709}}}}}}}},"r":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"(":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}},"s":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.024676850763807285}}}},"t":{"docs":{},"f":{"docs":{},"i":{"docs":{},"s":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"l":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}},"h":{"docs":{},"e":{"docs":{},"e":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.022099447513812154}},"e":{"docs":{},"r":{"1":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.009208103130755065}}},"2":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"docs":{},"p":{"docs":{},"l":{"docs":{},"u":{"docs":{},"s":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}},"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":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"a":{"docs":{},"c":{"docs":{},"t":{"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":{},"写":{"docs":{},"和":{"docs":{},"小":{"docs":{},"写":{"docs":{},"字":{"docs":{},"符":{"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/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":1.6666666666666665}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.010575793184488837}}}}},"u":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"(":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"t":{"docs":{},"e":{"docs":{},"d":{"docs":{},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"k":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}},"t":{"docs":{},"a":{"docs":{},"n":{"docs":{},"t":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}}}},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808}},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}},".":{"docs":{},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{},"b":{"docs":{},"y":{"docs":{},"(":{"2":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}}}}}},"l":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}},"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/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"a":{"docs":{"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.07142857142857142},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.01289134438305709}},"的":{"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/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"-":{"docs":{},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}},"d":{"docs":{},"e":{"docs":{},"u":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"r":{"docs":{},"r":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.0196078431372549}},"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}},"的":{"docs":{},"兼":{"docs":{},"容":{"docs":{},"性":{"docs":{},"的":{"docs":{},"限":{"docs":{},"制":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808}}}}}}}}}}}}}}}},"d":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}},"a":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}},"e":{"docs":{},"f":{"docs":{},"a":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}}}},"i":{"docs":{},"n":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"i":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}}}},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"y":{"docs":{},"<":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.012925969447708578}},"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}},"(":{"docs":{},"m":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}}}}}}}}}}}}},"g":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}},"c":{"docs":{},"o":{"docs":{},"w":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"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/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}}}}}}},"t":{"docs":{},"f":{"1":{"6":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"8":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"a":{"docs":{},"r":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"、":{"docs":{},"b":{"docs":{},"l":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{},"h":{"docs":{},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"e":{"docs":{},"d":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}},"e":{"docs":{},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{},"e":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"y":{"docs":{},"a":{"docs":{},"r":{"docs":{},"r":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"d":{"docs":{},"i":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},".":{"docs":{},"i":{"docs":{},"s":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}}}}},"i":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.005875440658049354}},"e":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"&":{"docs":{},"g":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},";":{"docs":{},"和":{"docs":{},"&":{"docs":{},"l":{"docs":{},"t":{"docs":{},";":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"l":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}},"i":{"docs":{},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"(":{"docs":{},"e":{"docs":{},"r":{"docs":{},"r":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{},"y":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}},"x":{"docs":{},"a":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"p":{"docs":{},"r":{"docs":{},"o":{"docs":{},"t":{"docs":{},"o":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.005875440658049354}}}}}}}}}}}}}}},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}},"f":{"docs":{},"a":{"docs":{},"i":{"docs":{},"l":{"docs":{},"u":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}},"l":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}},"i":{"docs":{},"b":{"docs":{},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{},"c":{"docs":{},"c":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}},"r":{"docs":{},"s":{"docs":{},"t":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"l":{"docs":{},"o":{"docs":{},"o":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}}}}}}}}},"v":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"并":{"docs":{},"指":{"docs":{},"定":{"docs":{},"初":{"docs":{},"始":{"docs":{},"值":{"docs":{},"为":{"4":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}}}},"u":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"n":{"docs":{},"d":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}}}}}},"r":{"docs":{},"u":{"docs":{},"i":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"s":{"docs":{},"u":{"docs":{},"m":{"docs":{},"m":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.058823529411764705}},"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}},"u":{"docs":{},"n":{"docs":{},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0282021151586369}},"来":{"docs":{},"声":{"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"g":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}},"e":{"docs":{},"t":{"docs":{},"g":{"docs":{},"a":{"docs":{},"s":{"docs":{},"p":{"docs":{},"r":{"docs":{},"i":{"docs":{},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"s":{"docs":{},"和":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}},"o":{"docs":{},"o":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"(":{"docs":{},"\"":{"docs":{},"b":{"docs":{},"o":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}},"a":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"a":{"docs":{},"n":{"docs":{},"y":{"docs":{},"m":{"docs":{},"a":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"e":{"docs":{},"s":{"docs":{},"(":{"docs":{},"l":{"docs":{},"i":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"p":{"docs":{},"r":{"docs":{},"e":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"/":{"docs":{},"h":{"docs":{},"a":{"docs":{},"s":{"docs":{},"s":{"docs":{},"u":{"docs":{},"f":{"docs":{},"f":{"docs":{},"i":{"docs":{},"x":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}},"e":{"docs":{},"a":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}},"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.005875440658049354},"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.0196078431372549},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.007366482504604052}}}},"p":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}},"r":{"docs":{},"e":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}},"i":{"docs":{},"g":{"docs":{},"h":{"docs":{},"l":{"docs":{},"a":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"s":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}},"i":{"docs":{},"f":{"docs":{},"和":{"docs":{},"l":{"docs":{},"e":{"docs":{},"t":{"docs":{},"来":{"docs":{},"处":{"docs":{},"理":{"docs":{},"值":{"docs":{},"缺":{"docs":{},"失":{"docs":{},"的":{"docs":{},"情":{"docs":{},"况":{"docs":{},"。":{"docs":{},"有":{"docs":{},"些":{"docs":{},"变":{"docs":{},"量":{"docs":{},"的":{"docs":{},"值":{"docs":{},"是":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"。":{"docs":{},"一":{"docs":{},"个":{"docs":{},"可":{"docs":{},"选":{"docs":{},"的":{"docs":{},"值":{"docs":{},"可":{"docs":{},"能":{"docs":{},"是":{"docs":{},"一":{"docs":{},"个":{"docs":{},"具":{"docs":{},"体":{"docs":{},"的":{"docs":{},"值":{"docs":{},"或":{"docs":{},"者":{"docs":{},"是":{"docs":{},"n":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"t":{"docs":{},"c":{"docs":{},"h":{"docs":{},"来":{"docs":{},"进":{"docs":{},"行":{"docs":{},"条":{"docs":{},"件":{"docs":{},"操":{"docs":{},"作":{"docs":{},",":{"docs":{},"使":{"docs":{},"用":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"-":{"docs":{},"i":{"docs":{},"n":{"docs":{},"、":{"docs":{},"f":{"docs":{},"o":{"docs":{},"r":{"docs":{},"、":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{},"e":{"docs":{},"和":{"docs":{},"d":{"docs":{},"o":{"docs":{},"-":{"docs":{},"w":{"docs":{},"h":{"docs":{},"i":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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":{},"i":{"docs":{},"f":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{},"c":{"docs":{},"i":{"docs":{},"t":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"i":{"docs":{},"n":{"docs":{},"t":{"docs":{},"e":{"docs":{},"g":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}},"a":{"docs":{},"g":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"(":{"7":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"docs":{}},"b":{"docs":{},"y":{"docs":{},"(":{"docs":{},"a":{"docs":{},"m":{"docs":{},"o":{"docs":{},"u":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"d":{"docs":{},"i":{"docs":{},"v":{"docs":{},"i":{"docs":{},"d":{"docs":{},"u":{"docs":{},"a":{"docs":{},"l":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}}},"i":{"docs":{},"t":{"docs":{},"(":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"i":{"docs":{},"d":{"docs":{},"e":{"docs":{},"l":{"docs":{},"e":{"docs":{},"n":{"docs":{},"g":{"docs":{},"t":{"docs":{},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}},"i":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.024676850763807285}},"e":{"docs":{},"r":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{},"n":{"docs":{},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}},"p":{"docs":{},"o":{"docs":{},"l":{"docs":{},"a":{"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":{},"长":{"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":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"\\":{"docs":{},"(":{"docs":{},")":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"是":{"docs":{},"整":{"docs":{},"型":{"docs":{},";":{"docs":{},"d":{"docs":{},"o":{"docs":{},"u":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"和":{"docs":{},"f":{"docs":{},"l":{"docs":{},"o":{"docs":{},"a":{"docs":{},"t":{"docs":{},"是":{"docs":{},"浮":{"docs":{},"点":{"docs":{},"型":{"docs":{},";":{"docs":{},"b":{"docs":{},"o":{"docs":{},"o":{"docs":{},"l":{"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":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"u":{"docs":{},"c":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}}}}}}},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"t":{"docs":{},"y":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}}}}},"o":{"docs":{"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.047619047619047616},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}},"s":{"docs":{},"e":{"docs":{},"m":{"docs":{},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}},"j":{"docs":{},"a":{"docs":{},"c":{"docs":{},"k":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}},"o":{"docs":{},"h":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"k":{"docs":{},"a":{"docs":{},"y":{"docs":{},"l":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"e":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"i":{"docs":{},"n":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"g":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}},"n":{"docs":{},"o":{"docs":{},"w":{"docs":{},"l":{"docs":{},"e":{"docs":{},"d":{"docs":{},"g":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}},"o":{"docs":{},"a":{"docs":{},"l":{"docs":{},"a":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.005875440658049354}},"a":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"k":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"i":{"docs":{},"n":{"docs":{},"c":{"docs":{},"r":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}},"l":{"docs":{},"c":{"docs":{},"o":{"docs":{},"l":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"x":{"docs":{},"i":{"docs":{},"m":{"docs":{},"u":{"docs":{},"m":{"docs":{},"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}},"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}}}}}}}}}},"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/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"docs":{}},"docs":{}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}}}}}}}},"e":{"docs":{},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"s":{"docs":{},"s":{"docs":{},"a":{"docs":{},"g":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}},"l":{"docs":{},"t":{"docs":{},"i":{"docs":{},"p":{"docs":{},"l":{"docs":{},"i":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}}}}}}}}},"y":{"docs":{},"c":{"docs":{},"o":{"docs":{},"n":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"r":{"docs":{},"e":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.005875440658049354},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"a":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.022326674500587545}},"d":{"docs":{},"s":{"docs":{},"h":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"w":{"docs":{},"v":{"docs":{},"a":{"docs":{},"l":{"docs":{},"u":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}},"。":{"docs":{},"你":{"docs":{},"可":{"docs":{},"以":{"docs":{},"在":{"docs":{},"s":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}},"i":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.0196078431372549}},",":{"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"o":{"docs":{},"n":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}},"w":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}},"r":{"docs":{},"m":{"docs":{},"a":{"docs":{},"l":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},".":{"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/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}},"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/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"h":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}},"u":{"docs":{},"m":{"docs":{},"b":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.01645123384253819}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.007050528789659225}}}}},"t":{"docs":{},"i":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}},"s":{"docs":{},".":{"docs":{},"m":{"docs":{},"a":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"n":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}},"s":{"docs":{},"m":{"docs":{},"u":{"docs":{},"t":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{},"i":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.01841620626151013}}}}}}}}}},"o":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}},"b":{"docs":{},"j":{"docs":{},"e":{"docs":{},"c":{"docs":{},"t":{"docs":{},"i":{"docs":{},"v":{"docs":{},"e":{"docs":{},"-":{"docs":{},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.09523809523809523},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.049019607843137254},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}}}}},"c":{"docs":{},"c":{"docs":{},"u":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"p":{"docs":{},"t":{"docs":{},"i":{"docs":{},"o":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}},"a":{"docs":{},"l":{"docs":{},"n":{"docs":{},"a":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"t":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}},"r":{"docs":{},"a":{"docs":{},"n":{"docs":{},"g":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}},"c":{"docs":{},"h":{"docs":{},"a":{"docs":{},"r":{"docs":{},"d":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}},"v":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}},"r":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.047619047619047616},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}},"u":{"docs":{},"t":{"docs":{},"s":{"docs":{},"i":{"docs":{},"d":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}}}}}},"q":{"docs":{},"u":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}}}}},"o":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}},";":{"docs":{},"a":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},")":{"docs":{},",":{"docs":{},"u":{"docs":{},"+":{"1":{"docs":{},"f":{"4":{"2":{"5":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"docs":{}},"docs":{}}},"docs":{}}}}}}}}}}},"l":{"docs":{},"b":{"docs":{},"a":{"docs":{},"t":{"docs":{},"r":{"docs":{},"o":{"docs":{},"s":{"docs":{},"s":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{},";":{"docs":{},"。":{"docs":{},"s":{"docs":{},"w":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}}}}}}}}}}}}}}},"h":{"docs":{},"e":{"docs":{},"l":{"docs":{},"l":{"docs":{},"o":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}},"":{"docs":{},"":{"docs":{},"&":{"docs":{},"q":{"docs":{},"u":{"docs":{},"o":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}}},"a":{"docs":{},"t":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},"a":{"docs":{},"i":{"docs":{},"s":{"docs":{},"i":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"k":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}},".":{"docs":{},"a":{"docs":{},"c":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}},"e":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"i":{"docs":{},"m":{"docs":{},"p":{"docs":{},"l":{"docs":{},"e":{"docs":{},"m":{"docs":{},"e":{"docs":{},"n":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}},"l":{"docs":{},"a":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}},"s":{"docs":{},"u":{"docs":{},"l":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.005875440658049354}},"(":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"u":{"docs":{},"n":{"docs":{},"r":{"docs":{},"i":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}},"t":{"docs":{},"u":{"docs":{},"r":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.03525264394829612}},"f":{"docs":{},"i":{"docs":{},"f":{"docs":{},"t":{"docs":{},"e":{"docs":{},"e":{"docs":{},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}},"f":{"docs":{},"e":{"docs":{},"r":{"docs":{"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808}}}}}},"h":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"s":{"docs":{},"i":{"docs":{},"t":{"docs":{},"e":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}}}}}}}},"o":{"docs":{},"m":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}},".":{"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}},"a":{"docs":{},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"e":{"docs":{},"a":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}},"m":{"docs":{},"s":{"docs":{},"c":{"docs":{},"o":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}}}}}}}},"n":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"s":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123}},".":{"docs":{},"a":{"docs":{},"r":{"docs":{},"e":{"docs":{},"a":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}},"r":{"docs":{},"m":{"docs":{},"i":{"docs":{},"n":{"docs":{},"o":{"docs":{},"l":{"docs":{},"o":{"docs":{},"g":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":1.6685082872928176}}}}}}}}}}},"h":{"docs":{},"r":{"docs":{},"e":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}},"o":{"docs":{},"f":{"docs":{},"s":{"docs":{},"p":{"docs":{},"a":{"docs":{},"d":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}}}}}},"i":{"docs":{},"m":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}},"o":{"docs":{},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{},"和":{"docs":{},"f":{"docs":{},"r":{"docs":{},"o":{"docs":{},"m":{"docs":{},"r":{"docs":{},"a":{"docs":{},"w":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}},"u":{"docs":{},"c":{"docs":{},"h":{"docs":{"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.023809523809523808},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}},"r":{"docs":{},"i":{"docs":{},"a":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},"n":{"docs":{},"g":{"docs":{},"l":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"e":{"docs":{},"(":{"docs":{},"s":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}},".":{"docs":{},"s":{"docs":{},"q":{"docs":{},"u":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}}}}},"u":{"docs":{},"e":{"docs":{},"s":{"docs":{},"d":{"docs":{},"a":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}},"l":{"docs":{},"i":{"docs":{},"p":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}},"p":{"docs":{},"l":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}}},"w":{"docs":{},"o":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}},"y":{"docs":{},"p":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}},"v":{"docs":{},"a":{"docs":{},"r":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.04935370152761457},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.0392156862745098},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.011049723756906077}},"i":{"docs":{},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"s":{"docs":{},"t":{"docs":{},"r":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.0055248618784530384}}}}}}}}}}},"l":{"docs":{},"u":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.0196078431372549},"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}},"e":{"docs":{},"g":{"docs":{},"e":{"docs":{},"t":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414}},"a":{"docs":{},"b":{"docs":{},"l":{"docs":{},"e":{"docs":{},"c":{"docs":{},"o":{"docs":{},"m":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.004700352526439483}}}}}}}}}}}},"r":{"docs":{},"i":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}},"o":{"docs":{},"n":{"docs":{},"a":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.003683241252302026}}}}}}}},"x":{"2":{"4":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}},"docs":{}},"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0023501762632197414},"chapter1/swift.html#gitbook_8":{"ref":"chapter1/swift.html#gitbook_8","tf":0.047619047619047616},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.029411764705882353}},".":{"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/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}}}}}}}}}}}}}},"c":{"docs":{},"o":{"docs":{},"d":{"docs":{},"e":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0011750881316098707}}}}}},"n":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}},"y":{"docs":{"chapter1/a_swift_tour.html#gitbook_7":{"ref":"chapter1/a_swift_tour.html#gitbook_7","tf":0.0035252643948296123},"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}},"e":{"docs":{},"n":{"docs":{},"s":{"docs":{},"i":{"docs":{},"g":{"docs":{},"n":{"docs":{"chapter2/strings_and_characters.html#gitbook_11":{"ref":"chapter2/strings_and_characters.html#gitbook_11","tf":0.001841620626151013}}}}}}}}},"z":{"docs":{"chapter2/article_1.html#gitbook_9":{"ref":"chapter2/article_1.html#gitbook_9","tf":0.00980392156862745}}}},"length":650},"corpusTokens":["0","0..3","0..time","0.0","1","10","100","103","11","111","12","128054","128054,是一个十六进制1f436","13","144","159","16","182","19","2","2.5","20","2014","21","240","25","3","3.0","3.1","3.14159","3.59","3.69","3.79","33","39","4","40","42","43","5","5.2","50","55357","56374","597","6","68","69105","7","7.5","7.simpledescript","70","70.0","75","8","87","8:09","9","9.9","94","a.adjust","a.simpledescript","ac","ace.toraw","acerawvalu","act","act1scenecount","add","addon","addone(numb","adescript","adjust","alik","amount","anoth","anotheremptystr","anotherproperti","ant","anycommonel","anycommonelements([1","api","appl","applese","applesummari","arc","area","array和dictionari","ascii","automat","b","b.adjust","b.simpledescript","bdescript","blackheart","blue","bonjour","bool","boolean","bottl","c","captain","capulet'","card","card(rank","card添加一个方法,创建一副完整的扑克牌并把每张牌的rank和suit","carriag","case","catfish","celeri","cell","chang","charact","character1","character2","characterpluscharact","characterplusstr","characters)字符串字面量初始化空字符串字符串可变性字符串是值类型使用字符(characters)计算字符数量连接字符串和字符字符串插值比较字符串字符串相等前缀/后缀相等大写和小写字符串unicodeunicod","chees","class","club","cocoa","cocoa的基础上构建框架栈并将其标准化。objective-c","cocoa里的nslog函数一样,println","codeunit","compile-tim","condit","condition(item","consid","constantstr","convertedrank","convertedrank.simpledescript","count","countel","countelements(unusualmenageri","counter","counter.incrementby(2","cucumb","current","currentloginattempt","c的兼容性的限制。swift","d","dai","default","deinit","diamond","dictionary(item","result","result(str","result(sunris","return","returnfifteen","rh","rhsitem","romeoandjuliet","room","samequot","sandwich","scalar","scene","scene.hasprefix(\"act","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","shouti","side","sidelength","simpl","simpleclass","simpledescript","simplestructur","simplestructure时候mutating关键字用来标记一个会修改结构体的方法。simpleclass","six","size","snail","some(100","some(t","somestr","sort([1","soup","spade","sparklingheart","spici","squar","square(sidelength","square.sidelength","standard","street","string","string(self.toraw","string(width","string1","string2","stringpluscharact","stringplusstr","string”的意思是“可以存储任意str","string,名字为welcomemessag","string,类型安全会阻止你不小心传入一个int","struct","structur","success","suit","suit.heart","suit.simpledescript","suit添加一个color方法,对spades和clubs返回“black”,对hearts和diamonds返回“r","sum","sumof","sumof(42","sumof(numb","sunris","sunset","super.init(nam","swift","swift可以推断出这个常量或者变量的类型,详情参见类型安全和类型推断(待添加链接)。在上面的例子中,没有给welcomemessag","swift用字符串插值(str","switch","switch中匹配到的子句之后,程序会退出switch语句,并不会继续向下运行,所以不需要在每个子句结尾写break","syntax","t","t.generatortype.el","tast","tea","teamscor","ten","terminolog","test","test.area","test.simpledescript","three","threedescript","threeofspad","threeofspades.simpledescript","threeofspadesdescript","time","todai","toraw和fromraw","touch","triagl","triangl","triangle.perimet","triangle.sidelength","triangleandsquar","triangleandsquare(s","triangleandsquare.squar","triangleandsquare.square.sidelength","triangleandsquare.triangle.sidelength","true","tuesdai","tulip","tupl","two","type","u","u+0024","u+0061","u+1f436","u+1f496","u+2665","u+d83d","u+dc36","u.generatortype.el","u0001f496","u2665","uin8","uint16","uint32","uint8","uncom","undefinedundefin","unicod","unicodescalar","unicodescalarview","unnnn","unnnnnnnn","unusualmenageri","uppercasestr","us","utf-16","utf-8","utf-8utf-16unicod","utf16","utf16count","utf16view","utf8","utf8view","valu","var","variablestr","veget","vegetablecom","veri","verona","water","watercress","we'r","welcom","welcomemessag","welcomemessage变量添加了类型标注,表示这个变量可以存储str","where,只在冒号后面写接口或者类名。<t","whisper","width","widthlabel","willset","willset和didset","wiseword","work","world","world"","wwdc","x","x.hassuffix(\"pepp","x24","xcode","xnn","y","yensign","z"],"pipeline":["trimmer","stopWordFilter","stemmer"]} \ No newline at end of file diff --git a/source/chapter2/strings_and_characters.md b/source/chapter2/strings_and_characters.md new file mode 100644 index 00000000..14423309 --- /dev/null +++ b/source/chapter2/strings_and_characters.md @@ -0,0 +1,339 @@ +# 字符串和字符 (Strings and Characters) + +**String** 是一个有序的字符集合,例如 "hello, world", "albatross"。Swift 字符串通过 **String** 类型来表示,也可以表示为 **Character** 类型值的集合。 + +Swift 的 **String** 和 **Character** 类型提供了一个快速的,兼容 Unicode 的方式来处理代码中的文本信息。创建和操作字符串的语法与 C的操作方式相似,轻量并且易读。字符串连接操作只需要简单地通过 `+` 号将两个字符串相连即可。与 Swift 中其他值一样,能否更改字符串的值,取决于其被定义为常量还是变量。 + +尽管语法简易,但 **String** 类型是一种快速、现代化的字符串实现。每一个字符串都是由独立编码的 Unicode 字符组成,并提供了用于访问这些字符在不同的Unicode表示的支持。 + +**String** 也可以用于在常量、变量、字面量和表达式中进行字符串插值,这使得创建用于展示、存储和打印的字符串变得轻松自如。 + +> 注意: +> +> Swift 的 **String** 类型与 Foundation NSString 类进行了无缝桥接。如果您利用 Cocoa 或 Cocoa Touch 中的 Foundation 框架进行工作,整个 NSString API 都可以调用您创建的任意 String 类型的值,您额外还可以在任意 API 中使用本章介绍的 **String** 特性。您也可以在任意要求传入NSString 实例作为参数的 API 中使用 **String** 类型的值进行替换。 +> +>更多关于在 Foundation 和 Cocoa 中使用 **String** 的信息请查看 [Using Swift with Cocoa and Objective-C](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/BuildingCocoaApps/index.html#//apple_ref/doc/uid/TP40014216)。 + +### 字符串字面量 + +您可以在您的代码中包含一段预定义的字符串值作为字符串字面量。字符串字面量是由双引号包裹着的具有固定顺序的文本字符集。 + +字符串字面量可以用于为常量和变量提供初始值。 + +``` +let someString = "Some string literal value" +``` + +> 注意: +> +> `someString` 变量通过字符串字面量进行初始化,Swift 因此推断其为 **String** 类型。 + +字符串字面量可以包含以下特殊字符: + +* 转移特殊字符 `\0` (空字符)、`\\`(反斜线)、`\t` (水平制表符)、`\n` (换行符)、`\r` (回车符)、`\"` (双引号)、`\'` (单引号)。 +* 单字节 Unicode 标量,写成 `\xnn`,其中 nn 为两位十六进制数。 +* 双字节 Unicode 标量,写成 `\unnnn`,其中 nnnn 为四位十六进制数。 +* 四字节 Unicode 标量,写成 `\Unnnnnnnn`,其中 nnnnnnnn 为八位十六进制数。 + +下面的代码为各种特殊字符的使用示例。 + +`wiseWords` 常量包含了两个转移特殊字符 (双括号);`dollarSign`、`blackHeart` 和 `sparklingHeart` 常量演示了三种不同格式的 Unicode 标量: + +``` +let wiseWords = "\"Imagination is more important than knowledge\" - Einstein" +// "Imagination is more important than knowledge" - Einstein +let dollarSign = "\x24" // $, Unicode scalar U+0024 +let blackHeart = "\u2665" // ♥, Unicode scalar U+2665 +let sparklingHeart = "\U0001F496" // 💖, Unicode scalar U+1F496 +``` + +### 初始化空字符串 + +为了构造一个很长的字符串,可以创建一个空字符串作为初始值。可以将空的字符串字面量赋值给变量,也可以初始化一个新的 **String** 实例: + +``` +var emptyString = "" // empty string literal +var anotherEmptyString = String() // initializer syntax +// 这两个字符串都为空,并且两者等价 +``` + +您可以通过检查其 **Boolean** 类型的 `isEmpty` 属性来判断该字符串是否为空: + +``` +if emptyString.isEmpty { + println("Nothing to see here") +} +// 打印 "Nothing to see here" +``` + +### 字符串可变性 + +您可以通过将一个特定字符串分配给一个变量来对其进行修改,或者分配给一个常量来保证其不会被修改: + +``` +var variableString = "Horse" +variableString += " and carriage" +// variableString 现在为 "Horse and carriage" +let constantString = "Highlander" +constantString += " and another Highlander" +// 这会报告一个编译错误(compile-time error) - 常量不可以被修改。 +``` + +> 注意: +> +> 在 Objective-C 和 Cocoa 中,您通过选择两个不同的类( NSString 和 NSMutableString )来指定该字符串是否可以被修改,Swift中的字符串是否可以修改仅通过定义的是变量还是常量来决定,实现了多种类型可变性操作的统一。 + +### 字符串是值类型 + +Swift 的 **String** 类型是值类型。如果您创建了一个新的字符串,那么当其进行常量、变量赋值操作或在函数/方法中传递时,会进行值拷贝。任何情况下,都会对已有字符串值创建新副本,并对该新副本进行传递或赋值。值类型在 [Structures and Enumerations Are Value Types](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/ClassesAndStructures.html#//apple_ref/doc/uid/TP40014097-CH13-XID_104) 中进行了说明。 + +> 注意: +> +> 其 Cocoa 中的 NSString 不同,当您在 Cocoa 中创建了一个 NSString 实例,并将其传递给一个函数/方法,或者赋值给一个变量,您永远都是传递或赋值同一个 NSString 实例的一个引用。除非您特别要求其进行值拷贝,否则字符串不会进行赋值新副本操作。 + +Swift 默认字符串拷贝的方式保证了在函数/方法中传递的是字符串的值,其明确了无论该值来自于哪里,都是您独自拥有的。您可以放心您传递的字符串本身不会被更改。 + +在实际编译时,Swift编译器会优化字符串的使用,使实际的复制只发生在绝对必要的情况下,这意味着您始终可以将字符串作为值类型的同时获得极高的性能。 + +#### 使用字符(Characters) + +Swift 的 **String** 类型表示特定序列的字符值的集合。每一个字符值代表一个 Unicode 字符。您可利用 for-in 循环来遍历字符串中的每一个字符: + +``` +for character in "Dog!🐶" { + println(character) +} +// D +// o +// g +// ! +// 🐶 +``` + +for-in 循环在[For Loops](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/ControlFlow.html#//apple_ref/doc/uid/TP40014097-CH9-XID_154)中进行了详细描述。 + +另外,通过标明一个 **Character** 类型注解并通过字符字面量进行赋值,可以建立一个独立的字符常量或变量: + +``` +let yenSign: Character = "¥" +``` + +### 计算字符数量 + +通过调用全局 `countElements` 函数并将字符串作为参数进行传递可以获取该字符串的字符数量。 + +``` +let unusualMenagerie = "Koala 🐨, Snail 🐌, Penguin 🐧, Dromedary 🐪" +println("unusualMenagerie has \(countElements(unusualMenagerie)) characters") +// prints "unusualMenagerie has 40 characters" +``` + +>注意: +> +>不同的 Unicode 字符以及相同 Unicode 字符的不同表示方式可能需要不同数量的内存空间来存储,所以Swift 中的字符在一个字符串中并不一定占用相同的内存空间。因此,字符串的长度不得不通过迭代字符串中每一个字符的长度来进行计算。如果您正在处理一个长字符串,需要注意 `countElements` 函数必须遍历字符串中的字符以精准计算字符串的长度。 +> +>另外需要注意的是通过 `countElements` 返回的字符数量并不总是与包含相同字符的 NSString 的 `length` 属性相同。NSString 的 `length` 属性是基于利用 UTF-16 表示的十六位代码单元数字,而不是基于 Unicode 字符。为了解决这个问题,NSString 的 `length` 属性在被 Swift的 **String** 访问时会成为 `utf16count`。 + +### 连接字符串和字符 + +字符串和字符的值可以通过加法运算符 (+) 相加在一起并创建一个新的字符串值: + +``` +let string1 = "hello" +let string2 = " there" +let character1: Character = "!" +let character2: Character = "?" + +let stringPlusCharacter = string1 + character1 // 等于 "hello!" +let stringPlusString = string1 + string2 // 等于 "hello there" +let characterPlusString = character1 + string1 // 等于 "!hello" +let characterPlusCharacter = character1 + character2 // 等于 "!?" +``` + +您也可以通过加法赋值运算符 (+=) 将一个字符串或者字符添加到一个已经存在字符串变量上: + +``` +var instruction = "look over" +instruction += string2 +// instruction 现在等于 "look over there" + +var welcome = "good morning" +welcome += character1 +// welcome 现在等于 "good morning!" +``` + +>注意: +> +>您不能将一个字符串或者字符添加到一个已经存在的字符变量上,因为字符变量只能包含一个字符。 + +### 字符串插值 + +字符串插值是一种全新的构建字符串的方式,可以在其中包含常量、变量、字面量和表达式。您插入的字符串字面量的每一项都被包裹在以反斜线为前缀的圆括号中: + +``` +let multiplier = 3 +let message = "\(multiplier) times 2.5 is \(Double(multiplier) * 2.5)" +// message is "3 times 2.5 is 7.5" +``` + +在上面的例子中,`multiplier` 作为 `\(multiplier)` 被插入到一个字符串字面量中。当创建字符串执行插值计算时此占位符会被替换为 `multiplier` 实际的值。 + +`multiplier` 的值也作为字符串中后面表达式的一部分。该表达式计算 `Double(multiplier) * 2.5` 的值并将结果 (7.5) 插入到字符串中。在这个例子中,表达式写为 `\(Double(multiplier) * 2.5)` 并包含在字符串字面量中。 + +>注意: +> +>您插值字符串中写在括号中的表达式不能包含非转义双引号 (") 和反斜杠 (\\),并且不能包含回车或换行符。 + +### 比较字符串 + +Swift 提供了三种方式来比较字符串的值:字符串相等,前缀相等和后缀相等。 + +##### 字符串相等 + +如果两个字符串以同一顺序包含完全相同的字符,则认为两者字符串相等: + +``` +let quotation = "We're a lot alike, you and I." +let sameQuotation = "We're a lot alike, you and I." +if quotation == sameQuotation { + println("These two strings are considered equal") +} +// prints "These two strings are considered equal" +``` + +##### 前缀/后缀相等 + +通过调用字符串的 `hasPrefix`/`hasSuffix` 方法来检查字符串是否拥有特定前缀/后缀。两个方法均需要以字符串作为参数传入并传出 **Boolean** 值。两个方法均执行基本字符串和前缀/后缀字符串之间逐个字符的比较操作。 + +下面的例子以一个字符串数组表示莎士比亚话剧 `罗密欧与朱丽叶` 中前两场的场景位置: + +``` +let romeoAndJuliet = [ + "Act 1 Scene 1: Verona, A public place", + "Act 1 Scene 2: Capulet's mansion", + "Act 1 Scene 3: A room in Capulet's mansion", + "Act 1 Scene 4: A street outside Capulet's mansion", + "Act 1 Scene 5: The Great Hall in Capulet's mansion", + "Act 2 Scene 1: Outside Capulet's mansion", + "Act 2 Scene 2: Capulet's orchard", + "Act 2 Scene 3: Outside Friar Lawrence's cell", + "Act 2 Scene 4: A street in Verona", + "Act 2 Scene 5: Capulet's mansion", + "Act 2 Scene 6: Friar Lawrence's cell" +] +``` + +您可以利用 `hasPrefix` 方法来计算话剧中第一幕的场景数: + +``` +var act1SceneCount = 0 +for scene in romeoAndJuliet { + if scene.hasPrefix("Act 1 ") { + ++act1SceneCount + } +} +println("There are \(act1SceneCount) scenes in Act 1") +// prints "There are 5 scenes in Act 1" +``` + +##### 大写和小写字符串 + +您可以通过字符串的 `uppercaseString` 和 `lowercaseString` 属性来访问一个字符串的大写/小写版本。 + +``` +let normal = "Could you help me, please?" +let shouty = normal.uppercaseString +// shouty 值为 "COULD YOU HELP ME, PLEASE?" +let whispered = normal.lowercaseString +// whispered 值为 "could you help me, please?" +``` + +### Unicode + +Unicode 是文本编码和表示的国际标准。它使您可以用标准格式表示来自任意语言几乎所有的字符,并能够对文本文件或网页这样的外部资源中的字符进行读写操作。 + +Swift 的字符串和字符类型是完全兼容 Unicode 的,它支持如下所述的一系列不同的 Unicode 编码。 + +###### Unicode 术语(Terminology) + +Unicode 中每一个字符都可以被解释为一个或多个 unicode 标量。字符的 unicode 标量是一个唯一的21位数字(和名称),例如 `U+0061` 表示小写的拉丁字母A ("a"),`U+1F425` 表示正面站立的鸡宝宝 ("🐥") + +当 Unicode 字符串被写进文本文件或其他存储结构当中,这些 unicode 标量将会按照 Unicode 定义的集中格式之一进行编码。其包括 `UTF-8` (以8位代码单元进行编码) 和 `UTF-16` (以16位代码单元进行编码)。 + +##### 字符串的 Unicode 表示 + +Swift 提供了几种不同的方式来访问字符串的 Unicode 表示。 + +您可以利用 `for-in` 来对字符串进行遍历,从而以 Unicode 字符的方式访问每一个字符值。该过程在 [Working with Characters](https://developer.apple.com/library/prerelease/ios/documentation/Swift/Conceptual/Swift_Programming_Language/StringsAndCharacters.html#//apple_ref/doc/uid/TP40014097-CH7-XID_376) 中进行了描述。 + +另外,能够以其他三种 Unicode 兼容的方式访问字符串的值: + +* UTF-8 代码单元集合 (利用字符串的 `utf8` 属性进行访问) +* UTF-16 代码单元集合 (利用字符串的 `utf16` 属性进行访问) +* 21位的 Unicode 标量值集合 (利用字符串的 `unicodeScalars` 属性进行访问) + +下面由 `D` `o` `g` `!` 和 `🐶` (狗脸表情,Unicode 标量为 `U+1F436`)组成的字符串中的每一个字符代表着一种不同的表示: + +``` +let dogString = "Dog!🐶" +``` + +##### UTF-8 + +您可以通过遍历字符串的 `utf8` 属性来访问它的 `UTF-8` 表示。其为 **UTF8View** 类型的属性,**UTF8View** 是无符号8位 (`UInt8`) 值的集合,每一个 `UIn8` 都是一个字符的 UTF-8 表示: + +``` +for codeUnit in dogString.utf8 { + print("\(codeUnit) ") +} +print("\n") +// 68 111 103 33 240 159 144 182 +``` + +上面的例子中,前四个10进制代码单元值 (68, 111, 103, 33) 代表了字符 `D` `o` `g` 和 `!` ,他们的 UTF-8 表示与 ASCII 表示相同。后四个代码单元值 (240, 159, 144, 182) 是 `狗脸表情` 的4位 UTF-8 表示。 + +##### UTF-16 + +您可以通过遍历字符串的 `utf16` 属性来访问它的 `UTF-16` 表示。其为 **UTF16View** 类型的属性,**UTF16View** 是无符号16位 (`UInt16`) 值的集合,每一个 `UInt16` 都是一个字符的 UTF-16 表示: + +``` +for codeUnit in dogString.utf16 { + print("\(codeUnit) ") +} +print("\n") +// 68 111 103 33 55357 56374 +``` + +同样,前四个代码单元值 (68, 111, 103, 33) 代表了字符 `D` `o` `g` 和 `!` ,他们的 UTF-16 代码单元和 UTF-8 完全相同。 + +第五和第六个代码单元值 (55357 and 56374) 是 `狗脸表情` 字符的UTF-16 表示。第一个值为 `U+D83D` (十进制值为 55357),第二个值为 `U+DC36` (十进制值为 56374)。 + +##### Unicode 标量 (Scalars) + +您可以通过遍历字符串的 `unicodeScalars` 属性来访问它的 Unicode 标量表示。其为 **UnicodeScalarView** 类型的属性, **UnicodeScalarView** 是 `UnicodeScalar` 的集合。`UnicodeScalar` 是21位的 Unicode 代码点。 + +每一个 `UnicodeScalar` 拥有一个值属性,可以返回对应的21位数值,用 `UInt32` 来表示。 + +``` +for scalar in dogString.unicodeScalars { + print("\(scalar.value) ") +} +print("\n") +// 68 111 103 33 128054 +``` + +同样,前四个代码单元值 (68, 111, 103, 33) 代表了字符 `D` `o` `g` 和 `!` 。第五位数值,128054,是一个十六进制1F436的十进制表示。其等同于 `狗脸表情` 的Unicode 标量 U+1F436。 + +作为查询字符值属性的一种替代方法,每个 `UnicodeScalar` 值也可以用来构建一个新的字符串值,比如在字符串插值中使用: + +``` +for scalar in dogString.unicodeScalars { + println("\(scalar) ") +} +// D +// o +// g +// ! +// 🐶 +``` +