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

相关文章

软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘...
现实生活中,我们听到的声音都是时间连续的,我们称为这种信...
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿...
【Android App】实战项目之仿抖音的短视频分享App(附源码和...
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至...
因为我既对接过session、cookie,也对接过JWT,今年因为工作...