- Swift 教程
- Swift - 首页
- Swift - 概述
- Swift - 环境
- Swift - 基本语法
- Swift - 变量
- Swift - 常量
- Swift - 字面量
- Swift - 注释
- Swift 运算符
- Swift - 运算符
- Swift - 算术运算符
- Swift - 比较运算符
- Swift - 逻辑运算符
- Swift - 赋值运算符
- Swift - 位运算符
- Swift - 其他运算符
- Swift 高级运算符
- Swift - 运算符重载
- Swift - 算术溢出运算符
- Swift - 恒等运算符
- Swift - 范围运算符
- Swift 数据类型
- Swift - 数据类型
- Swift - 整数
- Swift - 浮点数
- Swift - Double
- Swift - 布尔值
- Swift - 字符串
- Swift - 字符
- Swift - 类型别名
- Swift - 可选类型
- Swift - 元组
- Swift - 断言和前提条件
- Swift 控制流
- Swift - 决策制定
- Swift - if 语句
- Swift - if...else if...else 语句
- Swift - if-else 语句
- Swift - 嵌套 if 语句
- Swift - switch 语句
- Swift - 循环
- Swift - for in 循环
- Swift - while 循环
- Swift - repeat...while 循环
- Swift - continue 语句
- Swift - break 语句
- Swift - fall through 语句
- Swift 集合
- Swift - 数组
- Swift - 集合
- Swift - 字典
- Swift 函数
- Swift - 函数
- Swift - 嵌套函数
- Swift - 函数重载
- Swift - 递归
- Swift - 高阶函数
- Swift 闭包
- Swift - 闭包
- Swift - 转义和非转义闭包
- Swift - 自动闭包
- Swift 面向对象
- Swift - 枚举
- Swift - 结构体
- Swift - 类
- Swift - 属性
- Swift - 方法
- Swift - 下标
- Swift - 继承
- Swift - 重写
- Swift - 初始化
- Swift - 析构
- Swift 高级
- Swift - ARC 概述
- Swift - 可选链
- Swift - 错误处理
- Swift - 并发
- Swift - 类型转换
- Swift - 嵌套类型
- Swift - 扩展
- Swift - 协议
- Swift - 泛型
- Swift - 访问控制
- Swift - 函数与方法
- Swift - SwiftyJSON
- Swift - 单例类
- Swift 随机数
- Swift 不透明类型和装箱类型
- Swift 有用资源
- Swift - 在线编译
- Swift - 快速指南
- Swift - 有用资源
- Swift - 讨论
Swift - 元组
元组用于在一个值中存储一组值,例如 (32, "Swift Programming") 是一个包含两个值的元组,这两个值分别是 23 和 "Swift Programming"。元组可以存储多个值,每个值之间用逗号分隔。它可以存储相同或不同数据类型的值。当我们想要一起返回多个值时,它们很有用。
元组通常由函数用于同时返回多个值。元组不用于复杂的数据结构;它们对于简单的相关数据组很有用。
语法
以下是元组的语法:
var myValue = (value1, value2, value3, value4, …, valueN)
我们可以使用点表示法后跟元素的索引来访问元组的元素:
var result = tupleName.indexValue
示例
Swift 程序创建并访问元组的元素。
import Foundation // Creating a tuple var myTuple = ("Romin", 321, "Delhi") // Accessing the elements of Tuple var name = myTuple.0 var id = myTuple.1 var city = myTuple.2 // Displaying the result print("Employee name =", name) print("Employee id =", id) print("Employee city =", city)
输出
Employee name = Romin Employee id = 321 Employee city = Delhi
包含不同数据类型的元组
在元组中,我们允许存储不同类型的的数据,例如 (Int, Int, Float),(Float, Double, String) 等。您还可以存储相同数据类型的数据,例如 (Int, Int, Int) 等。
示例
Swift 程序创建包含不同数据类型的元组。
import Foundation // Creating a tuple with data of different data types var myTuple = ("Mona", 21, "Mumbai", 101) // Accessing the elements of Tuple var name = myTuple.0 var age = myTuple.1 var city = myTuple.2 var id = myTuple.3 // Displaying the result print("Student name =", name) print("Student age =", age) print("Student city =", city) print("Student id =", id)
输出
Student name = Mona Student age = 21 Student city = Mumbai Student id = 101
将元组赋值给单独的变量
我们可以将元组的值分配给单独的常量或变量,以便我们可以使用该常量或变量的名称来访问它们。这里常量或变量的数量应等于元组的值。
语法
以下是将元组值分配给单独的常量或变量的语法:
let (name1, name2) = tuple
示例
Swift 程序创建一个元组,其值分配给一组常量。
import Foundation // Creating a tuple var myTuple = ("Mickey", 21, "Pune") // Assigning tuple to a set of constants let(name, age, city) = myTuple // Accessing the value of tuples according to the constant print("Student name =", name) print("Student age =", age) print("Student city =", city)
输出
Student name = Mickey Student age = 21 Student city = Pune
Swift 中带下划线的元组
我们允许在元组中使用下划线 "_"。它会在分解元组时忽略带下划线的部分元组。或者换句话说,我们可以说通过使用下划线,我们可以忽略某些元组的值。我们允许在同一个元组中使用多个下划线来忽略多个值。
语法
以下是带下划线的元组的语法:
let (name1, name2, _) = tuple
示例
Swift 程序创建一个带下划线 "_" 的元组。
import Foundation // Creating a tuple var myTuple = (21, "Pune", "CSE") // Assigning a tuple to a set of constants let(age, _, branch) = myTuple // Accessing the values of tuples print("Student age =", age) print("branch =", branch)
输出
Student age = 21 branch = CSE
为元组中的各个值分配名称
在 Swift 中,我们允许为元组的各个元素分配名称。我们还可以根据其名称访问元组的元素。
语法
以下是为元组元素分配名称的语法:
let myTuple = (id: 102, name: "Sona")
示例
Swift 程序创建并根据其名称访问元组元素。
import Foundation // Creating a tuple var myTuple = (name: "Mona", branch: "ECE", year: 2022) // Accessing the values of tuples according to their names print("Student name =", myTuple.name) print("Branch =", myTuple.branch) print("Current Year", myTuple.year)
输出
Student name = Mona Branch = ECE Current Year 2022
广告