Swift教程之元组类型

前端之家收集整理的这篇文章主要介绍了Swift教程之元组类型前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
//MARK:--------------元组------------
/*
-------------------------------------------------------------
元组类型(tuple)
元组类型可以将任意数据类型组装成一个元素
元组类型在作为函数返回值的时候特别适用,可以为函数返回更多的用户需要的信息。
*/

//创建元组1
let (x,y) = (1,2)
//访问元组 - key、value对应方式
print("x is \(x) and y is \(y)")


//创建元组2
let http404Error = (404,"Not Found")   //由一个Int和一个字符串String组成
print(http404Error)

let (statusCode,statusMessage) = http404Error      //指名value的key。statusCode对应值404,statusMessage对应值"Not Found"
print("The status code is \(statusCode)")         //访问第一个值
print("The status message is \(statusMessage)")   //访问第二个值

//如果仅需要元组中的个别值,可以使用(_)来忽略不需要的值
let (justTheStatusCode,_) = http404Error
print("The status code is \(justTheStatusCode)")  //仅需要第一个值

//访问元组 - 序号访问方式,序号从0开始
print("The status code is \(http404Error.0)")     //访问第一个值
print("The status message is \(http404Error.1)")  //访问第二个值

//创建元组3
let http200Status = (statusCode: 200,description: "OK")
print("The status code is \(http200Status.statusCode)")
print("The status message is \(http200Status.description)")
原文链接:https://www.f2er.com/swift/326694.html

猜你在找的Swift相关文章