编程风格
最后更新于:2022-04-01 02:10:18
> 原文出处:http://letsswift.com/2014/07/swift-style-guide/
[TOC]
## 语言
使用美式英语拼写以匹配苹果公司的API
优选:
~~~
var color = "red"
~~~
不建议使用:
~~~
var colour = "red"
~~~
## [](https://github.com/raywenderlich/swift-style-guide/blob/master/zh_style_guide.md#%E9%97%B4%E9%9A%94)间隔
* 使用2个空格进行缩进而不是使用Tab,这样可以节省空格,阻止换行。确保在Xcode的配置项中进行了设置。
* 方法的花括号以及其它花括号(`if`/`else`/`switch`/`while`等等)总是跟语句在同一行开始,但是在新的一行中结束。
优选:
~~~
if user.isHappy {
//Do something
} else {
//Do something else
}
~~~
不建议使用:
~~~
if user.isHappy
{
//Do something
}
else {
//Do something else
}
~~~
* 方法之间应该总是用一空白行进行分隔以提高视觉以及结构上的清晰度。方法中的空白符用来隔离功能块,但是如果一个方法中存在太多这种功能块时,通常也意味着你需要将它重构为多个方法了。
## [](https://github.com/raywenderlich/swift-style-guide/blob/master/zh_style_guide.md#%E6%B3%A8%E9%87%8A)注释
* 在需要的时候使用注释说明一块代码为什么这么做。注释必须时刻跟进代码,不然删了得了。
* 因为代码应该尽可能的自文档化,所以避免在代码中使用成块的注释。例外:该规则不适用与用于生成文档的成块注释。
## [](https://github.com/raywenderlich/swift-style-guide/blob/master/zh_style_guide.md#%E5%91%BD%E5%90%8D)命名
使用驼峰法为类、方法、变量等等取一个描述性强的名字。模块范围的类名以及常量名称要以大写字母开头,而方法名跟变量名则应该以小写字母开头。
优选:
~~~
let MaximumWidgetCount = 100
class WidgetContainer {
var widgetButton: UIButton
let widgetHeightPercentage = 0.85
}
~~~
不建议使用:
~~~
let MAX_WIDGET_COUNT = 100
class app_widgetContainer {
var wBut: UIButton
let wHeightPct = 0.85
}
~~~
对于普通函数以及构造函数名称,除非上下文含义非常清楚,对所有的参数都加以命名是更为推荐的做法。如果外部参数名称可以使得函数调用更具有可读性,那么请带上它。
~~~
func dateFromString(dateString: NSString) -> NSDate
func convertPointAt(#column: Int, #row: Int) -> CGPoint
func timedAction(#delay: NSTimeInterval, perform action: SKAction) -> SKAction!
// 会被这样调用
dateFromString("2014-03-14")
convertPointAt(column: 42, row: 13)
timedAction(delay: 1.0, perform: someOtherAction)
~~~
对于方法,遵循苹果公司的命名标准,在方法名中提及第一个参数:
~~~
class Guideline {
func combineWithString(incoming: String, options: Dictionary?) { ... }
func upvoteBy(amount: Int) { ... }
}
~~~
在所有提及到[函数](http://cpro.baidu.com/cpro/ui/uijs.php?adclass=0&app_id=0&c=news&cf=1001&ch=0&di=128&fv=18&is_app=0&jk=e179f97ed1e2c39&k=%BA%AF%CA%FD&k0=%BA%AF%CA%FD&kdi0=0&luki=9&n=10&p=baidu&q=17042170_cpr&rb=0&rs=1&seller_id=1&sid=392c1eed979f170e&ssp2=1&stid=0&t=tpclicked3_hc&td=1915056&tu=u1915056&u=http%3A%2F%2Fletsswift%2Ecom%2F2014%2F07%2Fswift%2Dstyle%2Dguide%2F&urlid=0)的内容中(包括[教程](http://cpro.baidu.com/cpro/ui/uijs.php?adclass=0&app_id=0&c=news&cf=1001&ch=0&di=128&fv=18&is_app=0&jk=e179f97ed1e2c39&k=%BD%CC%B3%CC&k0=%BD%CC%B3%CC&kdi0=0&luki=4&n=10&p=baidu&q=17042170_cpr&rb=0&rs=1&seller_id=1&sid=392c1eed979f170e&ssp2=1&stid=0&t=tpclicked3_hc&td=1915056&tu=u1915056&u=http%3A%2F%2Fletsswift%2Ecom%2F2014%2F07%2Fswift%2Dstyle%2Dguide%2F&urlid=0),书以及评论),请从调用者的视角进行考虑,将所有的必要参数名都包含进来:
~~~
dateFromString()函数真是太棒了。
在你的init()方法中调用convertPointAt(column:, row:)。
timedAction(delay:, perform:)的返回值可能为nil。
Guideline对象只有两个方法:combineWithString(options:)跟upvoteBy()。
你不应该直接调用数据源方法tableView(cellForRowAtIndexPath:)。
~~~
### [](https://github.com/raywenderlich/swift-style-guide/blob/master/zh_style_guide.md#%E7%B1%BB%E5%89%8D%E7%BC%80)类前缀
Swift中的类型会自动加入包含它们的模块的命名空间。所以即使是为了最小化命名冲突的可能性,前缀也是不必要的。如果来自于不同模块的两个名称冲突了,可以通过在名称前面加上模块名以消除歧义:
~~~
import MyModule
var myClass = MyModule.MyClass()
~~~
不应该在自己创建的类型上加前缀。
如果需要将Swift类型暴露在Objective-C环境中使用,请按照以下方式提供合适的前缀(前缀的命名请参考[Objective-C风格指南](https://github.com/raywenderlich/objective-c-style-guide)):
~~~
@objc (RWTChicken) class Chicken {
...
}
~~~
## [](https://github.com/raywenderlich/swift-style-guide/blob/master/zh_style_guide.md#%E5%88%86%E5%8F%B7)分号
Swift中,每条语句后的分号都不是必需的。只有在一行中有多条语句时才需要添加上分号。
请不要在一行中写上用分号隔开的多条语句。
这条规则的唯一例外就是`for-conditional-increment`结构,该结构中分号是必需的。不过,请尽可能地使用另外一种结构,`for-in`循环。
优选:
~~~
var swift = "not a scripting language"
~~~
不建议使用:
~~~
var swift = "not a scripting language";
~~~
请注意:Swift与JavaScript不同, 在后者中省略分号[通常是不安全的](http://stackoverflow.com/questions/444080/do-you-recommend-using-semicolons-after-every-statement-in-javascript)。
## [](https://github.com/raywenderlich/swift-style-guide/blob/master/zh_style_guide.md#%E7%B1%BB%E4%B8%8E%E7%BB%93%E6%9E%84%E4%BD%93)类与结构体
下面的代码是一个很有标准范儿的类定义,请参考:
~~~
class Circle: Shape {
var x: Int, y: Int
var radius: Double
var diameter: Double {
get {
return radius * 2
}
set {
radius = newValue / 2
}
}
init(x: Int, y: Int, radius: Double) {
self.x = x
self.y = y
self.radius = radius
}
convenience init(x: Int, y: Int, diameter: Double) {
self.init(x: x, y: y, radius: diameter / 2)
}
func describe() -> String {
return "I am a circle at (\(x),\(y)) with an area of \(computeArea())"
}
func computeArea() -> Double {
return M_PI * radius * radius
}
}
~~~
上面的例子阐述了这么几个风格上的准则:
* 当为属性、变量、常量、参数[声明](http://cpro.baidu.com/cpro/ui/uijs.php?adclass=0&app_id=0&c=news&cf=1001&ch=0&di=128&fv=18&is_app=0&jk=e179f97ed1e2c39&k=%C9%F9%C3%F7&k0=%C9%F9%C3%F7&kdi0=0&luki=1&n=10&p=baidu&q=17042170_cpr&rb=0&rs=1&seller_id=1&sid=392c1eed979f170e&ssp2=1&stid=0&t=tpclicked3_hc&td=1915056&tu=u1915056&u=http%3A%2F%2Fletsswift%2Ecom%2F2014%2F07%2Fswift%2Dstyle%2Dguide%2F&urlid=0)以及其它语句等定义类型时,而冒号的后面加上空格而不是前面,比如:`x: Int`跟`Circle: Shape`。
* 要对getter跟setter定义以及属性观察器进行缩进。
* 如果多个变量、结构有着同样的目的或者上下文,在同一行上进行定义。
## [](https://github.com/raywenderlich/swift-style-guide/blob/master/zh_style_guide.md#self)Self
考虑到在Swift中访问一个对象的属性或者调用它的方法并不需要使用`self`,所以请避免使用它。
需要使用`self`的唯一理由就是在初始化一个类或者结构体时,使用其在属性名和参数之间加以区分:
~~~
class BoardLocation {
let row: Int, column: Int
init(row: Int,column: Int) {
self.row = row
self.column = column
}
}
~~~
## [](https://github.com/raywenderlich/swift-style-guide/blob/master/zh_style_guide.md#%E5%87%BD%E6%95%B0%E5%A3%B0%E6%98%8E)函数声明
保持函数声明短小精悍,尽量在一行中完成[声明](http://cpro.baidu.com/cpro/ui/uijs.php?adclass=0&app_id=0&c=news&cf=1001&ch=0&di=128&fv=18&is_app=0&jk=e179f97ed1e2c39&k=%C9%F9%C3%F7&k0=%C9%F9%C3%F7&kdi0=0&luki=1&n=10&p=baidu&q=17042170_cpr&rb=0&rs=1&seller_id=1&sid=392c1eed979f170e&ssp2=1&stid=0&t=tpclicked3_hc&td=1915056&tu=u1915056&u=http%3A%2F%2Fletsswift%2Ecom%2F2014%2F07%2Fswift%2Dstyle%2Dguide%2F&urlid=0),同时还包含了开括号:
~~~
func reticulateSplines(spline: Double[]) -> Bool {
// reticulate code goes here
}
~~~
对于有着长长的参数的函数,请在适当的位置进行断行且对后续行缩进一级:
~~~
func reticulateSplines(spline: Double[], adjustmentFactor: Double,
translateConstant: Int, comment: String) -> Bool {
// reticulate code goes here
}
~~~
## [](https://github.com/raywenderlich/swift-style-guide/blob/master/zh_style_guide.md#%E9%97%AD%E5%8C%85)闭包
尽可能地使用尾闭包语法。在所有的情况下都需要给闭包参数一个描述性强的名称:
~~~
return SKAction.customActionWithDuration(effect.duration) { node, elapsedTime in
// more code goes here
}
~~~
对于上下文清晰的单表达式闭包,使用隐式的返回值:
~~~
attendeeList.sort { a, b in
a > b
}
~~~
## [](https://github.com/raywenderlich/swift-style-guide/blob/master/zh_style_guide.md#%E7%B1%BB%E5%9E%8B)类型
尽可能地使用Swift原生类型。Swift提供了对Objective-C的桥接所以在需要的时候仍然可以使用全部的Objective-C方法:
优选:
~~~
let width = 120.0 //Double
let widthString = width.bridgeToObjectiveC().stringValue //String
~~~
不建议使用:
~~~
let width: NSNumber = 120.0 //NSNumber
let widthString: NSString = width.stringValue //NSString
~~~
在Sprite Kit的代码中,如果`CGFloat`可以避免过多的转换而使得代码简洁明了,那么请用上它。
### [](https://github.com/raywenderlich/swift-style-guide/blob/master/zh_style_guide.md#%E5%B8%B8%E9%87%8F)常量
常量通过`let`关键字定义,而变量使用`var`关键字定义。任何值如果是一个不变量,那么请使用`let`关键字恰如其分地定义它。最后你会发现自己喜欢使用`let`远多于`far`。
Tip:有一个方法可以帮你符合该项规则,将所有值都定义成常量,然后编译器提示的时候将其改为变量。
### [](https://github.com/raywenderlich/swift-style-guide/blob/master/zh_style_guide.md#optionals)Optionals
在nil值可能出现的情况下,将变量跟[函数](http://cpro.baidu.com/cpro/ui/uijs.php?adclass=0&app_id=0&c=news&cf=1001&ch=0&di=128&fv=18&is_app=0&jk=e179f97ed1e2c39&k=%BA%AF%CA%FD&k0=%BA%AF%CA%FD&kdi0=0&luki=9&n=10&p=baidu&q=17042170_cpr&rb=0&rs=1&seller_id=1&sid=392c1eed979f170e&ssp2=1&stid=0&t=tpclicked3_hc&td=1915056&tu=u1915056&u=http%3A%2F%2Fletsswift%2Ecom%2F2014%2F07%2Fswift%2Dstyle%2Dguide%2F&urlid=0)返回值的类型通过`?`定义成Optional。
只有在确定实例变量会在初始化之后才被使用的情况下,通过`!`将其定义为隐式解包类型(Implicitly Unwrapped Types),比如说会在`viewDidLoad`中被创建的子视图。
在访问一个Optional值时,如果该值只被访问一次,或者之后需要连续访问多个Optional值,请使用链式Optional语法:
~~~
myOptional?.anotherOne?.optionalView?.setNeedsDisplay()
~~~
对于需要将Optional值解开一次,然后进行多个操作的情况,使用Optional绑定更为方便:
~~~
if let view = self.optionalView {
// do many things with view
}
~~~
### [](https://github.com/raywenderlich/swift-style-guide/blob/master/zh_style_guide.md#%E7%B1%BB%E5%9E%8B%E6%8E%A8%E6%96%AD)类型推断
Swift的编译器可以推断出变量跟常量的类型。可以通过类型别名(在冒号后面指出其类型)提供显式类型,不过大多数情况下这都是不必要的。
保持代码紧凑,然后让[编译器](http://cpro.baidu.com/cpro/ui/uijs.php?adclass=0&app_id=0&c=news&cf=1001&ch=0&di=128&fv=18&is_app=0&jk=e179f97ed1e2c39&k=%B1%E0%D2%EB%C6%F7&k0=%B1%E0%D2%EB%C6%F7&kdi0=0&luki=8&n=10&p=baidu&q=17042170_cpr&rb=0&rs=1&seller_id=1&sid=392c1eed979f170e&ssp2=1&stid=0&t=tpclicked3_hc&td=1915056&tu=u1915056&u=http%3A%2F%2Fletsswift%2Ecom%2F2014%2F07%2Fswift%2Dstyle%2Dguide%2F&urlid=0)推断变量跟常量的类型。
优选:
~~~
let message = "Click the button"
var currentBounds = computeViewBounds()
~~~
不建议使用:
~~~
let message: String = "Click the button"
var currentBounds: CGRect = computeViewBounds()
~~~
注意:遵循这条准则意味着描述性强的名称比之前更为重要了。
## [](https://github.com/raywenderlich/swift-style-guide/blob/master/zh_style_guide.md#%E6%8E%A7%E5%88%B6%E6%B5%81)控制流
对于`for`循环,优选`for-in`风格而不是`for-condition-increment`风格:
优选:
~~~
for _ in 0..5 {
println("Hello five times")
}
for person in attendeeList {
// do something
}
~~~
不建议使用:
~~~
for var i = 0; i < 5; i++ {
println("Hello five times")
}
for var i = 0; i < attendeeList.count; i++ {
let person = attendeeList[i]
// do something
}
~~~
## [](https://github.com/raywenderlich/swift-style-guide/blob/master/zh_style_guide.md#%E7%AC%91%E8%84%B8)笑脸
笑脸对于raywenderlich.com来说是一个格外重要的风格特征。使用正确的笑脸可以表示出对某个主题的无穷尽的高兴以及兴奋程度。选用了`]`是因为它在ASCII艺术可以表示得最大的笑脸。而闭圆括号`)`因为给人一种“呵呵”的感觉而不建议使用。
优选:
~~~
:]
~~~
不建议使用:
~~~
:)
~~~
本文版权归 raywenderlich.com 、[The Official raywenderlich.com Swift Style Guide](https://github.com/raywenderlich/swift-style-guide)项目以及所有贡献者所有。
译者翻译仅供知识传播使用。
本风格指南的目标是让Swift代码更简洁、可读更强。