Swift3.0 元组 (tuples)

Posted 会钓鱼的丶猫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swift3.0 元组 (tuples)相关的知识,希望对你有一定的参考价值。

//元组
//不需要的元素用 _ 标记
let (name,age,_) = ("明明","10","")
print(name,age)

//通过下标访问特定的元素
let student = ("明明","10","")

print(student.0,student.1,student.2)

let bobo = (name:"波波",age:"24")
print(bobo.name,bobo.age)

 

以上是关于Swift3.0 元组 (tuples)的主要内容,如果未能解决你的问题,请参考以下文章

python-列表list- 元组(tuple)- 集合(set)-字典(dict)-实例代码

详解Python的元组(tuple)的12种操作方法,并附示例代码

python基础之--元组(tuple),python小白必看!

Python 元组(tuple)

Python 元组(tuple)

Tuple(元组)