- 코드의 블럭
- 일급 시민(first-citizen)
- 변수, 상수 등으로 저장, 전달인자로 전달이 가능
- 함수 : 이름이 있는 클로저
{ (매개변수 목록) -> 반환타입 in
실행 코드
}
// 함수를 사용한다면
func sumFunction(a: Int, b: Int) -> Int {
return a+b
}
var sumResult: Int = sumFunction(a: 1, b: 2)
print(sumResult) // 3
// 클로저의 사용
var sum: (Int, Int) -> Int = { (a: Int, b: Int) in
return a + b
}
sumResult = sum(1, 2)
print(sumResult) // 3
// 함수는 클로저의 일종이므로
// sum 변수에는 당연히 함수도 할당할 수 있다.
sum = sumFunction(a:b:)
sumResult = sum(1, 2)
print(sumResult) // 3
// 함수의 전달인자로서의 클로저 - 예 콜백
let add: (Int, Int) -> Int
add = { (a: Int, b: Int) -> Int in
return a + b
}
let substract: (Int, Int) -> Int
substract = { (a: Int, b: Int) -> Int in
return a - b
}
let divide: (Int, Int) -> Int
devide = { (a: Int, b: Int) -> Int in
return a / b
}
func calculate(a: Int, b: Int, method: (Int, Int) -> Int) -> Int {
return method(a, b)
}
var calculated: Int
calculated = calculate(a: 50, b: 10, method: add)
print(calculated) // 60
calculated = calculate(a: 50, b: 10, method: { (left: Int, right: Int) -> Int in
return left * right
})
print(calculated) // 500
'# 02 > Swift' 카테고리의 다른 글
[Swift] 프로퍼티 (0) | 2020.06.04 |
---|---|
[Swift] 클로저 고급 (0) | 2020.06.04 |
[Swift] 값 타입과 참조 타입 (0) | 2020.06.04 |
[Swift] 열거형 (0) | 2020.06.04 |
[Swift] 클래스 (0) | 2020.06.04 |