学习点:
1.类型说明并且可以单行指明多个量。例如:var welcomeMessage: String
2.print默认参数:print(_:separator:terminator:).要使print之后无换行可以:print(someValue,terminator: "").
3.注释 // 和 /* */。注释可以嵌套。
4.单行中多语句要加分号 ;。
5.整型有8、16、32 和 64位。 直接获取整型最大最小值:let minValue = UInt8.min
6.“0xFp-2 means 15 x 2-2,or 3.75.”
7.类型转换:SomeType(ofInitialValue) 注:Double转Int是直接去尾转换。
原文链接:https://www.f2er.com/swift/325849.html