Notice
Recent Posts
Recent Comments
Link
투케이2K
9. (swift/xcode) 튜플 tuple 사용해 상수 데이터 집합 데이터 만들기 본문
[개발 환경 설정]
개발 툴 : XCODE
개발 언어 : SWIFT
[소스 코드]
/*
[요약 설명]
1. 튜플은 여러 데이터를 동시에 저장할 수 있습니다
2. 튜플은 배열과는 다르게 길이가 고정되어있습니다
3. 튜플(tuple)은 소괄호((, ))로 데이터들을 감싸서 표현합니다
4. 튜플은 let 키워드를 사용해 상수 형태로 데이터 집합을 만든 후 값을 호출해 사용합니다
*/
// [테스트 메인 함수 정의 실시]
func testMain(){
print("[Program Start]")
print("")
// 튜플 객체 생성 실시
let totalTuple = (성공:"success" , 실패:"error")
let successTuple = ("success", 200)
let errorTuple = ("error", 400)
print("totalTuple : ", totalTuple)
print("successTuple : ", successTuple)
print("errorTuple : ", errorTuple)
print("")
// 개별 튜플 데이터 출력 실시
print("totalTuple 성공 : ", totalTuple.성공)
print("totalTuple 실패 : ", totalTuple.실패)
print("successTuple [0] : ", successTuple.0)
print("successTuple [1] : ", successTuple.1)
print("errorTuple [0] : ", errorTuple.0)
print("errorTuple [1] : ", errorTuple.1)
print("")
}
[결과 출력]
[요약 설명]
/*
[요약 설명]
1. 튜플은 여러 데이터를 동시에 저장할 수 있습니다
2. 튜플은 배열과는 다르게 길이가 고정되어있습니다
3. 튜플(tuple)은 소괄호((, ))로 데이터들을 감싸서 표현합니다
4. 튜플은 let 키워드를 사용해 상수 형태로 데이터 집합을 만든 후 값을 호출해 사용합니다
*/
반응형
'Swift' 카테고리의 다른 글
11. (swift/xcode) for , while 문을 사용해서 반복문 수행 실시 - for stride , while true 무한루프 (0) | 2021.10.08 |
---|---|
10. (swift/xcode) if else , switch case 문을 사용해서 조건문 분기 처리 실시 (0) | 2021.10.08 |
8. (swift/xcode) set 사용해 배열 중복 데이터 제거 수행 실시 (0) | 2021.10.08 |
7. (swift/xcode) 딕셔너리 dictionary 사용해 key , value 형태 데이터 저장 실시 (0) | 2021.10.08 |
6. (swift/xcode) 데이터 형변환 수행 실시 - String , Int , Double , Bool , Byte (0) | 2021.10.07 |
Comments