swift 数值范围 Bool 安全 与别名typealias的使用

swift 数值范围 Bool 安全 与别名typealias的使用_第1张图片

 U 代表无符号

Float 和 Double 都可以使用的时候 建议用 Double

//: A UIKit based Playground for presenting user interface
  
import UIKit

let a = 8
let b:UInt8 = 255
print("Uint8 min \(UInt8.min)")
print("Uint8 max \(UInt8.max)")

Bool->ture |false  

编译器会在执行前检查是不是 true 或者 false

类型别名

关键字:typealias

//: A UIKit based Playground for presenting user interface
  
import UIKit
typealias AudioSample = UInt8
let sampe:AudioSample = 1

 

你可能感兴趣的:(#,swift)