일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Xcode
- MKMapItem
- 러닝타이머
- Startign Assignments
- SwiftUI Boolean 값
- 한국어 개인정보처리방침
- swift
- 단일 책임원칙
- Protocol
- weatherKit
- 클로저의 캡슐화
- 러닝기록앱
- CLLocationManagerDelegate
- UICollectionViewFlowLayout
- RunningTimer
- Required Reason API
- weak var
- 서체관리자
- xcode로 날씨앱 만들기
- App Store Connect
- addannotation
- WeatherManager
- MKMapViewDelegate
- CoreLocation
- 영문 개인정보처리방침
- UIAlertAction
- font book
- Timer
- AnyObject
- dispatchsource
Archives
- Today
- Total
VesselWheel
function type - 함수의 자료형(2/2) 본문
import UIKit
func add(_ n1: Int, _ n2: Int) -> Int{
return n1 + n2
}
func subtract(_ n1: Int, _ n2: Int) -> Int{
return n1 - n2
}
func multiply(_ n1: Int, _ n2: Int) -> Int{
return n1 * n2
}
func divide(_ n1: Int, _ n2: Int) -> Int{
return n1 / n2
}
typealias ArithmeticFunction = (Int, Int) -> Int
func selectFunction(from op:String) ->
ArithmeticFunction?{
switch op{
case "+":
return add(_:_:)
case "-":
return subtract(_:_:)
case "*":
return multiply(_:_:)
case "/":
return divide(_:_:)
default:
return nil
}
}
let addFunc = selectFunction(from: "+")
addFunc?(1, 2)
selectFunction(from: "*")?(12, 4)
'Xcode Study' 카테고리의 다른 글
Closure (0) | 2023.10.16 |
---|---|
내부 함수 : nested functions (0) | 2023.10.16 |
function type - 함수의 자료형(1/2) (1) | 2023.10.14 |
In-Out paramters// 입출력 파라미터 (0) | 2023.10.14 |
가변 parameters(variadic parameters) / 4-4 (1) | 2023.10.14 |