内置数据类型:
Int
UInt (无符号int)
Float
Double
Bool
String
Character

定义:
我们不需要显式定义这些
但是当你需要的时候:

var distance: Int = 100

如果我们不显式定义类型的话 swift会自动推断。