Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

클로저(Closure)? #3

Open
JJinuk opened this issue Jul 1, 2023 · 0 comments
Open

클로저(Closure)? #3

JJinuk opened this issue Jul 1, 2023 · 0 comments
Labels
📱iOS iOS 관련 내용 🐦Swift Swift 관련 내용

Comments

@JJinuk
Copy link
Owner

JJinuk commented Jul 1, 2023

클로저(Closure)란?

코드에서 전달되고 사용될 수 있는 자체적인(self - contained)함수 블록

  • 람다 함수와 유사
  • 클래스와 동일한 참조 타입

기존 함수와 클로저 함수 비교

func aFunction(str: String) -> String {
    return "Hello, \(str)"
}
let _ = {(str: String) -> String in
    return "Hello, \(str)"
}

클로저 함수 형태

{ (매개변수 목록) -> 반환 타입 in
    실행 코드
}

ex) a와 b를 더하는 함수

let _ = {(a: Int, b: Int) -> Int in
    let result = a + b
     return result
}

클로저(Closure) 생략

  1. 반환, 인자 타입 생략

타입을 아는 경우 타입 생략 가능

let closure1 = {a, b in 
	  let result = a + b
		return result 
}
  1. 반환 키워드 생략

단일 표현 클로저는 반환 키워드 생략 가능

let closure2: (Int, Int) -> Int = { a, b in
    a + b
}
  1. 인자 이름 축약 (Shorthand Arguments Names)

클로저의 매개변수 이름이 굳이 필요 없다면 단축 인자를 활용 가능하다.

let closure3: (Int, Int) -> Int = { $0 + $1 }
  1. 연산자 메소드(Operator Methods)
let closure4: (Int, Int) -> Int = (+)
@JJinuk JJinuk assigned JJinuk and unassigned JJinuk Jul 1, 2023
@JJinuk JJinuk added 📱iOS iOS 관련 내용 🐦Swift Swift 관련 내용 labels Jul 1, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
📱iOS iOS 관련 내용 🐦Swift Swift 관련 내용
Projects
None yet
Development

No branches or pull requests

1 participant