「Swift」タプル(tuple)を使うサンプル

2021年10月12日

説明
タプルという複数の異なる型のデータをひとまとめにできる機能があります
形式
let 変数名=(string型文字,int型文字,double型文字,xxx)

使用例

使用例
//タプル宣言 string int double型
let tpe = ("山田太郎", 28, "東京",172.56,"B")

print("宣言のindexで呼び出す")
let username = tpe.0
//index値1の要素
let age = tpe.1
//index値2の要素
let addr = tpe.2
//index値3の要素
let weight = tpe.3
//index値4の要素
let blood = tpe.4
print("\(username) \(age) \(addr) \(weight) \(blood)")

実行結果
宣言のindexで呼び出す
山田太郎 28 東京 172.56 B

Swift

Posted by arkgame