归档到目前的贡献者 (#881)
* 修改第二章部分细节 * update control flow * 调整 Functions 章节细节 * 重新整理翻译工作主要贡献者记录 * 更新贡献者记录文件 1. 移除与官方文档无关内容 2. 归档主要贡献者记录并附录在文档最后一页
This commit is contained in:
@ -1,68 +1,5 @@
|
||||
<a name="declarations"></a>
|
||||
# 声明(Declarations)
|
||||
-----------------
|
||||
|
||||
> 1.0
|
||||
> 翻译:[marsprince](https://github.com/marsprince) [Lenhoon](https://github.com/marsprince)[(微博)](http://www.weibo.com/lenhoon)
|
||||
> 校对:[numbbbbb](https://github.com/numbbbbb), [stanzhai](https://github.com/stanzhai)
|
||||
|
||||
> 2.0
|
||||
> 翻译+校对:[Lenhoon](https://github.com/Lenhoon),
|
||||
> [BridgeQ](https://github.com/WXGBridgeQ)
|
||||
|
||||
> 2.1
|
||||
> 翻译:[mmoaay](https://github.com/mmoaay), [shanks](http://codebuild.me)
|
||||
> 校对:[shanks](http://codebuild.me)
|
||||
|
||||
> 2.2
|
||||
> 翻译:[星夜暮晨](https://github.com/SemperIdem)
|
||||
|
||||
> 3.0
|
||||
> 翻译:[chenmingjia](https://github.com/chenmingjia)
|
||||
|
||||
> 4.1
|
||||
> 翻译+校对:[mylittleswift](https://github.com/mylittleswift)
|
||||
|
||||
本页包含内容:
|
||||
|
||||
- [顶级代码](#top-level_code)
|
||||
- [代码块](#code_blocks)
|
||||
- [导入声明](#import_declaration)
|
||||
- [常量声明](#constant_declaration)
|
||||
- [变量声明](#variable_declaration)
|
||||
- [存储型变量和存储型变量属性](#stored_variables_and_stored_variable_properties)
|
||||
- [计算型变量和计算型属性](#computed_variables_and_computed_properties)
|
||||
- [存储型变量和属性的观察器](#stored_variable_observers_and_property_observers)
|
||||
- [类型变量属性](#type_variable_properties)
|
||||
- [类型别名声明](#type_alias_declaration)
|
||||
- [函数声明](#function_declaration)
|
||||
- [参数名](#parameter_names)
|
||||
- [输入输出参数](#in-out_parameters)
|
||||
- [特殊参数](#special_kinds_of_parameters)
|
||||
- [特殊方法](#special_kinds_of_methods)
|
||||
- [抛出错误的函数和方法](#throwing_functions_and_methods)
|
||||
- [重抛错误的函数和方法](#rethrowing_functions_and_methods)
|
||||
- [枚举声明](#enumeration_declaration)
|
||||
- [任意类型的枚举用例](#enumerations_with_cases_of_any_type)
|
||||
- [递归枚举](#enumerations_with_indirection)
|
||||
- [拥有原始值的枚举用例](#enumerations_with_cases_of_a_raw-value_type)
|
||||
- [访问枚举用例](#accessing_enumeration_cases)
|
||||
- [结构体声明](#structure_declaration)
|
||||
- [类声明](#class_declaration)
|
||||
- [协议声明](#protocol_declaration)
|
||||
- [协议属性声明](#protocol_property_declaration)
|
||||
- [协议方法声明](#protocol_method_declaration)
|
||||
- [协议构造器声明](#protocol_initializer_declaration)
|
||||
- [协议下标声明](#protocol_subscript_declaration)
|
||||
- [协议关联类型声明](#protocol_associated_type_declaration)
|
||||
- [构造器声明](#initializer_declaration)
|
||||
- [可失败构造器](#failable_initializers)
|
||||
- [析构器声明](#deinitializer_declaration)
|
||||
- [扩展声明](#extension_declaration)
|
||||
- [下标声明](#subscript_declaration)
|
||||
- [运算符声明](#operator_declaration)
|
||||
- [声明修饰符](#declaration_modifiers)
|
||||
- [访问控制级别](#access_control_levels)
|
||||
|
||||
*声明(declaration)* 用以向程序里引入新的名字或者结构。举例来说,可以使用声明来引入函数和方法,变量和常量,或者定义新的具有命名的枚举、结构、类和协议类型。还可以使用声明来扩展一个既有的具有命名的类型的行为,或者在程序里引入在其它地方声明的符号。
|
||||
|
||||
|
||||
Reference in New Issue
Block a user