标识符
标识符就是给变量,常量,方法,函数,枚举,结构体,类,协议等指定的名称
Swift语言中标识符的命名规则如下:
区分大小写,a和A是两个不同的标识符
标识符首字符可以是下划线,但不能是数字
标识符其他字符可以是数字,下划线,字母的任意一种类型
如果一定要使用关键字做为标识符,那么一定要用`包裹标识符
var `class` = "Hello World" println(`class`)
关键字
关键字是Swift语言中的保留字符
与声明有关的关键字:
class
reinit
enum
extension
func
import init
let
protocol
static
struct
subscript
typealias
var
与语句有关的关键字:
break
case
continue
default
do
else
fallthrough
if
in
for
return
switch
where
while
与表达式和类型有关的关键字
as
dynamicType
is
new
super
self
Type
__COLUMN__
__FILE__
__FUNCTION__
__LINE__
在特定上下文中使用的关键字
associativity
didSet
get
infix
inout
left
mutating
unowned(safe)
unowned(unsafe)
weak
willSet