[Swift5.1] 1.1-基本数据类型

2020-05-22  本文已影响0人  codeTao

Swift开源库

print 函数

let a = 1 
let b = 2
let c = a + b
c + = 3
var a = 10
print("Hello World! - \(a)")   //打印   Hello World! - 10

Playground 快捷键

注释

// 单行注释
/*
 多行注释
*/

/*
 a
 /* 多行注释嵌套 */
 b
*/

常量

let age = 10
let age2 : Int
age2 = 20

func getAge() -> Int{
    return 30;
}

let age3 = getAge()
let age : Int
var height : Int
print(age)                    //错误提示: Constant 'age' used before being initialized
print(height)                //错误提示: Variable 'height' used before being initialized
let age
age = 18          
//错误提示 Found an unexpected second identifier in constant declaration; is there an accidental break?

标识符

func 🐱🍉() {
    print("888")
}
🐱🍉()

let 🥛 = "milk"
var 🍺 = "bear"

数据类型

数据类型.png

字面量

let bool = true //取反是false
let string = "你好"
let character: Character = "🍎"
let intDecimal = 18 //十进制
let intBinary = 0b10001 //二进制
let intOctal = 0o33   //八进制
let intHexadecimal = 0x13 //十六进制

整数和浮点数可以添加额外的零或者添加下划线来增强可读性

100_1000、1_000_000.000_000_1、000123.456
let doubleDecimal = 123.0 //十进制,等价于1.23e2,  0.0123等价于1.23e-2
let doubleHexadecimal1 = 0xFp2 //十六进制,意味着15*2^2, 相当于十进制60.0
let doubleHexadecimal2 = 0xFp-2 //十六进制,意味着15*2^-2, 相当于十进制3.75

以下表示12.3456
十进制:12.3456 1.23456e1
十六进制:0xC.3p0

let array = [1, 3, 5, 7, 9]
let dictionary = ["age" : 18, "height" : 177, "weight": 130]

类型转换

let int1: UInt16 = 2_000
let int2: UInt8 = 1
let int3 = int1 + UInt16(int2)  //2001
let int = 3
let double = 0.14157
let pi = Double(int) + double   //3.14157
let intPi = Int(pi)   //3
let result = 3 + 0.14159  //3.14159

元组

//通过下标访问元组元素
let http404Error = (404, "Not Found")
print("The status code is \(http40Error.0)")   //The status code is 404

//将http404Error中元素, 一一对应给新元组元素
let (statusCode, statusMessage) = http404Error
print("The status code is \(statusCode)")   // The status code is 404

// _代表第二个参数不接收
let (justTheStatusCode, _) = http404Error

//以标签形式初始化元组, 可以通过标签访问元素
let http200Status = (statusCode:200, description:"OK")
print("The status code is \(http200Status.statusCode)")  //The status code is 200
上一篇 下一篇

猜你喜欢

热点阅读