Closure - 2
Closure에는 총 3가지 타입이 있다. 1. Global 함수 2. Nested 함수 3. Closure Expressions 아주 정확히 표현하자면, '함수'는 Closure의 한가지 타입이다. 여기서 다루는건 3번으로 보면 되겠다. docs.swift.org/swift-book/LanguageGuide/Closures.html Closures — The Swift Programming Language (Swift 5.3) Closures Closures are self-contained blocks of functionality that can be passed around and used in your code. Closures in Swift are similar to blocks in C a..
Swift
2020. 12. 15. 10:42