Appearance
基本数据类型有:
使用 type 方法传入 of 参数可以获取数据的类型
type
of
var a = 12, b = 3.1, c = "123", d = true print(type(of: a)) // Int print(type(of: b)) // Double print(type(of: c)) // String print(type(of: d)) // Bool