swift Tuples


Tuples

Tuples 可以用一对圆括号包裹若干个值,这些值的类型可以互不相同。

例如, (404, "Not Found") 就可以表示一个HTTP状态码.
let http404Error = (404, "Not Found")
http404Error 的类型是 (Int, String), 他等于 (404, "Not Found")

Tuples中可以包含任意类型

你可以像下面这样赋值
let (statusCode, statusMessage) = http404Error
print("The status code is \(statusCode)")
// 输出 "The status code is 404"
print("The status message is \(statusMessage)")
// 输出 "The status message is Not Found"
如果只需要Tuples中部分值,其他不需要的值可以用 _ 代替
例如:
let (justTheStatusCode, _) = http404Error
print("The status code is \(justTheStatusCode)")
// 输出 "The status code is 404"
你也可以通过下标来获取值,下标从0开始
例如:
print("The status code is \(http404Error.0)")
// 输出 "The status code is 404"
print("The status message is \(http404Error.1)")
// 输出 "The status message is Not Found"
你可以给Tuple中个元素取个名字
例如:
let http200Status = (statusCode: 200, description: "OK")
这样你就可以直接通过名字获取元素
print("The status code is \(http200Status.statusCode)")
// 输出 "The status code is 200"
print("The status message is \(http200Status.description)")
// 输出 "The status message is OK"
Tuples 可以作为函数的值返回

原文 Tuples
https://developer.apple.com/library/prerelease/content/documentation/Swift/Conceptual/Swift_Programming_Language/TheBasics.html#//apple_ref/doc/uid/TP40014097-CH5-ID309

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值