-
Notifications
You must be signed in to change notification settings - Fork 0
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 & Escaping Closure #11
Comments
1. ํด๋ก์ (Closure)
2. ํ์ถ ํด๋ก์ (Escaping Closure)
|
|
Closureํด๋ก์ ๋ ์ฝ๋์์ ์ฌ์ฉ๋๋ฉฐ, ๋ค์ํ๊ฒ ์ ๋ฌ๋ ์ ์๋ ๋
๋ฆฝ์ ์ธ ๊ธฐ๋ฅ ๋ธ๋ก. ํด๋ก์ ๋ ํด๋ก์ ๊ฐ ์ ์๋ ๋งฅ๋ฝ์์ ์์์ ๋ณ์์ ์ฐธ์กฐ๋ฅผ ์ ์ฅํ๊ณ ์บก์ณํ ์ ์๋ค. ํด๋ก์ ํํ์{ (parameters) -> return type in
statements
} ํด๋ก์ ๋ ์ฐธ์กฐ ํ์ํจ์์ ํด๋ก์ ๋ ์ฐธ์กฐ ํ์
Escaping Closureํ์ถ ํด๋ก์ ๋ ํจ์์ ๋ํ ์ธ์๋ก ์ ๋ฌ๋๋, ํจ์๊ฐ ๋ฐํ๋ ์ดํ์ ํธ์ถ๋๋ค. let completionHandler = () -> Void
func havingEscapingClosure(completionHandler: @escaping () -> Void) {
completionHandlers.append(completionHandler)
} |
Closure
1๊ธ ๊ฐ์ฒด๋ก์ ํด๋ก์ ํน์ง
let closure = { () -> () in
print("Closure")
}
func doSomething(closure: () -> ()) {
closure()
}
func doSomething() -> () -> () {
} ํ์ถ ํด๋ก์ (Escaping Closure)ํจ์ ์ธ์๋ก ํด๋ก์ ๊ฐ ์ ๋ฌ๋์ง๋ง, ํจ์๊ฐ ๋ฐํ๋ ์ดํ์ ์คํ๋๋ ํด๋ก์ ์ด๋ค.
|
ClosureClosure๋ ์ต๋ช ํจ์์ด๋ฉฐ ํจ์์ด๊ธฐ์ 1๊ธ ๊ฐ์ฒด ํน์ฑ์ ๊ฐ์ง๊ณ ์๋ค.
๋ฐํ ํ์ ์ ์๋ตํ ์ ์์ผ๋ฉฐ ๋จ์ถ ์ธ์ ์ด๋ฆ์ ์ฌ์ฉํ์ฌ Closure ์ฝ๋ ๋ฐฉ์์ ์ค์ผ ์ ์๋ค. Escaping Closure์ ๋ฌ์ธ์๋ก ๋ฐ์ ํด๋ก์ ๊ฐ ๋งค์๋ ์คํ์ด ์ข ๋ฃ๋ ํ์ ํธ์ถ๋๋ ๊ฒฝ์ฐ, ํ์ถ ํด๋ก์ ๋ผ๊ณ ํจ.
|
๐๏ธ ๋ง๊ฐ์ผ
2023.01.22
๐ ์ฐธ์ฌ์
The text was updated successfully, but these errors were encountered: