元组(tuples)把多个值合成一个复合值。元组内的值可以是任意类型,并不要求是相同类型。
下面这个例子中,(404, "Not Found")
是一个描述HTTP状态码的元组。HTTP状态码是当你请求网页的时候web服务器返回的一个特殊值。如果你请求的网页不存在就会返回一个 404 Not Found
的状态码。
let http404Error = (404, "Not Found")
// http404Error的类型是 (Int, String),值是 (404, "Not Found")
(404, "Not Found")
元组把一个 Int
值和一个 String
值组合起来表示HTTP状态码的两个部分:一个数字和一个人类可读的描述。这个元组可以被描述为“一个类型为 (Int, String)
的元组”。
你可以吧任意顺序的类型组合成一个元组,这个元组可以包含所有的类型。只要你想,你可以创建一个类型为 (Int, Int, Int)
或者 (String, Bool)
或者其他任何你想要组合的元组。
你可以将一个元组的内容分解(decompose)成单独的常量和变量,然后你就可以正常的使用它们了:
let (statusCode, statusMessage) = http404Error
print("The status code is \(statusCode)")
// 输出 The sratus code is 404
print("The status message is \(statusMessage)")
// 输出 The status message is Not Found
如果你只需要一部分元组值,分解的时候可以把要忽略的部分用下划线(_
)标记:
let (justTheStatusCode, _) = http404Error
print("The status code is \(justTheStatusCode)")
// 输出 The status code is 404
此外,你还可以通过下标来访问元组中的单个元素,下标从零开始:
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
你可以在定义元组的时候给单个元素命名:
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
作为函数返回值是,元组非常有用。一个用来获取网页的函数可能会返回一个 (Int, String)
元组来描述是否获取成功。和只能返回一个类型的值比较起来,一个包含两个不同类型值得元组可以让函数的返回信息更有用。
注意:元组在临时组织值的时候很有用,但并不适合创建复杂的数据结构,如果你的数据结构并不是临时使用,请使用类或者结构体而不是元组。
网友评论