- Swift - 반복문
10. 반복문
:: 반복문 ::
- for-in
- while
- repeat-while
1. for-in 구문
- 기존 언어의 for-each 구문과 유사합니다.
- Dictionary의 경우 이터레이션 아이템으로 튜플이 들어옵니다. (하단 애플 문서의 튜플 부분 참조)
- for-in 구문 기본 형태
for item in items {
/* 실행 구문 */
}
- for-in 구문의 사용
var integers = [1, 2, 3]
let people = ["yagom": 10, "eric": 15, "mike": 12]
for integer in integers {
print(integer)
}
// Dictionary의 item은 key와 value로 구성된 튜플 타입입니다
for (name, age) in people {
print("\(name): \(age)")
}
2. while 구문
- while 구문의 기본 형태
while 조건 {
/* 실행 구문 */
}
- while 구문의 사용
while integers.count > 1 {
integers.removeLast()
}
3. repeat-while 구문
- 기존 언어의 do-while 구문과 형태/동작이 유사합니다.
- repeat-while 구문의 기본 형태
repeat {
/* 실행 구문 */
} while 조건
- repeat-while 구문의 사용
repeat {
integers.removeLast()
} while integers.count > 0
- The Swift Programming Language (Swift 3.1): The Basics 링크
https://goo.gl

- 실습 코드파일 링크
https://goo.gl
- 10. 반복문

- <강좌 추천> 예비 개발자의 좋은 시작, [부스트코스 : iOS 프로그래밍] 입니다.
http://www.edwith.org
- 부스트코스는 NAVER 계열사 등과 함께 만들어가는 현장 중심 온라인 교육 프로그램입니다.
현업전문가들이 고민하여 만들고 1:1 코드리뷰도 받을 수 있는 부스트코스에서 기업이 원하는 유능한 개발자로 boost하세요.
comment