码迷,mamicode.com
首页 > 其他好文 > 详细

Swift学习——Swift基础详解(五)

时间:2014-07-01 06:55:09      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:swift基础   swift   元组   

上回书说道:灰常灰常基本的数据类型

下面咱们来点高级的:


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

Swift学习——Swift基础详解(五)

标签:swift基础   swift   元组   

原文地址:http://blog.csdn.net/zhenyu5211314/article/details/35991813

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!