函数声明(Function Declarations)
最后更新于:2022-04-01 04:55:32
## 函数声明(Function Declarations)
保证短的函数定义在同一行中,并且包含左大括号:
~~~
func reticulateSplines(spline: [Double]) -> Bool {
// reticulate code goes here
}
~~~
在一个长的函数定义时,在适当的地方进行换行,同时在下一行中添加一个额外的缩进:
~~~
func reticulateSplines(spline: [Double], adjustmentFactor: Double,
translateConstant: Int, comment: String) -> Bool {
// reticulate code goes here
}
~~~