Swift/Swift 기초 문법

[기초] 튜플 (Tuples)

hyunjuntyler 2023. 4. 5. 16:13

튜플은 여러값을 단일 복합 값으로 그룹화 한다.

let http404Error = (404, "Not Found")
// http404Error is of type (Int, String), and equals (404, "Not Found")
let (statusCode, statusMessage) = http404Error
print("The status code is \(statusCode)")
// Prints "The status code is 404"
print("The status message is \(statusMessage)")
// Prints "The status message is Not Found"