let myTuple = (10, 12.1, "Hi")
let (myInt, myFloat, myString) = myTuple
let myTuple1 = (count: 10, length: 12.1, message: "Hi")
print(myInt) // 10
print(type(of: myTuple)) // (Int, Double, String)
print(myTuple1.message) // Hi
print(type(of: myTuple1)) // (count:Int, length:Float, Message:String)
'iOS(Swift) > 수업' 카테고리의 다른 글
Optional 타입 (0) | 2022.09.26 |
---|---|
튜플(Tuple) (0) | 2022.09.26 |
상수와 변수(let 과 var) (1) | 2022.09.26 |
type annotation 과 type inference (0) | 2022.09.26 |
문자 데이터 타입 : Character (0) | 2022.09.26 |