上回书说道:灰常灰常基本的数据类型
下面咱们来点高级的:
Tuples 元组
元组存储一对键值,并且没有类型限制
let http404Error = (404, "Not Found") // http404Error is of type (Int, String), and equals (404, "Not Found")书上废话一堆,反正元组就是这么写,上面的例子还是(Int,String)类型的元组,而且元组里面的类型随便你定义
也可以将元组的变量分离:
let (statusCode, statusMessage) = http404Error println("The status code is \(statusCode)") // prints "The status code is 404" println("The status message is \(statusMessage)") // prints "The status message is Not Found如果你只需要元组中的部分值,可以使用下划线将不需要的值代替:
let (justTheStatusCode, _) = http404Error println("The status code is \(justTheStatusCode)") // prints "The status code is 404也可以使用索引获取元组中的值:
println("The status code is \(http404Error.0)") // prints "The status code is 404" println("The status message is \(http404Error.1)") // prints "The status message is Not Found在元组定义的时候,可以命名元组中的值,这样就可以用值的名称获取值了:
let http200Status = (statusCode: 200, description: "OK") println("The status code is \(http200Status.statusCode)") // prints "The status code is 200" println("The status message is \(http200Status.description)") // prints "The status message is OK对了,元组的一个非常有用的地方就是它可以作为函数的返回值,在之前的文章介绍过,Swift中的函数可以有多个返回值。
还有就是,元组不适合复杂的数据组合,如果数据太复杂,还是使用类或者结构体吧。
Swift学习——Swift基础详解(五),布布扣,bubuko.com
原文地址:http://blog.csdn.net/zhenyu5211314/article/details/35991813