美文网首页
Swift新特性-元组创建+读取

Swift新特性-元组创建+读取

作者: 捕梦少女的梦想 | 来源:发表于2018-09-04 16:18 被阅读0次

元组(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)

相关文章

网友评论

      本文标题:Swift新特性-元组创建+读取

      本文链接:https://www.haomeiwen.com/subject/eftnwftx.html