元组(tuples)是由其它类型组合而成的类型。元组可能包含零或多个类型,比如 字符串、整数、字符、布尔以及其它元组。同时请注意,元组是值传递,而不是引用。
在Swift中创建元组的方式很简单,元组类型是用括号包围,由一个逗号分隔的零个或多个类型的列表。
方式一:
let infoTuple = ("why",18,1.88)
print(infoTuple.0, infoTuple.1, infoTuple.2)
方式二:
let infoTuple2 = (name : "why", age : 18, height : 1.88)
print(infoTuple2.name, infoTuple2.age, infoTuple2.height)
方式三:
let (name, age, height) = ("why",18,1.88)
print(name, age, height)
网友评论